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
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 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
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
5d7726d1d0d095e2bbe26542f5ace9e431edf306
37595d73bf49cb8b68a843245b760834e518a166
/FileDescriptor.cpp
c6827843b663c0934761281d2bd4a2a0149a9987
[]
no_license
64Teenage/FileDescriptor
e94d17554ba28513f2739a8a2bb605d3cd2f9e34
eac256066d08b1f358b17d41a3791b044576a1e2
refs/heads/master
2023-01-07T11:49:48.410164
2020-11-13T07:10:03
2020-11-13T07:10:03
311,963,010
0
0
null
null
null
null
UTF-8
C++
false
false
16,812
cpp
#include <regex> #include <fstream> #include <iostream> #include "FileDescriptor.h" #include "ThreadPool.h" #include "HandlerThread.h" std::regex FilePattern::Open_Whole("^([0-9]*) *([^<]*) .*openat.* *= *(-*[0-9]*).*"); std::regex FilePattern::Open_Resume("^([0-9]*) *([^<]*) .*openat.*resumed> .*= *(-*[0-9]*)"); std::regex FilePattern::Open_Unfinish("^([0-9]*) *([^<]*) .*openat.* <unfinished ...>(.*)"); std::regex FilePattern::Dump_Whole("^([0-9]*) *([^<]*) .*dup\\(([0-9]*)\\) *= *(-*[0-9]*).*"); std::regex FilePattern::Dump_Resume("^([0-9]*) *([^<]*) .*dup.*resumed> .*= *(-*[0-9]*)"); std::regex FilePattern::Dump_Unfinish("^([0-9]*) *([^<]*) .*dup\\(([0-9]*) <.*\\)*"); std::regex FilePattern::Dump_BadFile("^([0-9]*) *([^<]*) .*dup\\(([0-9]*)\\) *= *(-*[0-9]*) .*Bad file descriptor.*"); std::regex FilePattern::Close_Whole("^([0-9]*) *(.*) *close\\(([0-9]*)\\) .*= (-*[0-9]*).*"); std::regex FilePattern::Close_Resume("^([0-9]*) *([^<]*) .*close resumed>.*= *(-*[0-9]*)"); std::regex FilePattern::Close_Unfinish("^([0-9]*) *(.*) .*close\\(([0-9]*) <.*\\)*"); std::regex FilePattern::Close_BadFile("^([0-9]*) *(.*) .*close\\(([0-9]*)\\) .*= (-*[0-9]*) .*Bad file descriptor.*"); /******************* public function ********************************/ FileDescriptor* FileDescriptor::getInstance() { static FileDescriptor instance; return &instance; } void FileDescriptor::initResources( pid_t pid, const std::string file, unsigned threads ) { setProcessId(pid); setFilePath(file); setProcessThread(threads); mProcessLine = 0; mMaxProcessLine = 0; mCloseGraph.clear(); mOpenGraph.clear(); mBadFileMap.clear(); mMapGraph.clear(); for(fd_t fd = 0; fd < 1024; ++fd) { mMapGraph[fd] = Status(-1, "", FDSTATUS::CLOSED); } DEG_LOG("File Descriptor init ...."); } void FileDescriptor::process() { mpThreadPool = ThreadPool::getInstance(mThreadCnt); mpThreadPool->adjust(mThreadCnt); detectEBADF(); std::cout<<"Detect Bad File Descriptor end xxx"<<std::endl; DEG_LOG("Detect Bad File Descriptor End..."); std::ifstream in(mFilePath, std::ios::in); if(!in.is_open()) { std::cerr<<mFilePath<<" do not exist!"<<std::endl; return ; } else { std::string line; while(std::getline(in, line)) { if(line.find("openat") != std::string::npos) { mpThreadPool->enqueue(processOpen, line, this); } else if(line.find("close") != std::string::npos) { mpThreadPool->enqueue(processClose, line, this); } else if(line.find("dup") != std::string::npos) { mpThreadPool->enqueue(processDump, line, this); } else { mpThreadPool->enqueue(irrelevantProcess, line, this); } } } } long FileDescriptor::processedLine() { if(mMaxProcessLine == 0) { return mProcessLine; } else { return mMaxProcessLine - mProcessLine + mMaxProcessLine; } } FileDescriptor::ResultData FileDescriptor::getResult() { { //wait for threadpool to finish all jobs std::unique_lock<std::mutex> lock(mSuccessLock); mSuccessCond.wait(lock, [&](){return !mProcessLine;}); } ResultData data; for(auto it = mBadFileMap.begin(); it != mBadFileMap.end(); ++it) { std::priority_queue<Status, std::vector<Status>, std::greater<Status>> rank; while(!it->second.empty()) { auto node = it->second.front(); it->second.pop(); if(std::get<1>(node.get()) > mFileTimeMap[it->first]) { continue; } if(rank.size() == PRINTLEN) { rank.push(node); rank.pop(); } else { rank.push(node); } } std::vector<Status> status; while(!rank.empty()) { auto node = rank.top(); rank.pop(); status.push_back(node); } data.insert({it->first, status}); } return data; } /******************* private function ********************************/ FileDescriptor::FileDescriptor( ) : mProcessId(-1) , mThreadCnt(1) , mpThreadPool(nullptr) , mProcessLine(0) , mMaxProcessLine(0) { mCloseGraph.clear(); mOpenGraph.clear(); mBadFileMap.clear(); for(fd_t fd = 0; fd < 1024; ++fd) { mMapGraph[fd] = Status(-1, "", FDSTATUS::CLOSED); } } void FileDescriptor::setProcessId( pid_t pid ) { mProcessId = pid; } void FileDescriptor::setFilePath( const std::string file ) { mFilePath = file; DEG_LOG("set process file: %s", mFilePath.c_str()); } void FileDescriptor::setProcessThread( unsigned int threads ) { mThreadCnt = threads > std::thread::hardware_concurrency() ? std::thread::hardware_concurrency() : threads; DEG_LOG("set process thread: %d", mThreadCnt); } std::tuple<pid_t, fd_t, std::string, fd_t> FileDescriptor::regexProcess( const std::regex & pattern, const std::string & line ) { std::smatch result{}; if(std::regex_match(line, result, pattern)) { pid_t pid = std::stoi(result[1].str()); std::string time = result[2].str(); fd_t fd = -1; fd_t status = -2; if(!result[3].str().empty()) { fd = std::stoi(result[3].str()); } if (result.size() == 5) { status = std::stoi(result[4].str()); } return std::tuple<pid_t, fd_t, std::string, fd_t>(pid, fd, time, status); } else { return std::tuple<pid_t, fd_t, std::string, fd_t>(-1, -1, "", -2); } } void FileDescriptor::detectEBADF() { std::ifstream in(mFilePath, std::ios::in); if(!in.is_open()) { std::cerr<<mFilePath<<" does not exist!"<<std::endl; return ; } else { std::string line; //int num = 0; mProcessLine = 0; mMaxProcessLine = 0; //ThreadPool * pPoolInstance = ThreadPool::getInstance(); HandlerThread handler; while(std::getline(in, line)) { auto res = mpThreadPool->enqueue(doProcess, line, mProcessId); handler.enqueue([&,res](){ auto result = res.get(); for(auto & element : result) { mBadFileMap.insert({element.first, std::queue<Status>()}); mFileTimeMap.insert(element); } ++mProcessLine; }); } } mMaxProcessLine = mProcessLine; DEG_LOG("max line is %d", mMaxProcessLine); } std::vector<std::pair<int,std::string>> FileDescriptor::doProcess( const std::string line, pid_t spid ) { std::vector<std::pair<int,std::string>> res; auto result = regexProcess(FilePattern::Close_BadFile, line); if(std::get<3>(result) != -2) { pid_t pid = std::get<0>(result); fd_t fd = std::get<1>(result); std::string time = std::get<2>(result); if((pid == spid)) { res.push_back(std::pair<int,std::string>(fd, time)); } } result = regexProcess(FilePattern::Dump_BadFile, line); if(std::get<3>(result) != -2) { pid_t pid = std::get<0>(result); fd_t fd = std::get<1>(result); std::string time = std::get<2>(result); if((pid == spid) ) { res.push_back(std::pair<int,std::string>(fd, time)); } } return res; } void FileDescriptor::processOpen( const std::string & line, FileDescriptor* handle ) { //std::cout<<line<<std::endl; if(line.find("unfinished") != std::string::npos) { openUnfinish(line, handle); } else if(line.find("resumed") != std::string::npos) { openResume(line, handle); } else { openWhole(line, handle); } } void FileDescriptor::openWhole( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Open_Whole, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); Status status(pid, time, FDSTATUS::OPENING); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::openUnfinish( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Open_Unfinish, line); //to do { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::openResume( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Open_Resume, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); Status status(pid, time, FDSTATUS::OPENING); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::processClose( const std::string &line, FileDescriptor* handle ) { if(line.find("unfinished") != std::string::npos) { closeUnfinish(line, handle); } else if(line.find("resumed") != std::string::npos) { closeResume(line, handle); } else { closeWhole(line, handle); } } void FileDescriptor::closeWhole( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Close_Whole, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); //int status = std::get<3>(res); Status status(pid, time, FDSTATUS::CLOSED); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::closeUnfinish( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Close_Unfinish, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); //int status = std::get<3>(res); Status status(pid, time, FDSTATUS::CLOSED); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::closeResume( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Close_Resume, line); //to do { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::processDump( const std::string &line, FileDescriptor* handle ) { if(line.find("unfinished") != std::string::npos) { dumpUnfinish(line, handle); } else if(line.find("resumed") != std::string::npos) { dumpResume(line, handle); } else { dumpWhole(line, handle); } } void FileDescriptor::dumpWhole( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Dump_Whole, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); fd_t dumpfd = std::get<3>(res); Status status(pid, time, FDSTATUS::DUMPING); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ status = Status(pid, time, FDSTATUS::OPENING); if(handle->mBadFileMap.count(dumpfd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[dumpfd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(dumpfd) > 0) { handle->mBadFileMap[dumpfd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::dumpUnfinish( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Dump_Unfinish, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); Status status(pid, time, FDSTATUS::DUMPING); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::dumpResume( const std::string &line, FileDescriptor* handle ) { auto res = regexProcess(FilePattern::Dump_Resume, line); pid_t pid = std::get<0>(res); fd_t fd = std::get<1>(res); std::string time = std::get<2>(res); Status status(pid, time, FDSTATUS::OPENING); if(handle->mBadFileMap.count(fd) > 0) { std::lock_guard<std::mutex> lock(handle->mProcessLock); handle->mBadFileMap[fd].push(status); } /* { std::lock_guard<std::mutex> lock(handle->mProcessLock); if(handle->mBadFileMap.count(fd) > 0) { handle->mBadFileMap[fd].push(status); } } */ { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } } void FileDescriptor::irrelevantProcess( const std::string &line, FileDescriptor * handle ) { { std::lock_guard<std::mutex> lock(handle->mSuccessLock); --handle->mProcessLine; if(handle->mProcessLine == 0) { handle->mSuccessCond.notify_all(); } } }
[ "hqhwhuer@outlook.com" ]
hqhwhuer@outlook.com
b1effe38ca8de40d1610238333033facb39673a2
c10be2d679e96ce416acdaaafd7647730d8f4dba
/chapter12/5/Проект1/Проект1/queue.h
f50006ed4b6da73d4289b1791f9a42a286ea22fe
[]
no_license
DMyhai/Tasks
7111bddfffd359cc47f3bd97b201dd0ae10e210f
90f20b958528003c5c455f87d3ba281bc391c353
refs/heads/master
2016-08-07T23:29:26.836811
2014-02-25T13:35:22
2014-02-25T13:35:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,259
h
// queue.h -- interface for a queue #ifndef QUEUE_H_ #define QUEUE_H_ // This queue will contain Customer items class Customer { private: long arrive; // arrival time for customer int processtime; // processing time for customer public: Customer() : arrive(0), processtime(0){} void set(long when); long when() const { return arrive; } int ptime() const { return processtime; } }; typedef Customer Item; class Queue { private: // class scope definitions // Node is a nested structure definition local to this class struct Node { Item item; struct Node * next; }; enum { Q_SIZE = 10 }; // private class members Node * front; // pointer to front of Queue Node * rear; // pointer to rear of Queue int items; // current number of items in Queue const int qsize; // maximum number of items in Queue // preemptive definitions to prevent public copying Queue(const Queue & q) : qsize(0) { } Queue & operator=(const Queue & q) { return *this; } public: Queue(int qs = Q_SIZE); // create queue with a qs limit ~Queue(); bool isempty() const; bool isfull() const; int queuecount() const; bool enqueue(const Item &item); // add item to end bool dequeue(Item &item); // remove item from front }; #endif
[ "dmytro.mykhailishen@globallogic.com" ]
dmytro.mykhailishen@globallogic.com
4d3bc1b622ad81ee8466485da3a4db93641fb781
868e8628acaa0bf276134f9cc3ced379679eab10
/firstCrude2D/we123/h10_refined2/0.168/p_rgh
ec30a068ef27e51ce59b516202fa57592b0266ca
[]
no_license
stigmn/droplet
921af6851f88c0acf8b1cd84f5e2903f1d0cb87a
1649ceb0a9ce5abb243fb77569211558c2f0dc96
refs/heads/master
2020-04-04T20:08:37.912624
2015-11-25T11:20:32
2015-11-25T11:20:32
45,102,907
0
0
null
2015-10-28T09:46:30
2015-10-28T09:46:29
null
UTF-8
C++
false
false
523,855
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.168"; object p_rgh; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -2 0 0 0 0]; internalField nonuniform List<scalar> 57600 ( 121.963 116.201 104.903 95.8652 89.3186 84.7151 82.2121 82.8831 86.674 91.097 94.1989 95.6734 95.8931 95.3283 94.3663 93.2717 92.2049 91.2526 90.4518 89.8087 89.3104 88.9357 88.662 88.4682 88.337 88.2542 88.2085 88.1909 88.1942 88.2125 122.01 113.01 102.437 94.0562 88.0152 83.8713 82.0022 83.5479 87.802 92.0378 94.7347 95.8541 95.8329 95.1329 94.1116 93.0052 91.9538 91.0305 90.264 89.6547 89.1869 88.8381 88.5855 88.4087 88.2908 88.2184 88.1807 88.1692 88.1768 88.1984 122.107 113.022 102.411 94.0295 87.9907 83.8336 81.9098 83.437 87.7711 92.0831 94.8094 95.9256 95.8892 95.1717 94.1336 93.0103 91.9429 91.0057 90.2286 89.6122 89.1403 88.7897 88.5367 88.3602 88.2431 88.1715 88.1347 88.1239 88.1323 88.1543 122.256 113.045 102.37 93.9882 87.9529 83.7752 81.7657 83.2593 87.7141 92.1441 94.9207 96.0378 95.9807 95.238 94.1738 93.024 91.9307 90.971 90.1766 89.5486 89.0699 88.7162 88.4624 88.2864 88.1705 88.1004 88.0649 88.0554 88.0648 88.0877 122.457 113.08 102.314 93.9322 87.9017 83.6971 81.5696 83.0134 87.6341 92.2242 95.0683 96.1886 96.1059 95.3304 94.2312 93.0452 91.9166 90.9261 90.108 89.4641 88.9762 88.6182 88.3633 88.1881 88.0737 88.0054 87.9718 87.9638 87.9745 87.9984 122.712 113.127 102.243 93.8616 87.8371 83.6004 81.3205 82.6937 87.5308 92.3255 95.2539 96.3779 96.2631 95.4461 94.3029 93.0716 91.899 90.8696 90.0215 89.3575 88.8582 88.4951 88.2391 88.065 87.9525 87.8862 87.8543 87.8479 87.86 87.8851 123.021 113.19 102.155 93.7762 87.7594 83.487 81.0171 82.2926 87.4029 92.4498 95.4796 96.607 96.4522 95.5839 94.3876 93.1026 91.8772 90.8007 89.9159 89.2273 88.7144 88.3457 88.0889 87.9164 87.8064 87.7423 87.7122 87.7073 87.7207 87.7472 123.386 113.269 102.049 93.676 87.6687 83.3591 80.6582 81.8008 87.2493 92.5996 95.7478 96.8778 96.6734 95.7437 94.4854 93.1379 91.8507 90.718 89.7892 89.0716 88.543 88.1684 87.9117 87.7418 87.635 87.5738 87.5456 87.542 87.5567 87.5846 123.808 113.368 101.925 93.561 87.5652 83.2194 80.2427 81.2056 87.0691 92.7775 96.0614 97.192 96.9277 95.9257 94.5963 93.1778 91.8193 90.6203 89.6393 88.8876 88.3415 87.9612 87.7058 87.5404 87.4384 87.381 87.3553 87.3529 87.3681 87.397 124.289 113.489 101.782 93.4311 87.4488 83.0713 79.7694 80.4908 86.8613 92.9872 96.4238 97.5518 97.2159 96.1302 94.7204 93.2223 91.7825 90.5059 89.4634 88.6721 88.1065 87.7214 87.4696 87.3111 87.2163 87.1646 87.1424 87.1413 87.156 87.1837 124.828 113.64 101.62 93.2864 87.3196 82.919 79.2381 79.6347 86.6256 93.2326 96.8389 97.9601 97.539 96.3571 94.8577 93.2716 91.7403 90.3731 89.258 88.4208 87.834 87.4457 87.2006 87.0528 86.9685 86.9253 86.9086 86.9096 86.9226 86.945 125.423 113.823 101.439 93.127 87.1773 82.7672 78.649 78.6083 86.3626 93.5182 97.3111 98.4201 97.898 96.6064 95.0081 93.3259 91.6927 90.2197 89.0192 88.1287 87.5189 87.1299 86.8963 86.7639 86.6945 86.6632 86.6547 86.6594 86.6721 86.6919 126.073 114.031 101.24 92.953 87.0214 82.6217 78.0038 77.3707 86.0737 93.8491 97.845 98.9353 98.2941 96.8779 95.1712 93.3852 91.6402 90.0434 88.7423 87.7893 87.1549 86.7691 86.553 86.4424 86.3931 86.378 86.3807 86.3918 86.4057 86.4208 126.778 114.246 101.022 92.7649 86.8509 82.4893 77.3024 75.8606 85.762 94.231 98.4462 99.5098 98.7285 97.171 95.3464 93.4492 91.5836 89.8417 88.4219 87.3947 86.7336 86.3569 86.1669 86.086 86.063 86.068 86.0847 86.1046 86.1237 86.1431 127.531 114.437 100.789 92.5634 86.6643 82.3778 76.5577 73.9903 85.4323 94.67 99.12 100.148 99.2021 97.4846 95.5324 93.517 91.5235 89.611 88.0522 86.9344 86.2444 85.8854 85.7334 85.6926 85.703 85.7318 85.7633 85.7919 85.8165 85.8391 128.322 114.57 100.541 92.3498 86.4591 82.2966 75.7914 71.6954 85.0876 95.1719 99.8722 100.856 99.7162 97.817 95.7276 93.5867 91.458 89.3447 87.6274 86.3949 85.6726 85.345 85.2477 85.2604 85.3134 85.3703 85.4172 85.4527 85.4801 85.5035 129.134 114.615 100.281 92.1262 86.2315 82.2566 75.0173 68.8611 84.7265 95.7444 100.708 101.638 100.271 98.1654 95.9292 93.6556 91.3742 89.0206 87.1401 85.7576 84.9983 84.7243 84.7054 84.7891 84.8968 84.9881 85.0515 85.0926 85.1207 85.143 129.939 114.54 100.013 91.8957 85.9758 82.2706 74.2477 65.1156 84.3654 96.398 101.633 102.5 100.867 98.525 96.1316 93.7225 91.23 88.6111 86.5811 84.9969 84.192 84.0096 84.104 84.2798 84.4582 84.5939 84.6773 84.7242 84.752 84.7717 130.696 114.316 99.7399 91.6635 85.6835 82.3538 73.4881 60.0036 84.0676 97.147 102.654 103.447 101.503 98.8876 96.323 93.7912 90.9638 88.2172 85.9524 84.0771 83.2089 83.1885 83.4491 83.7388 84.0068 84.2037 84.3138 84.3665 84.3914 84.4052 131.342 113.911 99.4697 91.4373 85.3428 82.5249 72.6751 52.9949 83.9098 97.9912 103.771 104.485 102.174 99.2393 96.4865 93.8723 90.5904 87.953 85.2722 82.9515 81.9833 82.2551 82.7624 83.1902 83.5669 83.8413 83.9808 84.0329 84.0461 84.0463 131.762 113.293 99.2138 91.2279 84.945 82.8127 71.678 42.9399 83.8908 98.9 104.989 105.616 102.871 99.5566 96.6702 93.9862 90.2263 87.7609 84.5775 81.5793 80.4198 81.1902 82.0519 82.6712 83.188 83.5369 83.6918 83.7265 83.7129 83.689 131.775 112.434 98.9923 91.0506 84.4546 83.2661 70.2214 6.71851 84.0454 99.7673 106.313 106.839 103.574 99.7998 97.0184 94.1406 90.0036 87.6397 83.9342 79.884 78.1141 79.8415 81.2571 82.1666 82.8984 83.3203 83.4611 83.4483 83.3824 83.3175 131.086 111.31 98.8408 90.9302 84.1273 83.9704 68.4502 10.6997 84.8145 100.569 107.752 108.147 104.247 99.8972 97.5264 94.3572 90.0126 87.6367 83.4694 77.6016 73.8472 77.8979 80.36 81.6695 82.7353 83.2467 83.321 83.2054 83.035 82.896 129.26 109.916 98.8087 90.8864 84.3661 84.9935 20.1057 0.152423 85.8795 101.32 109.323 109.521 104.811 99.6909 98.1542 94.7324 90.3048 87.7758 83.321 75.3658 68.0661 75.8366 78.9834 81.1613 82.8443 83.4458 83.3046 83.0182 82.6468 82.3455 125.581 108.306 98.9336 90.9054 84.5709 86.131 -0.307946 0.109409 88.2705 101.82 111.03 110.932 105.046 98.8173 98.9123 95.3301 90.8635 88.0291 83.787 75.0049 64.2079 74.5047 75.5876 80.9121 83.5424 84.1752 83.2973 83.0081 82.196 81.4532 118.719 106.812 99.2252 90.9586 85.4106 35.2398 -0.351152 -0.090983 89.6557 102.097 112.828 112.326 104.689 96.8721 99.9847 96.1109 91.6222 88.4147 85.0682 76.014 0.379934 0.327939 0.285017 0.266686 0.249281 0.259842 0.253343 0.249876 0.249753 0.247096 107.032 105.733 99.6801 90.9928 19.8819 -0.322652 -0.36223 -0.621898 87.0689 102.309 114.582 113.626 104.659 96.0709 101.213 96.9803 92.3471 89.3031 85.0838 0.269675 0.409371 0.292403 0.275481 0.263125 0.256934 0.255834 0.254102 0.252369 0.25088 0.2495 94.6856 104.732 100.215 89.687 -0.11811 -0.273418 -0.360903 -0.770982 78.1445 102.998 116.347 114.721 105.21 98.1931 102.464 97.923 93.3345 91.1138 -0.173553 0.307137 0.653813 0.247222 0.255419 0.257545 0.257172 0.256541 0.255512 0.253346 0.25093 0.251252 101.621 103.922 100.507 0.0366882 -0.145818 -0.241795 -0.35566 -0.781126 70.1995 102.416 117.798 115.547 104.773 103.091 103.208 99.2204 96.3973 7.15499 0.174051 0.220769 0.214233 0.214455 0.23196 0.246415 0.253962 0.256325 0.25678 0.257748 0.248296 0.270914 91.0882 103.245 103.805 0.0259477 -0.160802 -0.223646 -0.348942 -0.858092 9.52497 102.478 117.877 116.241 102.698 107.538 102.998 100.745 102.739 0.313639 0.218164 0.15007 0.180378 0.185251 0.216744 0.22904 0.246793 0.253391 0.254173 0.260056 0.251404 0.248965 88.2419 88.2838 88.3444 88.4286 88.5425 88.6935 88.8908 89.1457 89.4725 89.888 90.4116 91.0624 91.8554 92.7939 93.8593 95.0027 96.1366 97.1144 97.6922 97.5083 96.1025 93.0574 88.6752 84.9694 84.0845 85.9146 89.8278 94.9505 100.3 104.93 88.231 88.2774 88.3437 88.4349 88.5575 88.7192 88.9301 89.202 89.5501 89.9923 90.5482 91.2368 92.0708 93.0492 94.146 95.3027 96.4196 97.3294 97.7583 97.3158 95.5224 92.0342 87.5287 84.4099 84.3073 86.7344 91.0791 96.3409 101.65 105.846 88.1873 88.234 88.3005 88.3918 88.5142 88.6757 88.8864 89.1585 89.5074 89.9515 90.5109 91.2053 92.048 93.0379 94.1482 95.319 96.4499 97.3739 97.8166 97.3836 95.5816 92.0441 87.4547 84.316 84.2578 86.7074 91.069 96.3369 101.653 105.867 88.1213 88.1684 88.2351 88.3263 88.4484 88.6095 88.8198 89.0922 89.4425 89.8898 90.455 91.1587 92.0153 93.0246 94.1581 95.3529 96.5055 97.4483 97.9076 97.4842 95.6642 92.05 87.3347 84.169 84.18 86.6644 91.054 96.332 101.66 105.904 88.0327 88.0805 88.1475 88.2387 88.3604 88.5209 88.7309 89.0037 89.3561 89.8078 90.381 91.0975 91.9736 93.0096 94.1755 95.4033 96.5849 97.5505 98.0294 97.6171 95.7731 92.0565 87.1692 83.9678 84.0747 86.6053 91.0339 96.326 101.67 105.959 87.9206 87.9692 88.0368 88.1282 88.2497 88.4096 88.6192 88.8927 89.2477 89.7051 90.2884 91.0211 91.9219 92.9922 94.1988 95.4669 96.6836 97.6778 98.1811 97.7829 95.9103 92.0646 86.9538 83.7095 83.9427 86.5302 91.0089 96.3188 101.684 106.031 87.784 87.8339 87.9023 87.9941 88.1154 88.2749 88.4843 88.7586 89.1168 89.5809 90.1762 90.9285 91.8592 92.9717 94.2275 95.5424 96.7999 97.8288 98.3626 97.983 96.0776 92.0746 86.6826 83.3906 83.7854 86.439 90.9791 96.3101 101.702 106.12 87.6228 87.6741 87.7436 87.8358 87.9572 88.1161 88.3252 88.6006 88.9623 89.4342 90.0433 90.8182 91.7841 92.9474 94.2617 95.6296 96.9332 98.0032 98.5743 98.2187 96.2771 92.0873 86.3482 83.0069 83.6047 86.3318 90.9447 96.2999 101.722 106.226 87.437 87.4901 87.5597 87.6523 87.774 87.9325 88.1412 88.4175 88.7831 89.2635 89.8881 90.6884 91.6947 92.9187 94.3021 95.7286 97.0836 98.201 98.8165 98.4916 96.5115 92.1038 85.9407 82.5537 83.4029 86.2087 90.9061 96.2879 101.745 106.351 87.2253 87.2827 87.3477 87.4414 87.5648 87.7232 87.9313 88.2083 88.5778 89.0674 89.7087 90.5371 91.5886 92.8847 94.3491 95.8392 97.2508 98.4222 99.0898 98.8035 96.7839 92.1253 85.4469 82.0253 83.1829 86.0695 90.8634 96.2737 101.769 106.495 86.9796 87.2014 87.0984 87.202 87.329 87.4874 87.6945 87.9719 88.3451 88.8442 89.5034 90.3619 91.4626 92.8442 94.4037 95.9607 97.4345 98.6669 99.3947 99.1566 97.098 92.1537 84.8496 81.416 82.9488 85.9141 90.8171 96.2571 101.794 106.656 86.7239 86.817 86.8395 86.9376 87.0663 87.225 87.4302 87.7069 88.0836 88.5919 89.2698 90.1603 91.3121 92.7952 94.4666 96.0912 97.6341 98.9352 99.7318 99.553 97.4578 92.1913 84.1257 80.7194 82.7052 85.7419 90.7674 96.2376 101.819 106.834 86.4701 86.5051 86.5584 86.6485 86.776 86.9343 87.1366 87.4122 87.7917 88.3086 89.0055 89.93 91.1316 92.7338 94.5371 96.2273 97.8491 99.2272 100.102 99.9956 97.8681 92.2408 83.2437 79.9288 82.4582 85.5523 90.7145 96.2149 101.844 107.031 86.1623 86.2016 86.2556 86.3377 86.4568 86.6113 86.8116 87.0869 87.4682 87.992 88.7073 89.6687 90.914 92.6478 94.6097 96.3632 98.079 99.5431 100.504 100.488 98.3336 92.3057 82.1607 79.0361 82.2153 85.3445 90.6588 96.1883 101.866 107.247 85.8622 85.8931 85.9383 86.0039 86.1048 86.2562 86.4549 86.7311 87.1124 87.6391 88.371 89.3746 90.6522 92.4905 94.6638 96.49 98.3239 99.8834 100.941 101.034 98.8585 92.3896 80.8182 78.0317 81.9857 85.1173 90.6006 96.1575 101.885 107.476 85.5271 85.5565 85.5944 85.631 85.6832 85.8735 86.0712 86.3468 86.7238 87.2462 87.9905 89.044 90.3456 92.1146 94.6364 96.5965 98.585 100.249 101.411 101.636 99.4453 92.4962 79.1482 76.9368 81.7807 84.8694 90.5399 96.122 101.899 107.719 85.1651 85.1939 85.2463 87.1334 86.4852 85.4812 85.6669 85.9366 86.3018 86.8083 87.5562 88.6683 90.0386 91.4872 94.3772 96.6734 98.866 100.64 101.913 102.3 100.095 92.6274 77.0938 75.8052 81.6161 84.5995 90.4765 96.0815 101.907 107.978 84.7896 84.8107 84.8393 84.8235 84.6898 85.0399 85.2419 85.5021 85.8461 86.3186 87.0541 88.2333 89.8009 91.1519 93.7192 96.7238 99.1732 101.059 102.447 103.031 100.819 92.7795 74.6206 74.5224 81.5124 84.3073 90.4096 96.0356 101.908 108.252 84.4158 84.4278 84.4452 84.4745 84.5037 84.6211 84.8005 85.0462 85.359 85.7682 86.4631 87.7231 89.5657 91.0548 92.7534 96.778 99.5167 101.506 103.009 103.833 101.631 92.9586 71.717 72.9961 81.4859 83.9953 90.3363 95.9839 101.9 108.541 84.0444 84.044 84.0464 84.0545 84.0846 84.1945 84.3333 84.5763 84.8476 85.1459 85.7508 87.1138 89.2626 90.8951 91.9536 96.8983 99.9093 101.981 103.594 104.713 102.536 93.2179 68.4929 71.2295 81.5743 83.6722 90.2492 95.9253 101.882 108.846 83.6693 83.6548 83.6412 83.6242 83.6255 83.7345 84.3616 84.1117 84.3208 84.4331 84.858 86.3751 88.9198 90.7008 91.8411 97.1526 100.365 102.486 104.191 105.676 103.512 93.6354 65.1536 69.4237 81.8256 83.3619 90.1321 95.8579 101.851 109.165 83.2755 83.2532 83.2359 83.2031 83.1727 83.1906 83.508 83.6727 83.778 83.5974 83.6445 85.4764 88.57 90.6654 92.5193 97.5647 100.897 103.018 104.785 106.725 104.559 94.2801 62.0273 67.8312 82.28 83.1182 89.9633 95.7777 101.805 109.5 82.8272 82.8223 82.8336 82.7788 82.6831 82.7323 83.0442 83.285 83.2372 82.5512 81.8472 84.3925 88.221 90.8293 93.6455 98.0793 101.518 103.578 105.345 107.856 105.659 95.1339 66.0101 62.6838 82.9029 83.0196 89.7364 95.6781 101.743 109.856 82.2417 82.3462 82.5005 82.367 82.0326 82.0727 82.6417 83.0279 82.7699 81.0457 79.16 83.0833 87.8781 91.1127 94.7562 98.6005 102.245 104.162 105.83 109.055 106.782 96.3599 67.07 1.11317 83.4185 83.1388 89.5562 95.5478 101.659 110.24 81.2425 81.7511 82.5846 82.1728 80.9643 81.1147 82.2538 83.0806 82.3454 79.3758 76.3466 82.0224 87.58 91.3953 95.5726 99.1337 103.105 104.772 106.17 110.286 107.839 98.0781 2.68879 0.924673 8.19313 83.2962 89.4105 95.369 101.556 110.666 0.253173 1.37676 4.2348 7.33416 11.6307 22.779 44.6583 73.2178 79.711 78.6412 72.0838 81.7009 87.4088 91.6457 96.3271 99.91 104.128 105.421 106.256 111.491 108.755 100.071 4.50448 0.634821 -0.0758676 36.8149 89.6426 95.118 101.46 111.154 0.247506 0.24241 0.237752 0.230694 0.234268 0.234711 0.231401 0.216809 0.218303 0.237984 0.172694 81.9389 87.5142 91.8505 97.2192 101.028 105.324 106.161 105.931 112.585 109.869 103.598 2.13751 0.345843 -0.0229323 0.0963048 90.179 94.7886 101.397 111.733 0.253313 0.254862 0.238738 0.238009 0.228341 0.245111 0.226758 0.221111 0.212634 0.209771 0.214531 0.527603 87.4064 91.9675 98.2495 102.186 106.67 107.101 105.137 113.498 110.758 106.056 0.423089 0.134526 0.00633317 0.0803769 84.7169 94.4566 101.403 112.43 0.247408 0.244544 0.240319 0.234642 0.226643 0.220228 0.217959 0.217573 0.194927 0.157242 0.136783 0.132551 0.124052 92.6054 99.9347 102.975 108.09 108.307 104.856 113.592 111.191 105.989 0.297777 0.0801257 0.0195462 0.0670453 0.0037211 94.292 101.554 113.155 0.240369 0.239759 0.239777 0.232322 0.220645 0.205161 0.204551 0.205904 0.169703 0.122403 0.142685 0.0660391 0.112255 83.5877 102.03 103.616 109.471 109.059 106.151 113.379 110.459 102.303 0.143471 0.0832274 0.0251103 0.0593853 0.0735526 12.4067 101.936 113.913 74.0656 102.878 35.658 0.0187028 -0.163276 -0.21355 -0.336066 -0.704893 104.865 105.85 116.762 116.904 101.573 108.774 102.987 101.387 -0.241402 0.312144 0.188551 0.0823493 0.155431 0.166736 0.189045 0.213896 0.238386 0.249207 0.254778 0.250008 0.247247 0.269707 54.6867 90.6301 1.26655 0.0146366 -0.161435 -0.207798 -0.336715 -0.759004 468.662 110.103 117.067 117.885 102.037 107.77 102.704 96.2997 0.656728 0.375461 0.14362 0.0783625 0.141671 0.155187 0.176329 0.204318 0.231916 0.245241 0.265403 0.246943 0.237249 8.10214 27.8894 43.8969 -0.0379682 0.00948317 -0.157536 -0.20208 -0.326008 -0.761095 5.56405 111.547 117.624 118.727 103.862 104.799 103.725 0.486605 0.664177 0.125447 0.117517 0.0682676 0.129837 0.143093 0.163212 0.193573 0.22404 0.238802 0.248115 0.243262 0.234326 12.2705 28.4555 0.312471 -0.0300864 0.0052208 -0.151877 -0.196205 -0.359277 -0.728928 4.08734 110.69 118.416 118.864 107.011 100.841 99.8403 0.470859 0.691641 1.14526 0.0553709 0.0897595 0.120003 0.131104 0.149947 0.181515 0.214635 0.232428 0.238165 0.238634 0.233482 0.265914 26.454 0.338652 -0.0229015 0.00109459 -0.144856 -0.189984 -0.36287 -0.508249 2.47209 110.661 120.297 119.527 110.497 97.3501 0.202934 0.467809 0.776902 0.181727 0.0462428 0.0921414 0.111898 0.119597 0.165115 0.168644 0.20375 0.233548 0.229015 0.231089 0.2294 0.233928 -0.22554 0.0855228 -0.0148876 -0.00269915 -0.13694 -0.183286 -0.320547 -0.168669 1.62532 124.184 124.99 121.597 113.865 9.8026 0.205434 0.421767 -0.0440325 -0.0628544 0.0529984 0.0937671 0.20455 0.116071 0.155454 0.156845 0.192274 0.209162 0.217883 0.219651 0.218569 0.21725 -0.175063 0.0805985 -0.0072695 -0.00601119 -0.128588 -0.175983 -0.319959 -0.320339 0.824012 127.001 124.594 124.257 117.038 0.254118 0.20221 0.29712 -0.00445616 0.00610154 0.0669647 0.0972601 0.200622 0.135027 0.121313 0.146719 0.180868 0.221124 0.204126 0.206883 0.206422 0.204587 -0.135704 0.0593863 -0.000734598 -0.00888232 -0.120158 -0.167983 -0.2876 -0.211671 0.144691 2.93196 125.159 126.142 1.43504 0.226633 0.200387 0.237794 0.132407 0.0992847 0.0901306 0.103353 0.11484 0.108134 0.119849 0.141274 0.166922 0.224081 0.191441 0.193395 0.192988 0.19172 -0.100566 0.0542697 0.0044421 -0.0113846 -0.111881 -0.159207 -0.250125 0.274896 -0.149389 -0.0377355 129.961 125.685 1.39883 0.194471 0.205079 0.21424 0.137547 0.166812 0.109987 0.110303 0.113859 0.114311 0.122061 0.137469 0.161169 0.169945 0.177263 0.178586 0.178626 0.178064 -0.0701604 0.0693751 0.00820131 -0.0135874 -0.103878 -0.149612 -0.225524 -0.0738188 -0.150185 0.0509607 0.191978 1.9275e-05 0.47983 0.201604 0.207265 0.20396 0.128661 0.148013 0.12428 0.118351 0.117403 0.120689 0.12743 0.136542 0.147333 0.155796 0.160082 0.161548 0.162209 0.163005 -0.0459218 0.0566733 0.0106495 -0.0155171 -0.0961672 -0.139175 -0.190725 -0.0223568 -0.383644 -0.143577 0.16118 -0.0194323 0.467888 0.154087 0.226043 0.195025 0.151225 0.153588 0.135676 0.125895 0.123941 0.125981 0.132236 0.147841 0.139315 0.141409 0.142492 0.143436 0.14476 0.146763 -0.0262648 0.0498433 0.0119958 -0.017117 -0.0887016 -0.12795 -0.153712 0.0323534 -0.497553 -0.126456 0.122698 -0.0204829 0.0568822 0.138727 0.21509 0.188859 0.148807 0.176183 0.145154 0.132578 0.127846 0.132212 0.134639 0.134137 0.131226 0.131989 0.127106 0.135983 0.129801 0.132142 -0.00998246 0.0527781 0.0124911 -0.018291 -0.0813992 -0.116049 -0.119961 0.0595915 -0.1805 -0.113267 0.0741247 -0.0285923 0.0307953 0.111569 0.165746 0.171252 0.145665 0.161181 0.153091 0.140299 0.141402 0.39799 0.129394 0.130269 0.12349 0.120147 0.114023 0.118749 0.117329 0.12037 0.00123784 0.0531699 0.0123738 -0.018964 -0.0741752 -0.103649 -0.0851678 0.0730205 0.0268446 -0.107487 0.0341829 -0.010698 0.0489299 0.133884 0.144826 0.191122 0.144092 0.161194 0.158404 0.250497 0.161904 0.149204 0.151721 0.132023 0.12079 0.111463 0.106639 0.105629 0.108047 0.112434 0.00869356 0.0468559 0.011843 -0.0191097 -0.0669875 -0.0909813 -0.068109 0.0772018 0.122023 -0.0844149 0.516665 0.0218975 0.0229822 0.0818256 0.121641 0.134133 0.138183 0.215989 0.161432 0.161008 0.160293 0.156065 0.147131 0.135631 0.122003 0.116012 0.106954 0.106538 0.117968 0.11225 0.0136933 0.0429152 0.0110457 -0.0187594 -0.0598301 -0.0783311 -0.0516802 0.0861177 0.143407 -0.104581 0.526994 0.0143015 0.0191047 0.0504097 0.087289 0.105818 0.153547 0.21032 0.159643 0.158442 0.159452 0.155071 0.153224 0.135966 0.12364 0.11485 0.11038 0.109187 0.110035 0.11392 0.0157764 0.0394206 0.0100672 -0.0179764 -0.0527348 -0.0660111 -0.0351247 0.0757704 0.153038 -0.14686 0.962834 0.131493 0.0722563 0.113779 0.0554187 0.0844422 0.112049 0.178512 0.147956 0.159367 0.150001 0.147462 0.141933 0.136572 0.122632 0.11608 0.113523 0.112226 0.113174 0.116524 0.0147311 0.0345737 0.00893595 -0.0168365 -0.0457666 -0.0543327 -0.0223928 0.0670365 0.113711 -0.112999 0.442718 0.0739941 0.0147874 0.00350645 0.0214525 0.0645612 0.0985561 0.169217 0.132079 0.136473 0.137907 0.133637 0.132177 0.125778 0.12034 0.131588 0.122398 0.109881 0.107604 0.104709 0.0140501 0.031113 0.00764068 -0.0154192 -0.0390147 -0.0435705 -0.0127854 0.0576606 0.0786655 0.0399917 0.0946203 0.0949293 0.00583492 -0.0376869 -0.0251121 0.0198234 0.0721643 0.111135 0.105729 0.115203 0.118565 0.120815 0.120715 0.118757 0.118185 0.113596 0.11002 0.107766 0.106327 0.10523 0.0118657 0.0267231 0.00615699 -0.0138063 -0.0325828 -0.0339416 -0.00569176 0.0484367 0.0589602 1.11356 0.115315 0.15221 -0.00806319 -0.0703291 -0.0708717 -0.0227552 0.0372871 0.0718546 0.0889772 0.0989159 0.104953 0.109015 0.112605 0.108124 0.11055 0.108715 0.107865 0.10957 0.107958 0.108119 0.00778657 0.0220796 0.00448426 -0.012079 -0.0265831 -0.0256156 0.000360445 0.0406402 0.0509208 0.118785 0.103751 0.101592 -0.020457 -0.0832509 -0.0989191 -0.0553755 0.00920094 0.051366 0.0731093 0.0848391 0.0920449 0.0964482 0.110771 0.205541 0.101372 0.101184 0.102168 0.103869 0.106436 0.11 0.00312334 0.0164574 0.00266552 -0.0103137 -0.0211221 -0.0186641 0.00226231 0.0338069 0.0523475 0.0864414 0.0864152 0.0458838 -0.0158418 -0.0733259 -0.0998999 -0.0626509 -0.00147832 0.040659 0.070543 0.0747482 0.0814455 0.0854307 0.0875126 0.0893859 0.0916076 0.0932952 0.0948635 0.0964876 0.0981219 0.0996952 -0.00507915 0.00779394 0.000812795 -0.00857975 -0.0162917 -0.0130969 0.00340698 0.0272618 0.0367869 0.0566856 0.0629371 0.0363681 -0.00233299 -0.0511894 -0.0700874 -0.039445 0.0092349 0.043121 0.0618381 0.0755164 0.074275 0.0769075 0.0792869 0.0815613 0.0836746 0.0855087 0.0871383 0.0886732 0.0901754 0.0916563 -0.0231383 -0.0096077 -0.000830235 -0.00693291 -0.0121616 -0.00895013 0.00314725 0.0230445 0.0173496 0.0286374 0.0376107 0.0232462 0.0401109 -0.0289241 0.000981231 -0.00426351 0.0278633 0.0500903 0.0622998 0.0756034 0.07487 0.0678966 0.0693142 0.0709921 0.0728988 0.0747656 0.0764351 0.0778535 0.079018 0.0799465 -0.055278 -0.0477497 -0.00181262 -0.00541227 -0.00876302 -0.00604577 0.00365485 0.0327718 -0.0180684 -0.0144703 0.0112905 0.0115151 0.00084646 -0.00737732 0.000479289 0.0150266 0.0347066 0.048765 0.0611474 0.0740861 0.0820301 0.0773899 0.0546443 0.0550531 0.0558736 0.0571477 0.0594573 0.0608671 0.0619263 0.0625791 -0.0158246 -0.0224761 -0.00176679 -0.00404092 -0.00607935 -0.00425791 -0.00209295 0.0038331 -0.0701139 -0.0512356 -0.015089 0.00237944 0.00319279 0.00229076 0.010851 0.0192135 0.0312916 0.0984056 0.0449907 0.0417779 0.0404403 0.0381236 0.0351663 0.0331235 0.0326952 0.0396888 0.034628 0.0357907 0.0376668 0.0368817 0.000584458 -0.000510984 -0.0011381 -0.00282981 -0.00403367 -0.00329688 -0.00404275 -0.0170409 -0.0975821 -0.113261 -0.0330895 -0.00383377 0.00317576 0.143824 0.0129111 0.0177205 0.071734 0.0303763 0.0268706 0.163827 0.0354133 0.0277224 0.0166032 0.00901935 0.013448 0.00505538 0.00609571 0.00782725 0.00963166 0.0156908 0.00435903 0.00508706 -0.000548343 -0.00179169 -0.00249562 -0.00262001 -0.00566414 -0.0197227 -0.0116016 -0.0749089 -0.0338061 -0.00859077 -1.96558e-06 0.00476828 0.00900459 0.0141661 0.00914151 0.0114758 0.0128629 0.0169724 0.0160041 0.099808 0.0323464 -0.0180661 -0.0140004 -0.00922145 -0.00649604 -0.00244919 0.00818662 0.0487499 0.00345979 0.00453108 -0.000133089 -0.000941639 -0.00131616 -0.00181381 -0.00462882 -0.0146999 -0.00232754 0.0422831 -0.0262186 -0.0140818 -0.00701832 -0.00207307 0.00113723 0.00227395 0.0061475 0.00142972 0.031276 0.000819872 -0.000851271 -0.00208816 0.00910038 -0.00282608 -0.0022078 -0.0048237 -0.0057225 -0.00627854 -0.00716653 -0.00514185 0.00103973 0.00194108 2.01033e-05 -0.000285306 -0.000393657 -0.000700528 -0.00198947 -0.00519411 -0.000785054 -0.0155244 -0.0237725 -0.0227255 -0.0174471 -0.0120789 -0.00815853 -0.0061032 -0.00589049 -0.00678761 -0.00807878 -0.0076687 -0.0061886 -0.00411135 -0.00222985 -0.000430417 0.00210944 0.00212951 0.00226689 0.00766634 0.00625937 0.00207769 0.215109 0.235353 0.244258 0.417546 0.225232 0.724726 0.190907 0.195195 0.15373 0.0979027 0.0745962 0.0594708 0.048427 -0.153924 102.898 104.754 109.998 108.318 106.642 113.802 112.98 83.6758 0.064221 0.0721405 0.0270228 0.056027 0.0899591 -0.1141 95.6229 115.197 0.162744 0.23787 0.252887 0.25789 0.223597 0.678912 0.182228 0.189098 0.145801 0.0914777 0.058309 0.0583599 0.0702995 0.236194 88.0998 106.651 109.853 108.975 106.092 114.273 117.652 58.4396 0.0271582 0.061186 0.0276959 0.0544387 0.0908132 -0.0830731 -0.16527 116.639 0.167864 0.233579 0.252769 0.256578 0.210628 0.330729 0.182702 0.18323 0.142102 0.0802184 0.0517983 0.0600599 0.0592474 0.184717 -0.553071 108.391 111.795 108.472 105.853 114.727 120.274 0.128105 0.0135393 0.0495623 0.0280451 0.0529075 0.0866579 -0.0594053 -0.121055 33.7229 0.219426 0.218831 0.236828 3.94382 0.194357 0.210452 0.184693 0.176896 0.14089 0.0837371 0.0548626 0.0669104 0.0803697 0.154073 0.576719 103.57 107.513 107.998 105.821 114.83 120.684 1.33777 0.0319351 0.0386561 0.0280637 0.0513398 0.0791666 -0.0462034 -0.108098 0.09246 0.222111 0.209755 0.189621 1.54611 0.187283 0.202066 0.182681 0.170862 0.141898 0.0932518 0.0650604 0.0707217 0.0910919 0.102946 0.00771288 -0.295009 107.372 110.018 108.41 114.418 120.764 0.115922 0.0517227 0.0287717 0.0277848 0.0496294 0.0701066 -0.0382646 -0.098363 0.112949 0.211889 0.204353 0.196623 0.186089 0.181401 0.215246 0.174968 0.165912 0.144738 0.106693 0.0808989 0.0817454 0.0948929 0.114404 -0.0101126 -0.309403 10.6159 112.377 110.17 114.045 120.895 0.0630197 -0.0497457 0.0196995 0.02721 0.0477361 0.0608026 -0.0334809 -0.0880407 0.0923042 0.201176 0.19674 0.191613 0.185545 0.182724 0.185029 0.169891 0.162621 0.147458 0.121087 0.0986955 0.0916802 0.109294 0.122945 0.0128762 -0.162792 0.521731 49.9475 111.176 115.408 132.429 -0.11746 -0.0717577 0.0121427 0.0263635 0.0456273 0.0520137 -0.0302065 -0.0772997 0.087636 0.190511 0.186477 0.182989 0.180529 0.177587 0.174892 0.180271 0.160258 0.149348 0.129995 0.113902 0.101671 0.103981 0.0964271 0.0554064 -0.0451331 0.661316 -0.0591012 -0.165427 89.4866 -0.448658 -0.141623 -0.101372 0.00810546 0.0252874 0.0432988 0.0441535 -0.0275382 -0.0652025 0.0748819 0.177356 0.175981 0.188133 0.174232 0.169895 0.166602 0.160638 0.167364 0.149649 0.134344 0.125075 0.108175 0.097255 0.0859159 0.0495394 0.0126494 0.551567 -0.0472158 -0.15637 -0.21379 -0.371727 -0.237339 -0.0952859 0.00420077 0.0240365 0.0407739 0.0371872 -0.0251017 -0.053997 0.0626117 0.163736 0.164772 0.167391 0.160989 0.161065 0.159422 0.155446 0.151365 0.152147 0.138424 0.128343 0.176293 0.0952616 0.0792902 0.0593729 0.141082 0.216997 -0.0324618 -0.15631 -0.185418 -0.345134 -0.246588 -0.0700726 0.00319584 0.0226636 0.0380855 0.031163 -0.0233172 -0.0435746 0.0508915 0.148625 0.150429 0.15158 0.151616 0.152846 0.153396 0.150512 0.147125 0.142687 0.13775 0.121526 0.159327 0.094161 0.0742059 0.0544972 0.0378839 0.0394903 -0.0246323 -0.152742 -0.20818 -0.325572 -0.372196 -0.0379959 0.00207689 0.0212098 0.0352685 0.0260326 -0.0218191 -0.0345326 0.0403298 0.13523 0.138036 0.141148 0.143863 0.151534 0.151748 0.146353 0.142987 0.138739 0.131535 0.126196 0.115751 0.0926223 0.0687227 0.0386436 0.0308462 0.00647653 0.334056 -0.13683 -0.202468 -0.354668 -0.400596 -0.0070674 0.00192086 0.0196986 0.0323596 0.0217411 -0.0202182 -0.0269162 0.0312548 0.123948 0.128409 0.132483 0.137142 0.141627 0.16364 0.164145 0.140161 0.13716 0.130122 0.118849 0.11543 0.0916974 0.0676601 0.0410742 0.0156704 -0.00208568 0.463749 -0.0668907 -0.145316 -0.350503 -0.469982 -0.00509803 0.00158455 0.0181375 0.0293898 0.0182224 -0.0181746 -0.020565 0.0238186 0.116904 0.121583 0.127052 0.133174 0.136451 0.139826 0.137447 0.137622 0.134396 0.1259 0.113778 0.140772 0.0948135 0.0666974 0.0321763 0.00625064 -0.00182704 0.449019 -0.0954378 -0.142751 -0.219377 -0.467737 -0.0272014 0.000985482 0.0165219 0.0263855 0.0153754 -0.0156624 -0.0152207 0.0179903 0.116224 0.123191 0.125878 0.132553 0.134052 0.139281 0.136232 0.137921 0.133874 0.123781 0.110303 0.101548 0.118711 0.0682937 0.0472761 -0.00455414 -0.0197965 0.501064 -0.125535 -0.16799 -0.157458 -0.361702 -0.0407198 0.000408672 0.0148432 0.0233777 0.0130696 -0.0128839 -0.0108189 0.0136103 0.118296 0.124197 0.129186 0.133525 0.140184 0.135851 0.134814 0.134079 0.124124 0.116568 0.106134 0.0929937 0.0876918 0.125659 0.0263309 -0.0131613 -0.0335129 0.1295 -0.13976 -0.102109 -0.202337 -0.251111 -0.0474863 -4.17269e-05 0.013093 0.0204029 0.011163 -0.0100615 -0.00729696 0.0103989 0.122601 0.1314 0.136573 0.147289 0.143101 0.139232 0.140043 1.83665 0.524474 0.107976 0.102498 0.0900357 0.0680346 0.113444 0.0271145 -0.00719048 -0.0524785 0.0180132 -0.139521 -0.107894 -0.124497 -0.109076 -0.0154843 -0.000446989 0.011268 0.0175039 0.0095382 -0.00739297 -0.0046534 0.00805198 0.0982145 0.0823702 0.0685407 0.0802338 0.10345 0.285377 0.127836 0.124052 0.113678 0.109066 0.102545 0.0893704 0.0720143 0.0478395 0.0230272 -0.0261807 -0.0431069 -0.0144769 0.048605 0.0627946 -0.170288 -0.0530921 -0.0126578 -0.000991223 0.00937137 0.0147237 0.00812369 -0.00507436 -0.00273739 0.00630767 0.104639 0.104916 0.107983 0.113177 0.116577 0.122039 0.12562 0.117877 0.126524 0.115914 0.106257 0.0903282 0.0690905 0.0434567 0.0154999 -0.0282139 -0.0600901 -0.0480062 0.270765 0.238549 -0.194717 -0.0259899 -0.0111984 -0.00188167 0.00741347 0.0120988 0.00686891 -0.00323162 -0.00144056 0.00495932 0.108837 0.112057 0.115839 0.11995 0.12384 0.127623 0.13023 0.130099 0.126987 0.121387 0.108748 0.0888923 0.0633524 0.0332953 0.00325726 -0.0325519 -0.058699 -0.0522508 0.162675 -0.0433123 -0.151555 0.0236327 -0.014214 -0.0032038 0.00541586 0.00965614 0.00573599 -0.00185436 -0.000609776 0.00387848 0.121275 0.113906 0.117023 0.120777 0.12481 0.129267 0.134325 0.133346 0.129689 0.120575 0.104234 0.080126 0.0499036 0.0155341 -0.0171065 -0.0404155 -0.063612 -0.0805294 0.198689 -0.0531193 -0.111809 -0.0487785 -0.0178675 -0.00488143 0.00341455 0.00741459 0.0047016 -0.000869714 -8.90305e-05 0.0029886 0.101943 0.105144 0.108492 0.112179 0.116191 0.122322 0.128759 0.123524 0.118629 0.105958 0.0850392 0.0602387 0.0217308 -0.0172075 -0.0457065 -0.062715 -0.0704125 -0.0806685 0.267287 -0.0391285 -0.0834171 -0.0483666 -0.020746 -0.00673079 0.00146549 0.00538817 0.00375516 -0.000209423 0.000215108 0.00224706 0.0931523 0.0947968 0.0966739 0.0987378 0.100811 0.102497 0.103036 0.0994903 0.0893551 0.0699847 0.0425153 0.0182789 -0.00137545 -0.0821905 -0.0990272 -0.0962457 -0.0871442 -0.0855229 0.0498541 0.722287 -0.0690539 -0.044669 -0.0227734 -0.00855587 -0.000368123 0.00359151 0.00289328 0.000192237 0.0003673 0.00163566 0.080684 0.0812829 0.081694 0.0817487 0.0811044 0.0788716 0.0733918 0.0627281 0.0684407 0.0105751 -0.0315091 -0.0877922 -0.149284 -0.193158 -0.176079 -0.140308 -0.102749 -0.06325 0.0867778 -0.0486934 -0.0567925 -0.0430961 -0.0242078 -0.0101859 -0.0019871 0.0020454 0.00211607 0.000393528 0.000418048 0.00114839 0.0628454 0.0626687 0.0617795 0.0596624 0.0554216 0.0478998 0.0338518 0.0181327 0.0104456 -0.0548168 -0.129754 -0.21877 -0.296658 -0.341998 -0.318579 -0.221025 -0.114719 -0.0492209 -0.0309893 -0.026498 -0.0424325 -0.0433429 -0.0256373 -0.0114635 -0.00328151 0.000779982 0.00143017 0.00044924 0.000408546 0.000782192 0.0379036 0.0382837 0.037763 0.0358954 0.0319211 0.0243408 0.0422417 -0.00288873 -0.0526843 -0.1131 -0.0578383 -0.282649 -0.381796 -0.434306 -0.388532 -0.242326 -0.126508 -0.0351989 -0.00711717 0.335832 -0.0497201 -0.0353931 -0.00318323 -0.0121887 -0.00411705 -0.000171165 0.000849886 0.000405064 0.000366583 0.000525045 0.0115262 0.0120388 0.0116606 0.00976812 0.00539534 -0.00292385 -0.0172856 -0.0378798 -0.0672252 -0.117501 -0.18898 -0.252064 -0.368174 -0.393358 -0.349923 -0.240932 -0.109511 -0.0170145 0.0158492 0.280719 -0.0779087 -0.0505108 -0.0295689 -0.0119543 -0.00434401 -0.000774668 0.000391745 0.000304272 0.000298825 0.00035108 0.0140981 0.00476549 0.00353635 0.00126361 -0.00256161 -0.00863159 -0.017852 -0.0316789 -0.0525275 -0.0838612 -0.127841 -0.182816 -0.230214 -0.243147 -0.216164 -0.150839 -0.0644263 0.0018371 0.00586523 -0.00351072 1.04807 -0.0366246 -0.0240152 -0.00972145 -0.00385397 -0.00101009 6.77687e-05 0.000171693 0.000204361 0.000228132 -0.00247497 -0.000420643 -0.000981344 -0.00177377 -0.00858198 -0.00813451 -0.00981531 -0.0145154 -0.0237968 -0.0399197 -0.0621803 -0.0870716 -0.105828 -0.107215 -0.0832602 -0.0401989 -0.0128998 0.0201802 0.0077857 0.00659637 -0.0163952 0.0182953 -0.0146963 -0.00601221 -0.00269399 -0.000899084 -0.000125055 2.54506e-05 8.63724e-05 0.00012864 0.0095864 -0.00200347 0.000138684 0.0259484 0.0662816 -0.0047479 -0.00229669 -0.00289236 -0.00695034 -0.0143843 -0.026579 -0.0412213 -0.0405327 -0.0161277 -0.0221777 0.0944105 0.0139589 0.0142707 0.00842606 0.0082356 0.011452 -0.0036326 -0.00453825 -0.00182539 -0.00112552 -0.000528004 -0.000214577 -0.000127144 -5.34689e-05 3.31559e-05 118.217 107.5 97.8643 90.7604 85.6925 82.5917 82.3616 85.5474 90.072 93.5835 95.4422 95.9305 95.5206 94.6281 93.5479 92.4636 91.4774 90.6372 89.9552 89.4225 89.019 88.7222 88.5101 88.3647 88.271 88.217 88.1931 88.1917 88.2068 88.2334 120.856 110.629 100.076 92.3651 86.8079 83.1535 82.0547 84.4702 88.9556 92.8627 95.1357 95.9262 95.6979 94.8916 93.834 92.7339 91.7122 90.8287 90.1038 89.5327 89.0973 88.7749 88.543 88.3822 88.2767 88.2138 88.1833 88.177 88.1885 88.2127 120.897 110.627 100.051 92.3431 86.7864 83.1122 81.9643 84.3893 88.9525 92.9141 95.2017 95.9843 95.7416 94.9205 93.8484 92.7338 91.6988 90.8042 90.0711 89.4947 89.0564 88.7328 88.5008 88.3405 88.2356 88.1734 88.1436 88.1379 88.15 88.1746 120.973 110.624 100.01 92.3074 86.751 83.0441 81.8132 84.2465 88.9335 92.9877 95.3072 96.0826 95.8186 94.974 93.8779 92.7393 91.6814 90.7675 90.0201 89.4343 88.9909 88.6651 88.4327 88.2731 88.1694 88.1085 88.08 88.0754 88.0884 88.1137 121.086 110.62 99.9544 92.258 86.702 82.9503 81.6017 84.0434 88.9042 93.0862 95.4507 96.2192 95.9281 95.0521 93.9229 92.7504 91.6602 90.7191 89.9513 89.3524 88.9017 88.5728 88.3399 88.1812 88.0791 88.02 87.9931 87.99 88.0041 88.0304 121.237 110.611 99.8825 92.1946 86.6395 82.8321 81.3273 83.7756 88.8655 93.2116 95.6331 96.3931 96.068 95.1519 93.9805 92.765 91.6338 90.6577 89.8638 89.2481 88.7881 88.4555 88.2222 88.0648 87.9646 87.9074 87.8822 87.8806 87.8961 87.9235 121.427 110.593 99.7945 92.1174 86.5641 82.6911 80.9871 83.4365 88.8177 93.366 95.856 96.605 96.2373 95.2716 94.0491 92.7819 91.6011 90.5821 89.7562 89.1199 88.649 88.3122 88.0788 87.9232 87.8253 87.7702 87.7467 87.7465 87.7634 87.7921 121.658 110.564 99.6899 92.0264 86.4763 82.5298 80.5775 83.0175 88.7612 93.5518 96.1219 96.8561 96.4361 95.411 94.1287 92.8011 91.5616 90.4912 89.6267 88.9659 88.4826 88.1417 87.9089 87.7559 87.661 87.6083 87.5865 87.5877 87.6058 87.6359 121.932 110.517 99.5684 91.9216 86.3765 82.3511 80.0946 82.5075 88.6967 93.7717 96.4334 97.1479 96.6649 95.5702 94.2191 92.8225 91.5147 90.3833 89.473 88.7837 88.2865 87.9419 87.7112 87.5624 87.4717 87.4222 87.4024 87.4046 87.4236 87.455 122.253 110.449 99.4294 91.8031 86.2653 82.1591 79.5335 81.8918 88.6256 94.0292 96.7936 97.4824 96.9243 95.7492 94.3206 92.8463 91.4598 90.2567 89.2923 88.57 88.0579 87.7107 87.4841 87.3418 87.2574 87.2126 87.1955 87.1985 87.2171 87.2485 122.626 110.352 99.2722 91.6709 86.1431 81.9589 78.889 81.151 88.5498 94.3281 97.2062 97.8617 97.2149 95.9483 94.4332 92.8725 91.3964 90.1091 89.0812 88.3209 87.793 87.4452 87.2258 87.0934 87.0182 86.9805 86.9675 86.9715 86.9878 87.0143 123.068 110.217 99.0957 91.5253 86.0101 81.7567 78.1553 80.2598 88.472 94.6727 97.6752 98.2885 97.5375 96.1672 94.5569 92.9015 91.3243 89.9379 88.8354 88.0314 87.4871 87.1417 86.9339 86.8159 86.7539 86.7264 86.7198 86.726 86.7405 86.7619 123.597 110.031 98.8983 91.3664 85.8663 81.5606 77.3264 79.1842 88.3962 95.0679 98.2045 98.7657 97.8926 96.4058 94.6914 92.9335 91.2434 89.7401 88.55 87.6953 87.1346 86.7957 86.6057 86.5077 86.4637 86.4501 86.4528 86.4634 86.4773 86.4973 124.23 109.783 98.6779 91.1946 85.7112 81.3806 76.3971 77.8797 88.3274 95.5191 98.8001 99.2966 98.2808 96.6634 94.8361 92.9685 91.1542 89.5124 88.2191 87.3049 86.7279 86.402 86.2376 86.1668 86.1462 86.1503 86.1652 86.1831 86.2002 86.2318 124.984 109.474 98.4314 91.0101 85.5435 81.2291 75.3613 76.2889 88.2723 96.0322 99.4672 99.885 98.7022 96.9391 94.99 93.0061 91.0576 89.2505 87.8361 86.8498 86.2575 85.9538 85.8259 85.7914 85.8003 85.8251 85.853 85.8788 85.9016 85.9235 125.885 109.11 98.1549 90.8134 85.361 81.1215 74.2099 74.3435 88.2388 96.6143 100.212 100.535 99.157 97.2314 95.1514 93.044 90.9541 88.9492 87.393 86.3168 85.7108 85.4433 85.3666 85.3802 85.4259 85.4744 85.5151 85.547 85.5728 85.5958 126.96 108.696 97.8429 90.6045 85.1602 81.0768 72.9369 71.9566 88.2354 97.2743 101.039 101.252 99.6444 97.5379 95.3183 93.0773 90.8376 88.597 86.88 85.6871 85.0709 84.8611 84.8564 84.9331 85.0257 85.1022 85.1557 85.1919 85.2181 85.2403 128.237 108.252 97.4882 90.3833 84.9354 81.1191 71.5544 68.985 88.2769 98.0189 101.957 102.04 100.163 97.8546 95.4878 93.0964 90.6759 88.1755 86.2838 84.9339 84.3139 84.1977 84.2932 84.4516 84.6047 84.7163 84.7844 84.8242 84.8496 84.8692 129.798 107.804 97.081 90.1484 84.6783 81.2808 70.1603 65.2838 88.3985 98.8439 102.97 102.906 100.708 98.1747 95.6551 93.0897 90.4102 87.7434 85.5968 84.0179 83.4047 83.4458 83.6806 83.9404 84.1724 84.3319 84.4189 84.4621 84.4848 84.4992 131.734 107.374 96.6082 89.897 84.3767 81.5974 69.0115 60.8632 88.6412 99.7482 104.082 103.854 101.274 98.4868 95.8161 93.0547 90.0582 87.3809 84.8216 82.8836 82.2924 82.6081 83.0374 83.4172 83.7484 83.9713 84.0791 84.1203 84.1328 84.136 134.168 106.978 96.0526 89.6207 84.017 82.1049 68.5863 55.986 89.0031 100.717 105.294 104.888 101.845 98.7739 96.0125 93.017 89.7397 87.0608 83.976 81.4604 80.9061 81.6857 82.3859 82.9253 83.3751 83.6593 83.777 83.8018 83.7915 83.7747 137.275 106.631 95.3895 89.3009 83.5969 82.8427 69.5757 52.2127 89.4063 101.716 106.604 106.013 102.392 99.0171 96.3422 93.0276 89.5514 86.8103 83.1068 79.611 79.0145 80.6098 81.6868 82.4797 83.0896 83.4212 83.522 83.505 83.4511 83.4027 141.263 106.343 94.5824 88.8981 83.25 83.8007 70.457 51.1876 89.8688 102.728 108.004 107.226 102.849 99.1907 96.7479 93.1493 89.5387 86.6997 82.3135 76.9015 75.6424 79.2234 80.9025 82.0696 82.9274 83.2985 83.3351 83.2292 83.0914 82.9887 146.407 106.126 93.5828 88.4674 82.9455 84.8581 0.0340692 -7.15308 90.4892 103.792 109.473 108.522 103.095 99.2364 97.2385 93.4637 89.7436 86.7746 81.7966 73.57 70.3218 77.616 79.8322 81.7403 83.0153 83.3786 83.2478 82.9829 82.6765 82.4646 153.069 105.986 92.3448 88.0607 83.0212 85.9697 -0.44862 0.282411 92.3698 104.964 110.968 109.89 102.807 99.0165 98.1739 94.0234 90.1734 87.026 81.9952 71.7138 65.645 76.5932 77.268 81.6081 83.6885 83.7586 83.2352 82.8377 82.1411 81.6419 161.767 105.918 90.8147 87.8665 82.5843 13.1154 -0.408509 0.578601 94.335 106.116 112.445 111.316 101.49 98.4914 98.9477 94.8143 90.7254 87.363 83.6781 69.9225 4.76699 0.323432 0.289338 3.3722 16.8263 25.9646 31.3989 36.6342 39.0696 42.1171 173.23 105.905 88.9159 88.0469 8.53673 -0.326947 -0.413772 0.634014 95.9742 106.957 113.903 112.75 100.775 98.0922 100.034 95.8253 91.138 87.4952 86.8112 0.292097 0.323749 0.297444 0.274801 0.260882 0.255764 0.255598 0.253152 0.251534 0.250223 0.249015 189.376 105.909 86.5497 81.6674 -0.13345 -0.278673 -0.429158 -1.77009 97.4839 108.065 115.371 114.017 101.751 99.3436 101.123 97.0335 90.7117 86.4749 0.77906 0.338842 0.387207 0.259443 0.260703 0.258898 0.257098 0.256147 0.254765 0.252682 0.251074 0.251322 152.406 105.938 83.0762 0.0488839 -0.143989 -0.244691 -0.441094 -1.42118 100.017 110.868 116.884 114.864 102.578 102.781 101.72 98.6575 89.0093 0.440214 0.252169 0.249066 0.2105 0.225561 0.241523 0.251667 0.255702 0.256652 0.256377 0.254904 0.24783 0.271936 -8.24938 106.194 35.7755 0.0224306 -0.152419 -0.228953 -0.451085 -1.09081 105.236 114.523 117.759 115.351 101.803 106.231 101.248 101.153 74.1358 0.182625 0.226579 0.193681 0.187307 0.214447 0.221172 0.238786 0.251048 0.254855 0.255776 0.264478 0.250386 0.246025 88.2717 88.3273 88.4051 88.5109 88.6518 88.8365 89.0758 89.3831 89.7747 90.2694 90.8867 91.6432 92.5459 93.5827 94.7131 95.8601 96.8951 97.6021 97.6484 96.5942 93.9794 89.819 85.6862 84.023 85.2444 88.6936 93.6324 98.9988 103.992 106.715 88.2482 88.2991 88.371 88.4694 88.601 88.7741 88.9989 89.2883 89.658 90.1263 90.7131 91.4362 92.3058 93.3155 94.432 95.588 96.6699 97.4874 97.7368 97.0013 94.8004 90.9344 86.523 84.1181 84.7094 87.6692 92.344 97.6685 102.833 106.389 88.2104 88.2616 88.3336 88.4321 88.5636 88.7364 88.9612 89.2508 89.6213 90.0916 90.6819 91.4104 92.2879 93.3077 94.4358 95.6035 96.6977 97.5279 97.7895 97.0614 94.8478 90.9293 86.4479 84.047 84.6737 87.6495 92.3372 97.6651 102.838 106.409 88.15 88.2015 88.2737 88.3721 88.5032 88.6757 88.9002 89.1903 89.5624 90.0361 90.6322 91.3702 92.2615 93.2997 94.449 95.638 96.7514 97.599 97.876 97.1534 94.9129 90.9078 86.318 83.9288 84.6133 87.6163 92.3271 97.6613 102.848 106.447 88.0674 88.1194 88.1918 88.29 88.4207 88.5926 88.8169 89.1077 89.4822 89.9607 90.5653 91.3165 92.2276 93.2925 94.4726 95.6919 96.8312 97.6995 97.9941 97.2769 94.9995 90.876 86.1348 83.7643 84.5288 87.5695 92.3136 97.657 102.865 106.504 87.9614 88.0142 88.0871 88.1853 88.3156 88.4869 88.711 89.0028 89.3804 89.8652 90.4806 91.2491 92.1858 93.285 94.5044 95.7615 96.9327 97.8267 98.1432 97.4332 95.11 90.8343 85.8939 83.5522 84.4209 87.5089 92.2968 97.652 102.888 106.579 87.8312 87.8851 87.9587 88.0571 88.1871 88.3579 88.582 88.8751 89.2564 89.7488 90.3774 91.1668 92.1349 93.2768 94.5434 95.8444 97.0535 97.9794 98.3235 97.6235 95.2461 90.782 85.589 83.2919 84.2903 87.4346 92.2769 97.6461 102.916 106.673 87.6766 87.7318 87.8062 87.905 88.0348 88.2051 88.4291 88.7237 89.1094 89.6106 90.2543 91.0682 92.0739 93.2674 94.5898 95.9404 97.1929 98.1572 98.5354 97.8495 95.4099 90.7186 85.2121 82.9823 84.1382 87.3463 92.2544 97.6391 102.949 106.787 87.4976 87.5541 87.6288 87.728 87.8579 88.0277 88.2515 88.5476 88.938 89.449 90.1099 90.9517 92.001 93.2566 94.6439 96.0495 97.3508 98.3601 98.7796 98.1129 95.6039 90.6435 84.7528 82.6226 83.9658 87.2439 92.2297 97.6307 102.988 106.919 87.2935 87.3518 87.4241 87.5247 87.6554 87.8247 88.0482 88.3457 88.7411 89.2627 89.9425 90.8151 91.9142 93.2442 94.7061 96.1713 97.5271 98.5882 99.0568 98.4159 95.8312 90.5564 84.1973 82.2123 83.7747 87.1272 92.2033 97.6206 103.031 107.07 87.0593 87.1326 87.1837 87.2937 87.4264 87.5954 87.8181 88.1167 88.5172 89.05 89.75 90.656 91.8102 93.2301 94.777 96.3054 97.7218 98.8415 99.3678 98.7609 96.0955 90.4567 83.5271 81.7511 83.5667 86.9958 92.176 97.6084 103.077 107.244 86.7905 87.0426 86.92 87.0357 87.1708 87.3393 87.5604 87.8594 88.2646 88.8087 89.5302 90.4716 91.6848 93.2144 94.8565 96.4502 97.9345 99.1203 99.7135 99.1509 96.4011 90.3442 82.7169 81.2394 83.3438 86.8491 92.1485 97.5937 103.127 107.442 86.5412 86.5903 86.6511 86.7521 86.8879 87.0554 87.2737 87.5725 87.982 88.537 89.2807 90.2594 91.531 93.1973 94.9428 96.6035 98.1649 99.4245 100.095 99.5891 96.7532 90.2187 81.7307 80.6787 83.1079 86.6864 92.1217 97.5758 103.18 107.665 86.2612 86.2883 86.35 86.4443 86.5752 86.7401 86.9564 87.2552 87.6677 88.2323 88.9986 90.0173 91.338 93.1771 95.0299 96.7614 98.4132 99.7544 100.513 100.079 97.1581 90.0803 80.5147 80.0712 82.8613 86.5063 92.0964 97.5543 103.234 107.913 85.9472 85.9827 86.0349 86.1132 86.2304 86.3923 86.6076 86.9071 87.3205 87.8913 88.6802 89.7443 91.0864 93.1403 95.1013 96.9188 98.6796 100.11 100.968 100.625 97.624 89.9296 78.9889 79.4222 82.6054 86.3071 92.0734 97.5282 103.289 108.186 85.6204 85.6524 85.694 85.7513 85.844 86.0143 86.2301 86.5292 86.9391 87.51 88.3197 89.4395 90.7497 93.0192 95.1176 97.0701 98.9657 100.492 101.462 101.233 98.1619 89.7674 77.0751 78.7427 82.3405 86.0858 92.0531 97.4967 103.344 108.487 85.2638 85.2959 85.3424 88.5512 85.4576 85.6214 85.8296 86.1235 86.5221 87.0825 87.9085 89.0984 90.3759 92.6308 94.9979 97.2118 99.2743 100.9 101.995 101.907 98.7875 89.5955 74.7146 78.0612 82.0656 85.8372 92.0353 97.4588 103.397 108.815 84.8889 84.9148 84.9509 85.7717 84.8752 85.1964 85.4082 85.6915 86.0681 86.6006 87.4331 88.7121 90.1616 92.0146 94.6406 97.3479 99.6103 101.333 102.567 102.655 99.5195 89.4248 71.7166 77.4436 81.7821 85.5529 92.0193 97.4131 103.446 109.17 84.5121 84.5276 84.5495 84.5909 84.6139 84.7688 84.9676 85.2356 85.5766 86.0526 86.8732 88.2675 90.0462 91.4098 94.0612 97.4963 99.9807 101.791 103.177 103.484 100.364 89.2851 67.801 76.9642 81.4847 85.2177 92.0036 97.3579 103.488 109.554 84.1379 84.1417 84.1497 84.167 84.2123 84.3422 84.5039 84.7631 85.0512 85.4221 86.1983 87.742 89.8859 90.8299 93.5208 97.6915 100.395 102.271 103.823 104.402 101.301 89.2235 62.862 76.7233 81.1593 84.8057 91.9864 97.2912 103.521 109.966 83.7609 83.7503 83.7396 83.7299 83.7563 83.9726 84.0346 84.2885 84.498 84.682 85.3592 87.1215 89.6619 90.4446 93.4045 97.9747 100.864 102.77 104.501 105.42 102.342 89.3107 57.0297 76.8724 80.7933 84.2814 91.9653 97.2104 103.54 110.407 83.3708 83.3513 83.3311 83.299 83.2844 83.3725 83.6525 83.8255 83.9159 83.7823 84.2613 86.3951 89.4124 90.4973 93.8926 98.3703 101.399 103.28 105.203 106.55 103.513 89.6178 50.5686 77.6356 80.3638 83.6154 91.9354 97.1133 103.541 110.874 82.9403 82.9344 82.9269 82.8669 82.8101 82.9193 83.2268 83.3933 83.3139 82.6096 82.6859 85.5755 89.167 90.9397 94.8008 98.8645 102.014 103.791 105.916 107.804 104.862 90.3393 43.5987 79.2657 79.7795 82.7997 91.8912 96.9974 103.517 111.36 82.4125 82.5005 82.5662 82.3997 82.1877 82.3434 82.8798 83.0315 82.786 80.723 80.2319 84.6726 88.9341 91.555 95.7633 99.418 102.725 104.288 106.615 109.19 106.371 91.6272 63.312 29.179 78.6989 81.8615 91.8414 96.8607 103.456 111.854 81.603 82.0881 82.516 81.9376 81.2223 81.5559 82.6242 82.703 82.494 78.0434 77.7317 83.8697 88.7128 92.1692 96.4614 100.03 103.559 104.744 107.259 110.691 108.014 92.387 -3.5514 0.228697 41.5929 80.9662 91.7872 96.7014 103.361 112.335 46.5398 54.687 63.0451 66.6633 70.1023 77.5223 83.2956 82.5517 83.7193 75.5739 75.4127 83.5454 88.499 92.7399 97.0883 100.809 104.551 105.11 107.769 112.251 109.698 93.7593 -0.201036 0.255811 0.0129519 79.8776 91.7908 96.5191 103.23 112.765 0.247472 0.241438 0.234266 0.231737 0.234895 0.234442 0.231033 0.211123 0.206963 0.281079 53.5288 83.4155 88.3241 93.3467 97.9552 101.874 105.735 105.317 108.011 113.757 111.159 95.101 -0.265265 0.221201 0.0148065 6.00296 91.7857 96.3318 102.992 113.079 0.255715 0.256304 0.245553 0.24403 0.249681 0.233937 0.229231 0.218261 0.211827 0.232381 0.237345 48.0628 88.0136 94.0141 98.8934 103.125 107.152 105.295 107.827 115.114 113.484 96.1582 -0.0239163 0.158833 0.0128805 0.0812564 91.8949 96.2361 102.682 113.152 0.248836 0.244552 0.23962 0.233309 0.226129 0.22593 0.221033 0.217095 0.191964 0.167231 0.157431 0.0467313 84.9166 94.6977 99.5506 104.398 108.746 105.281 107.72 115.807 115.302 100.562 0.110739 0.106544 0.0108374 0.0796595 70.7534 96.4195 102.481 112.703 0.241759 0.240964 0.238499 0.230171 0.219031 0.20794 0.209734 0.20547 0.161216 0.111688 0.103093 0.0758322 -0.0557506 94.7643 99.6423 105.588 109.967 106.003 109.182 115.743 114.561 64.1306 0.148358 0.0712623 0.0111433 0.0742864 0.141497 96.7458 102.311 111.681 -3.36926 106.942 1.17703 0.00571651 -0.154522 -0.220873 -0.44201 -0.823418 74.53 115.596 116.078 116.011 100.779 107.392 98.5519 105.182 0.556065 0.13796 0.244295 0.123253 0.16234 0.17472 0.208347 0.222813 0.24353 0.250716 0.266791 0.249905 0.250245 0.25961 -2.526 107.374 0.0171497 -0.00105559 -0.153763 -0.216976 -0.43092 -0.678567 9.05856 120.877 116.57 116.617 100.651 107.268 94.5056 83.917 0.762042 0.0537604 0.285793 0.106698 0.149547 0.162778 0.186413 0.214467 0.238116 0.248061 0.253067 0.246539 0.225869 0.499093 -0.264416 102.297 0.0281831 -0.00742603 -0.151797 -0.213055 -0.43004 -0.919288 21.0636 123.082 118.932 117.27 101.59 106.313 93.0539 0.416296 0.964514 0.0327768 0.658819 0.0950946 0.13775 0.150449 0.173467 0.204844 0.231262 0.241615 0.246589 0.244714 0.262656 13.1095 -0.259687 0.825399 0.0224138 -0.013255 -0.148727 -0.208822 -0.409477 -0.775158 16.8561 122.41 120.287 117.633 103.459 106.093 15.6998 0.661761 1.242 -0.095826 0.407588 0.091932 0.127708 0.137637 0.160623 0.193814 0.222843 0.235766 0.240582 0.239115 0.23075 0.305612 -0.241687 0.24981 0.0187074 -0.0185481 -0.144747 -0.203988 -0.361166 -0.636404 8.68855 124.605 120.742 119.008 105.561 106.742 0.294737 0.447688 1.85855 -0.308844 0.148782 0.0994149 0.120871 0.123168 0.154806 0.181789 0.212601 0.243076 0.232475 0.233291 0.231095 0.241259 -0.234313 0.0665513 0.0164487 -0.0233347 -0.140079 -0.198153 -0.320114 -0.293277 6.67216 124.437 122.25 120.382 106.214 -0.958973 0.3108 0.407398 2.43351 -0.121906 0.0757936 0.0997748 0.210888 0.118748 0.166101 0.170036 0.201186 0.216178 0.22189 0.222574 0.221326 0.220055 -0.181357 0.0489254 0.0146726 -0.0274631 -0.134867 -0.191091 -0.280203 -0.205124 -0.0730146 127.766 124.245 119.284 104.315 0.271836 0.535581 0.305765 0.500143 -0.0135195 0.0745823 0.09926 0.20667 0.11047 0.126858 0.158646 0.189929 0.202032 0.208845 0.21019 0.209671 0.206876 -0.144682 0.0497188 0.0131066 -0.0307855 -0.12919 -0.183106 -0.265572 -0.179769 -0.305852 109.987 126.383 122.649 5.91081 0.281882 0.209583 0.252056 0.288058 0.0809765 0.0896012 0.104976 0.211201 0.110005 0.123767 0.150004 0.19317 0.221417 0.195331 0.196961 0.196155 0.194815 -0.120827 0.0501335 0.0117218 -0.0331993 -0.123067 -0.173961 -0.242138 -0.175499 -0.516535 0.049058 131.098 123.499 1.00684 0.257543 0.188419 0.225136 0.276295 0.142818 0.105274 0.109863 0.112354 0.113975 0.124655 0.142695 0.167557 0.177707 0.181868 0.182608 0.182159 0.181436 -0.0418175 0.0500732 0.01061 -0.0346758 -0.116488 -0.163575 -0.208622 -0.140745 -0.704899 0.211886 0.369709 -0.037457 1.25937 0.222358 0.21708 0.209774 0.256679 0.14986 0.118591 0.115948 0.116707 0.120931 0.128322 0.139752 0.152635 0.161307 0.165116 0.16621 0.166626 0.167118 -0.0253781 0.0499476 0.00981492 -0.0352691 -0.109456 -0.15188 -0.178585 -0.0747024 -0.850454 0.0889175 0.186431 -0.0514625 1.20733 0.185594 0.213896 0.194482 0.143067 0.149931 0.129823 0.122651 0.121145 0.130992 0.132834 0.137453 0.142473 0.145581 0.147495 0.148383 0.149617 0.151277 -0.0106497 0.0489098 0.00928023 -0.0351008 -0.101995 -0.138975 -0.137149 -0.00617596 -0.829857 0.0176521 0.143089 -0.0639621 0.0892443 0.157289 0.232437 0.181332 0.146739 0.161359 0.141077 0.128603 0.125708 0.134933 0.131987 0.134831 0.13303 0.136609 0.130996 0.134372 0.133377 0.13619 0.0407525 0.0470735 0.00887675 -0.0343308 -0.0941588 -0.125063 -0.104774 0.0502366 -0.534864 -0.0262047 0.0951627 -0.0486429 0.0578783 0.136522 0.205552 0.167371 0.147155 0.161059 0.148284 0.142168 0.131302 0.35618 0.129817 0.129492 0.123674 0.120115 0.116709 0.137779 0.121522 0.12399 0.0157851 0.0451482 0.00845857 -0.0331002 -0.0860198 -0.110536 -0.0700054 0.0776581 -0.211879 -0.040267 0.0134433 -0.0409138 0.0445239 0.159366 0.151928 0.152991 0.148059 0.160923 0.155327 0.47448 0.155272 0.140989 0.147145 0.128763 0.118445 0.1109 0.107216 0.107283 0.110623 0.114855 0.022643 0.0433715 0.00791806 -0.0315015 -0.0776716 -0.0957655 -0.0526248 0.0879106 0.0118949 -0.0647899 -0.075633 0.00098491 0.0330208 0.137771 0.129322 0.172174 0.144749 0.160679 0.161373 0.183369 0.162158 0.152396 0.143623 0.131546 0.118492 0.113406 0.105729 0.105716 0.110569 0.112757 0.039117 0.0407725 0.00721151 -0.0295857 -0.0692254 -0.0812022 -0.0225177 0.0983496 0.0714553 -0.0984639 0.636477 -0.000229622 0.0266791 0.0713608 0.098883 0.114027 0.137234 0.21576 0.160986 0.159854 0.160486 0.155181 0.145748 0.13289 0.120598 0.112316 0.108786 0.108382 0.111967 0.114181 0.0392747 0.0377998 0.00635267 -0.0273887 -0.060798 -0.0672494 -0.0172951 0.0899377 0.09709 -0.190404 1.16599 0.0608288 0.0658209 0.060911 0.0702282 0.0964874 0.121923 0.18344 0.151376 0.161343 0.153002 0.14932 0.1425 0.131896 0.121191 0.115234 0.112525 0.111982 0.113787 0.11784 0.0268315 0.0334013 0.00539338 -0.0249553 -0.0525161 -0.0542851 -0.00729444 0.0816953 0.0624397 -0.111431 0.584454 0.0395302 0.0136248 0.0114973 0.0388484 0.078415 0.108195 0.194958 0.137501 0.146652 0.138173 0.136599 0.131915 0.125616 0.119271 0.131125 0.113306 0.110456 0.108969 0.106869 0.0833605 0.0291416 0.00439832 -0.0223444 -0.0445157 -0.0426002 0.000755392 0.0714243 0.0137091 0.499494 0.214003 0.0369283 -0.00522928 -0.0281236 -0.00347911 0.0425741 0.0863038 0.185189 0.114366 0.120322 0.122763 0.124044 0.122655 0.121792 0.118167 0.111619 0.108003 0.107094 0.105493 0.103884 0.0177667 0.0242949 0.00341996 -0.0196282 -0.0369361 -0.0323727 0.00573671 0.0609451 -0.0114135 1.48576 0.164943 0.0356631 -0.0224077 -0.0690052 -0.051259 0.00255333 0.0574578 0.0823004 0.0959202 0.104515 0.109425 0.11264 0.113789 0.112307 0.111579 0.109355 0.109338 0.109445 0.107786 0.107953 0.0284344 0.0201057 0.0024812 -0.0168848 -0.0299147 -0.0237408 0.00967827 0.0509821 0.0340103 0.148212 0.142361 -0.0173208 -0.0369187 -0.0907601 -0.08714 -0.0327348 0.0279192 0.0629066 0.0803106 0.0902472 0.0965242 0.100612 0.214957 0.214133 0.103478 0.103358 0.104171 0.105751 0.108387 0.117203 0.0249378 0.0164058 0.00157642 -0.0141934 -0.0235777 -0.016752 0.00975982 0.0419503 0.0467143 0.106261 0.0848285 0.0268024 -0.0343433 -0.0907882 -0.0980859 -0.0481465 0.0132657 0.048837 0.0680882 0.0788421 0.0850939 0.0884941 0.0897625 0.0917213 0.0939607 0.0955364 0.0971038 0.0987448 0.100141 0.100856 0.0450822 0.0127954 0.000689714 -0.0116304 -0.0180286 -0.0112735 0.00933617 0.0338892 0.0401074 0.0729316 0.0647797 0.0274779 -0.0221499 -0.0656786 -0.0762345 -0.034775 0.0160611 0.0477013 0.0701357 0.0779 0.0766889 0.0796683 0.0820476 0.0843139 0.0863416 0.0880747 0.0896637 0.0912299 0.092825 0.0944485 0.0494308 0.00880485 -0.000173196 -0.00925849 -0.0133412 -0.00740067 0.00742131 0.0247278 0.0234185 0.0418421 0.0418074 0.0229366 0.032481 -0.0387711 -0.0352979 -0.00211406 0.0305831 0.0530761 0.0645996 0.0747248 0.0752787 0.0707861 0.0725994 0.07457 0.0765637 0.0783957 0.0800037 0.0813927 0.0825858 0.0835988 0.0619027 0.00381881 -0.000934227 -0.00712388 -0.00954316 -0.00493994 0.00650984 0.0364438 -0.01188 0.00638181 0.0187267 0.0116477 -0.00410286 -0.010134 0.0488784 0.0170558 0.0389617 0.0544566 0.0694472 0.0647873 0.0846161 0.0596981 0.0590125 0.0598793 0.0613883 0.0631674 0.0649228 0.0662758 0.0672313 0.067808 0.000774516 -0.000163717 -0.0014022 -0.00525638 -0.00660815 -0.00357931 -0.00122072 0.0150287 -0.0661299 -0.0323613 -0.00239416 0.00461531 0.0020027 0.00174356 0.0114825 0.0220258 0.033116 0.0427734 0.0487217 0.0460804 0.0440308 0.0416571 0.0399641 0.0388781 0.0382159 0.040768 0.0415739 0.0430958 0.0439443 0.0446371 0.000655119 -0.00134043 -0.00140015 -0.00366792 -0.00443667 -0.00317654 -0.00121244 -0.00865192 -0.117447 -0.0906379 -0.0185555 -0.000171995 0.00391132 0.179873 0.0154806 0.0197276 0.0748942 0.0362947 0.0271591 0.0281502 0.0313633 0.0273576 0.0191855 0.0144722 0.0183302 0.0123995 0.0133461 0.0150323 0.01743 0.0219216 0.0020041 -0.000369839 -0.00102499 -0.00235417 -0.00285274 -0.00296437 -0.00770148 -0.0294216 -0.0915683 -0.0765201 -0.0243648 -0.00442066 0.00252899 0.0066261 0.0177768 0.0113742 0.0115787 0.0136599 0.0152276 0.0148998 0.13557 0.137566 0.0118477 -0.0120527 -0.0114128 -0.00919013 -0.00798381 -0.00882556 -0.0142921 0.0793251 0.0017669 0.000317751 -0.00058091 -0.00130116 -0.00164367 -0.00240841 -0.00679613 -0.0202139 -0.0203771 -0.00380242 -0.0229831 -0.0101973 -0.00349839 0.00102262 0.00379893 0.00792418 0.00441885 0.00462469 0.0297735 0.00614498 0.00122121 0.00598749 -0.00162495 -0.00855378 -0.00686605 -0.00551739 -0.00667617 -0.00968133 3.03229e-05 -0.00436378 0.000920329 0.000338902 -0.000215964 -0.000490989 -0.000650903 -0.00127518 -0.0035578 0.00727058 -0.00183401 -0.020192 -0.0228716 -0.0187184 -0.0130618 -0.00822922 -0.00509895 -0.00391156 -0.00385755 -0.00609205 -0.00729268 -0.00568948 -0.00287008 -0.00155793 -0.000534451 0.00110336 0.000424464 0.000777705 0.00423887 0.00327596 0.00624916 0.00563432 0.225283 0.238243 0.456921 0.220568 0.22115 0.24024 0.195957 0.191813 0.140417 0.0868785 0.0784918 0.0814707 0.0649268 36.2635 96.967 106.559 110.365 106.541 111.697 114.732 114.102 3.19964 0.0345928 0.0494202 0.013214 0.0706828 0.111076 -0.0843151 102.262 111.361 0.206749 0.239639 0.26283 0.236687 0.227601 0.411549 0.189547 0.18515 0.132651 0.0733706 0.0722019 0.0571871 0.122665 0.0776197 93.5544 106.739 110.703 106.52 113.112 113.782 116.766 1.24328 -0.023441 0.0412259 0.0148494 0.0689508 0.0940657 -0.0700753 73.91 110.518 0.254642 0.239497 0.263484 0.216127 0.22125 0.245087 0.187346 0.178845 0.126283 0.0696068 0.0447785 0.06097 0.195534 0.0858842 6.18837 107.47 110.981 105.145 115.457 112.561 120.411 -0.837239 -0.0623589 0.0343801 0.0166066 0.0671262 0.0771664 -0.0602732 -0.0750901 109.412 0.21167 0.223949 0.719166 0.328095 0.204547 0.202479 0.184455 0.172896 0.126171 0.0710555 0.0506001 0.0690396 0.0962138 0.169189 0.313456 108.949 111.987 103.856 117.136 112.214 121.818 -0.163168 -0.000764064 0.0287617 0.0183586 0.0650556 0.0621014 -0.0527537 -0.0489295 69.3993 0.219741 0.208468 1.45468 0.667002 0.193819 0.199472 0.18088 0.167411 0.129176 0.079787 0.0602313 0.0740926 0.111971 0.0864516 0.451975 20.0154 114.67 106.517 117.206 114.252 123.306 -0.0588198 0.076869 0.0243129 0.0199878 0.0626519 0.0494477 -0.0480238 -0.0382127 2.4357 0.212388 0.203443 0.193768 0.175555 0.192331 0.214482 0.174842 0.163157 0.134256 0.0939592 0.0744576 0.0827278 0.10623 0.0772324 0.134182 -0.126901 119.152 108.601 117.954 116.602 123.634 0.211325 0.014546 0.0205874 0.0214186 0.0599568 0.039071 -0.0437739 -0.0311938 0.0750435 0.202787 0.197641 0.191702 0.184358 0.184398 0.206364 0.168609 0.160465 0.140173 0.11023 0.0910252 0.0906284 0.10824 0.105126 0.145776 -0.0792912 0.21899 110.054 120.44 118.615 14.4231 -0.0147441 -0.00207132 0.0174551 0.0225727 0.0568778 0.0304636 -0.0396002 -0.0293445 0.0339754 0.192216 0.188255 0.184767 0.180965 0.179135 0.175007 0.165306 0.158787 0.144335 0.122658 0.107074 0.0980396 0.103015 0.102187 0.103152 0.0191911 0.450199 -0.0737608 116.585 119.532 -0.328926 -0.114369 -0.0418407 0.0160443 0.023382 0.0534483 0.023319 -0.0354211 -0.0200461 0.0169336 0.180091 0.19077 0.188391 0.174718 0.171326 0.167133 0.16059 0.157214 0.145566 0.130331 0.120327 0.102647 0.0952591 0.0817329 0.293528 0.0276966 0.17764 -0.0720924 -0.178223 -0.254671 -0.344872 -0.116743 -0.0674842 0.0123004 0.0237906 0.0497173 0.0177888 -0.031289 -0.0194623 0.00736221 0.167586 0.168927 0.180098 0.163872 0.162986 0.160218 0.155487 0.155591 0.156517 0.132123 0.127975 0.122129 0.0922377 0.0779405 0.126849 0.0351606 0.0804967 -0.072889 -0.177285 -0.24553 -0.357746 -0.18567 -0.0708395 0.0101928 0.0237646 0.045749 0.0136553 -0.0269971 -0.0147092 0.00138409 0.152889 0.154275 0.154322 0.153965 0.154909 0.154085 0.150893 0.147176 0.142859 0.131258 0.146411 0.115572 0.0893266 0.0704263 0.0978302 0.0291228 0.0155362 -0.0715078 -0.169675 -0.21821 -0.351707 -0.203261 -0.0514525 0.00841546 0.0232987 0.0416194 0.0106899 -0.0223581 -0.0104246 -0.00175626 0.139559 0.141645 0.144275 0.146115 0.153973 0.148321 0.146493 0.143132 0.138052 0.13002 0.118194 0.111985 0.0866441 0.0713055 0.115105 0.0217406 0.000257056 0.220799 -0.159826 -0.245678 -0.44017 -0.268032 -0.0269449 0.00708966 0.0224184 0.0374143 0.00862414 -0.0181664 -0.00709509 -0.00273477 0.12765 0.131557 0.135603 0.139841 0.144694 0.167928 0.14178 0.139856 0.135284 0.127545 0.118159 0.110519 0.082761 0.0626849 0.0440534 0.0113727 0.00237294 0.119766 -0.109598 -0.232169 -0.474822 -0.217067 -0.0277267 0.00610751 0.0211773 0.0332286 0.00718513 -0.01467 -0.00473233 -0.00232908 0.119276 0.124117 0.136605 0.134877 0.137744 0.140943 0.138324 0.141334 0.133435 0.124078 0.111164 0.135055 0.099668 0.061123 0.0351779 0.00119805 -0.00976104 0.03641 -0.116135 -0.171306 -0.484383 -0.335056 -0.0343526 0.00543448 0.0196433 0.0291568 0.00614715 -0.011767 -0.00312031 -0.00122667 0.117286 0.125047 0.127285 0.134196 0.135864 0.136302 0.136903 0.137823 0.131198 0.122061 0.108193 0.103864 0.118398 0.058184 0.0256722 -0.0101745 -0.0258544 0.0130268 -0.114761 -0.164587 -0.36634 -0.33127 -0.0161374 0.00489538 0.0178858 0.0252841 0.00536157 -0.00938115 -0.00208743 -2.0677e-05 0.118597 0.127506 0.128832 0.132815 0.135149 0.135217 0.135274 0.145331 0.129679 0.115044 0.104515 0.117072 0.0885931 0.120628 0.0158478 -0.0192356 -0.0428642 -0.0604471 -0.17621 -0.0994622 -0.285552 -0.187681 -0.00836953 0.00426479 0.0159668 0.0216745 0.00475549 -0.00746833 -0.00136868 0.000915117 0.124092 0.132002 0.138875 0.13901 0.141076 0.141614 0.147293 2.75974 0.10292 0.108302 0.100604 0.0866501 0.0743659 0.0658342 0.0156426 -0.0205466 -0.0560105 -0.054838 -0.167107 -0.124357 -0.209108 -0.0616767 -0.0105839 0.00345032 0.0139355 0.01836 0.0043008 -0.00595416 -0.000826204 0.00142575 0.0987142 0.0840561 0.214513 0.142202 0.107852 0.118498 0.133719 0.119929 0.107843 0.107169 0.0994559 0.0853017 0.0604807 0.0467184 0.0112988 -0.0347789 -0.0644647 -0.0145402 -0.109172 -0.0658403 -0.199023 -0.0131039 -0.0105614 0.0024335 0.0118316 0.0153464 0.003964 -0.00472933 -0.000408082 0.00155122 0.101987 0.101501 0.105173 0.111534 0.113524 0.129481 0.129046 0.127486 0.124309 0.112462 0.101908 0.0856925 0.0632278 0.0436758 0.00544052 -0.0369037 -0.0653751 0.537635 -0.0135566 0.137287 -0.204864 -0.0164409 -0.00996319 0.0011835 0.00968877 0.0126219 0.00368072 -0.00363635 -0.000111067 0.00142242 0.109001 0.111722 0.115483 0.119645 0.123348 0.127058 0.128631 0.127482 0.124644 0.118159 0.104463 0.0841572 0.0583765 0.0288857 -0.00118541 -0.0370876 -0.0627542 0.0185476 0.0111601 -0.0816923 -0.0866802 -0.0349963 -0.0110204 -0.000319229 0.00754009 0.010167 0.00339142 -0.0025922 9.23273e-05 0.00115379 0.12237 0.11536 0.118643 0.122474 0.126471 0.135046 0.13303 0.133155 0.128575 0.11864 0.10131 0.0766063 0.0463462 0.0126956 -0.0186436 -0.0443194 -0.0665339 -0.0931185 -0.0152901 -0.0634456 -0.128334 -0.0417969 -0.0133791 -0.00201817 0.00542404 0.0079621 0.00306389 -0.00168792 0.000234759 0.000846136 0.104764 0.108504 0.112114 0.116069 0.120466 0.127823 0.134041 0.126791 0.120938 0.107376 0.0859545 0.0617918 0.0212672 -0.0150066 -0.042579 -0.0608577 -0.0686388 -0.0813454 0.509866 -0.0660798 -0.0859494 -0.0428585 -0.015916 -0.00384034 0.00338657 0.00599384 0.00268528 -0.000956067 0.000340986 0.000578977 0.0961898 0.0982063 0.100552 0.103205 0.106153 0.10831 0.109155 0.105637 0.0953074 0.0758106 0.0535168 0.0299228 -0.0138839 -0.0675329 -0.0843433 -0.0853373 -0.0830613 -0.0730103 0.370796 0.503285 -0.0611971 -0.0421732 -0.0179781 -0.00565893 0.00148643 0.00425725 0.00225759 -0.000401099 0.00042203 0.000390599 0.0844943 0.0853346 0.0860739 0.08656 0.0864477 0.0849643 0.0800158 0.069138 0.0470115 0.0189023 -0.0230094 -0.0309628 -0.12977 -0.166236 -0.144463 -0.124867 -0.0903993 -0.0636499 -0.0187787 -0.0851349 -0.0546807 -0.0397277 -0.0194153 -0.00733099 -0.000210109 0.00275691 0.00179699 -1.99217e-05 0.000474271 0.000280888 0.0680467 0.0678816 0.0670674 0.0651896 0.0617005 0.0554413 0.0423972 0.0252736 -0.00587487 -0.0514159 -0.122036 -0.205616 -0.274825 -0.305196 -0.267853 -0.169094 -0.0972719 -0.0369774 -0.0188053 -0.0418338 -0.0479377 -0.0390775 -0.02042 -0.00870377 -0.00161452 0.00150599 0.00133203 0.000201945 0.000484871 0.000225433 0.0450789 0.0449948 0.0440321 0.0416407 0.0369242 0.0283195 0.0637756 -0.0138195 -0.046497 -0.125538 -0.224224 -0.305659 -0.392034 -0.4241 -0.333334 -0.224979 -0.0862422 -0.0280919 -0.0038254 0.0233814 -0.0449431 -0.0147864 -0.0149429 -0.00957653 -0.00262824 0.000524181 0.000895222 0.000291762 0.000445884 0.000194351 0.0179812 0.0181565 0.0173368 0.0147649 0.00927641 -0.00124513 -0.0198818 -0.0426232 -0.0788833 -0.131593 -0.209782 -0.216953 -0.396874 -0.412151 -0.348267 -0.218668 -0.0877267 -0.00929229 0.0223808 0.481878 -0.0716345 -0.0420658 0.00118346 -0.00960529 -0.0031387 -0.000167264 0.000514287 0.000275279 0.000366886 0.000166571 0.00381405 0.00364306 0.00292835 0.00076364 -0.00358662 -0.0109288 -0.0224246 -0.0398362 -0.066307 -0.105973 -0.162583 -0.231183 -0.279068 -0.281619 -0.237571 -0.15259 -0.0571267 -0.00335217 0.00295147 0.00160387 0.0121973 -0.0355532 -0.0217404 -0.00832598 -0.0030606 -0.000552037 0.000209891 0.000190526 0.000263622 0.000133497 -0.00327424 -2.89827e-05 0.000755202 -0.00119808 -0.00514586 -0.00876982 -0.0135969 -0.0217991 -0.0354606 -0.0562919 -0.0841058 -0.113628 -0.134596 -0.13249 -0.104423 -0.046338 -0.0148021 0.00769906 0.00247148 -0.0403814 -0.0427212 0.0168212 -0.0142011 -0.00573087 -0.00239067 -0.000639863 -8.89119e-06 6.85525e-05 0.000144423 9.30585e-05 0.0053766 0.0153828 0.0474681 0.0774731 0.084331 0.0021672 -0.000977564 -0.00445129 -0.0113532 -0.0200779 -0.0366527 -0.0513158 -0.0529174 -0.0334694 -0.0262956 0.0944024 0.0152161 0.0134287 0.00840934 0.0136042 0.00705832 -0.00782254 -0.00548023 -0.00243645 -0.00128248 -0.000485966 -0.000152612 -7.46946e-05 1.06351e-05 4.36004e-05 121.959 113.008 102.445 94.0643 88.0223 83.8819 82.0278 83.5759 87.8048 92.02 94.7117 95.834 95.8179 95.1227 94.1062 93.0047 91.9578 91.0383 90.2748 89.6674 89.2007 88.8525 88.6 88.423 88.3049 88.2323 88.1944 88.1826 88.1901 88.2115 122.95 113.015 102.426 94.0446 88.0046 83.8551 81.9626 83.5011 87.7904 92.0588 94.7674 95.8846 95.8566 95.1489 94.1205 93.0069 91.9486 91.0194 90.2485 89.6362 89.1666 88.8171 88.5644 88.3877 88.2701 88.1981 88.1608 88.1495 88.1575 88.1793 123.015 113.032 102.392 94.0106 87.9734 83.8069 81.8442 83.3564 87.7455 92.1114 94.8605 95.9768 95.9306 95.2014 94.1514 93.016 91.9369 90.9895 90.2046 89.583 89.108 88.756 88.5026 88.3264 88.2098 88.1389 88.1027 88.0925 88.1014 88.1238 123.129 113.061 102.344 93.962 87.9289 83.7385 81.6742 83.1452 87.677 92.1816 94.9899 96.1084 96.0392 95.2811 94.2006 93.0338 91.924 90.9499 90.1444 89.509 89.026 88.6703 88.4159 88.2403 88.1251 88.0559 88.0213 88.0126 88.0226 88.046 123.293 113.102 102.28 93.8987 87.8711 83.651 81.4518 82.8632 87.5855 92.2721 95.1563 96.2784 96.1805 95.3854 94.2653 93.0578 91.9083 90.8994 90.0671 89.4137 88.9203 88.5598 88.3044 88.1297 88.0162 87.9489 87.9161 87.9089 87.9203 87.9448 123.507 113.157 102.201 93.8207 87.7999 83.5457 81.1757 82.5039 87.47 92.3847 95.3616 96.4874 96.3537 95.5122 94.3436 93.0866 91.8886 90.8368 89.9712 89.2955 88.7896 88.4237 88.1673 87.9939 87.8826 87.8174 87.7864 87.7807 87.7935 87.8193 123.772 113.227 102.104 93.7279 87.7157 83.4247 80.8447 82.0588 87.3294 92.5213 95.6082 96.7371 96.5587 95.661 94.4349 93.1197 91.8645 90.7611 89.8553 89.1528 88.6323 88.2606 88.0038 87.8324 87.7239 87.6611 87.632 87.6277 87.6418 87.669 124.088 113.316 101.989 93.6203 87.6186 83.2905 80.4576 81.517 87.1626 92.6848 95.8987 97.0293 96.7964 95.8319 94.5392 93.1573 91.8356 90.6711 89.7173 88.9833 88.4462 88.0687 87.8124 87.6445 87.5399 87.4804 87.4533 87.4504 87.4654 87.4939 124.457 113.425 101.856 93.4979 87.5086 83.1462 80.0133 80.8644 86.9687 92.8782 96.2362 97.366 97.0675 96.0252 94.6567 93.1994 91.8016 90.5653 89.5548 88.7841 88.2284 87.8456 87.5916 87.4293 87.3305 87.2757 87.2516 87.2497 87.2649 87.2936 124.879 113.56 101.704 93.3606 87.3858 82.9954 79.511 80.082 86.7469 93.1052 96.6245 97.7497 97.373 96.2408 94.7874 93.2463 91.7621 90.4419 89.3646 88.5512 87.9753 87.5883 87.3393 87.1857 87.0956 87.0478 87.028 87.0278 87.0417 87.0673 125.356 113.728 101.532 93.2085 87.2501 82.8426 78.9507 79.145 86.4975 93.37 97.0676 98.1834 97.7139 96.479 94.9313 93.2981 91.7171 90.2991 89.1431 88.2802 87.6822 87.2931 87.0531 86.9123 86.8348 86.7971 86.7841 86.7867 86.7994 86.8195 125.886 113.925 101.342 93.0418 87.1011 82.6932 78.3333 78.0191 86.2212 93.6776 97.57 98.6705 98.0913 96.7394 95.0881 93.3549 91.667 90.1346 88.8859 87.9653 87.3435 86.9555 86.7297 86.6073 86.5473 86.5236 86.5203 86.5278 86.5407 86.5592 126.467 114.139 101.133 92.8606 86.9381 82.5534 77.6584 76.6548 85.9204 94.0333 98.1368 99.2149 98.5064 97.0218 95.2574 93.4166 91.6124 89.9459 88.5879 87.5995 86.952 86.5699 86.3656 86.2687 86.2318 86.2262 86.2357 86.251 86.2671 86.295 127.096 114.346 100.907 92.6657 86.7598 82.4304 76.9346 74.976 85.5991 94.443 98.7737 99.8208 98.9603 97.3253 95.4381 93.4827 91.554 89.7302 88.2436 87.1736 86.4983 86.1291 85.9564 85.894 85.8868 85.9032 85.9273 85.9517 85.9738 85.9951 127.769 114.513 100.667 92.458 86.5643 82.3328 76.1757 72.8979 85.2618 94.9127 99.486 100.493 99.4541 97.6486 95.629 93.5518 91.4918 89.483 87.8471 86.6756 85.9699 85.6245 85.4974 85.4814 85.5118 85.554 85.5931 85.6254 85.6517 85.675 128.479 114.605 100.412 92.2391 86.3484 82.2707 75.4051 70.3648 84.9091 95.4488 100.279 101.237 99.9886 97.9894 95.8279 93.6214 91.4201 89.1925 87.3922 86.0899 85.3498 85.0455 84.9839 85.0296 85.1083 85.1814 85.2363 85.2747 85.3026 85.3257 129.217 114.594 100.148 92.0115 86.1076 82.2559 74.6306 67.1287 84.543 96.0602 101.159 102.058 100.564 98.3442 96.0308 93.6892 91.314 88.8247 86.8698 85.3946 84.6139 84.3795 84.412 84.539 84.6798 84.7917 84.8644 84.9083 84.9364 84.9576 129.974 114.449 99.8765 91.7794 85.8349 82.3025 73.8686 62.7626 84.2034 96.7599 102.132 102.962 101.181 98.7066 96.2299 93.7561 91.1141 88.4003 86.2746 84.5596 83.7262 83.613 83.7823 84.0124 84.2331 84.397 84.4928 84.5429 84.5699 84.5874 130.728 114.138 99.6039 91.5491 85.52 82.4269 73.095 56.7787 83.9681 97.5584 103.2 103.955 101.835 99.066 96.4083 93.8292 90.785 88.0715 85.6171 83.543 82.6313 82.7359 83.108 83.4628 83.7827 84.0173 84.1425 84.1964 84.2169 84.2251 131.456 113.631 99.339 91.3297 85.1508 82.6518 72.211 48.46 83.8861 98.4416 104.367 105.039 102.52 99.4042 96.5669 93.9238 90.398 87.8504 84.9233 82.298 81.2535 81.7436 82.4126 82.9262 83.3675 83.6799 83.8301 83.8763 83.8784 83.868 132.117 112.895 99.097 91.1339 84.7297 83.0144 71.0362 36.3417 83.94 99.3481 105.637 106.217 103.223 99.6908 96.8185 94.0588 90.0907 87.6885 84.2437 80.7856 79.42 80.5695 81.6682 82.4194 83.0315 83.4154 83.5678 83.5837 83.5481 83.5067 132.66 111.906 98.9048 90.9813 84.2526 83.5802 69.2432 -2.99816 84.2795 100.174 107.017 107.483 103.917 99.8732 97.2574 94.2361 89.9747 87.6209 83.6683 78.8239 76.2958 78.9557 80.8236 81.9147 82.795 83.2596 83.3769 83.3215 83.2119 83.1163 133.015 110.646 98.8068 90.9021 84.4268 84.4459 61.861 -0.0786411 85.3898 100.955 108.52 108.827 104.552 99.8483 97.8249 94.5187 90.1228 87.689 83.3492 76.3519 70.9371 76.7841 79.7957 81.4258 82.7415 83.3004 83.2976 83.1024 82.8479 82.6453 133.103 109.125 98.8504 90.8885 84.4257 85.5917 -1.78277 0.173133 87.0253 101.638 110.16 110.225 104.995 99.3626 98.5212 95.0037 90.553 87.8914 83.4402 74.9106 65.8931 75.1727 77.7199 80.8964 83.0879 83.7174 83.3241 82.9693 82.4298 81.9651 132.838 107.514 99.0586 90.9289 84.859 86.5041 -0.341915 0.0070243 88.7375 102.003 111.921 111.635 104.917 97.86 99.4035 95.7021 91.2383 88.1972 84.3692 75.3998 55.9315 31.8807 28.9364 53.9733 72.7691 80.0133 81.117 82.3474 81.4123 80.507 132.148 106.237 99.4331 90.982 84.5361 -0.345478 -0.358389 -0.244566 89.4549 102.262 113.72 112.995 104.58 96.1703 100.583 96.5437 91.9906 88.8372 85.51 17.4257 0.3575 0.315883 0.28317 0.264433 0.255337 0.255871 0.253512 0.251251 0.25023 0.249125 131.009 105.238 99.9579 91.0082 -0.0984074 -0.296722 -0.362745 -0.767905 87.7362 102.452 115.473 114.204 104.939 96.7269 101.837 97.4261 92.7884 90.1589 50.1392 0.311714 0.612044 0.26802 0.26615 0.261 0.257505 0.256207 0.254823 0.253072 0.251283 0.250257 129.534 104.436 100.422 5.51108 -0.132894 -0.255354 -0.358275 -0.747805 73.5868 102.931 117.13 115.166 105.22 100.434 102.934 98.5091 94.3137 91.2285 0.0984067 0.265039 0.513424 0.230217 0.243882 0.252694 0.256019 0.256662 0.256205 0.253383 0.248958 0.251444 128.043 104.033 100.368 0.0309163 -0.155148 -0.231606 -0.352942 -0.833872 49.4236 101.702 118.142 115.895 103.878 105.61 103.16 99.9851 99.1998 0.481525 0.20436 0.182137 0.197998 0.202002 0.220192 0.238579 0.25089 0.255259 0.256284 0.266672 0.250491 0.245792 126.456 101.916 89.0487 0.0216426 -0.163166 -0.217206 -0.340826 -0.745963 18.8837 103.428 117.024 116.603 101.735 108.69 102.945 101.514 38.0963 0.298978 0.20403 0.0983636 0.164463 0.173819 0.205088 0.218708 0.241874 0.25094 0.250336 0.251684 0.250033 0.255 88.244 88.2903 88.3564 88.4477 88.5702 88.7321 88.9429 89.2148 89.5627 90.0044 90.5593 91.2462 92.078 93.0533 94.1465 95.2995 96.4124 97.3178 97.742 97.295 95.5012 92.0253 87.5454 84.4355 84.3211 86.7418 91.0823 96.3427 101.65 105.841 88.212 88.2586 88.3249 88.4162 88.5387 88.7004 88.9112 89.1832 89.5316 89.9746 90.532 91.223 92.0607 93.044 94.1463 95.3089 96.4318 97.348 97.7832 97.3455 95.5493 92.0402 87.4979 84.3697 84.2862 86.723 91.0746 96.339 101.651 105.854 88.157 88.204 88.2705 88.3617 88.4841 88.6454 88.8559 89.1281 89.4777 89.9232 90.4852 91.1838 92.0328 93.0314 94.1521 95.3337 96.4745 97.4074 97.8582 97.4299 95.6198 92.0471 87.4002 84.2492 84.2224 86.6879 91.0621 96.3345 101.656 105.884 88.0799 88.1273 88.1941 88.2853 88.4072 88.568 88.7782 89.0507 89.402 89.8514 90.4203 91.13 91.9956 93.0173 94.166 95.3763 96.5425 97.4961 97.9648 97.5466 95.7152 92.0531 87.2579 84.0754 84.1308 86.6369 91.0446 96.3291 101.664 105.93 87.9797 88.0279 88.0951 88.1864 88.3079 88.4681 88.6779 88.9511 89.3047 89.7591 90.337 91.0613 91.949 93.0013 94.1865 95.4336 96.632 97.6112 98.1015 97.6958 95.8381 92.0603 87.0681 83.846 84.0119 86.5698 91.022 96.3225 101.677 105.993 87.8553 87.9045 87.9726 88.0641 88.1855 88.3452 88.5547 88.8286 89.1851 89.6458 90.2348 90.9769 91.892 92.9824 94.2124 95.5032 96.7396 97.7504 98.2681 97.8786 95.9901 92.0693 86.8256 83.5578 83.8671 86.4866 90.9946 96.3146 101.693 106.073 87.7065 87.757 87.826 87.918 88.0393 88.1986 88.4078 88.6826 89.0425 89.5105 90.1125 90.8757 91.8233 92.9601 94.2439 95.5845 96.8644 97.9131 98.4646 98.0963 96.1732 92.0806 86.5239 83.2071 83.6979 86.3874 90.9624 96.3053 101.712 106.171 87.533 87.5852 87.6549 87.7473 87.8687 88.0275 88.2364 88.5122 88.8759 89.3519 89.9686 90.7559 91.7413 92.9337 94.2811 95.6776 97.0063 98.0992 98.6915 98.3504 96.3898 92.095 86.1543 82.7893 83.5062 86.2723 90.9259 96.2942 101.733 106.286 87.3346 87.3891 87.4576 87.5504 87.6727 87.8311 88.0396 88.3163 88.6838 89.1687 89.8015 90.6156 91.644 92.9025 94.3247 95.7825 97.1651 98.3087 98.9492 98.6426 96.6428 92.1138 85.7055 82.2993 83.2949 86.1412 90.8852 96.2811 101.757 106.421 87.1075 87.1731 87.2278 87.3252 87.4503 87.6086 87.8163 88.0936 88.465 88.9593 89.6095 90.4526 91.5284 92.8654 94.3754 95.8987 97.3406 98.5416 99.2383 98.9748 96.9355 92.1386 85.1625 81.7312 83.0674 85.9939 90.8407 96.2657 101.782 106.573 86.846 87.1138 87.0196 87.0725 87.201 87.3596 87.5659 87.843 88.2181 88.7218 89.3903 90.2646 91.3907 92.8209 94.4341 96.0249 97.5323 98.7981 99.5592 99.3493 97.2719 92.1712 84.5052 81.079 82.8278 85.8301 90.7926 96.2477 101.807 106.743 86.5945 86.6505 86.7064 86.7964 86.9247 87.0834 87.2872 87.5633 87.9415 88.4543 89.1417 90.0489 91.226 92.7665 94.5011 96.1588 97.7397 99.0782 99.9125 99.7683 97.6564 92.2144 83.7069 80.3363 82.5817 85.6493 90.7413 96.2267 101.832 106.93 86.3888 86.3521 86.4079 86.4954 86.62 86.7769 86.9781 87.2534 87.6339 88.1546 88.8609 89.8034 91.0279 92.6954 94.5739 96.2958 97.9622 99.3821 100.299 100.235 98.0937 92.2711 82.7306 79.4959 82.3357 85.4508 90.687 96.2021 101.855 107.138 86.0168 86.05 86.0998 86.1745 86.2858 86.4374 86.637 86.9127 87.2944 87.8202 88.5443 89.5259 90.789 92.5841 94.6415 96.4285 98.1996 99.7101 100.718 100.754 98.5884 92.345 81.5261 78.5481 82.0982 85.2334 90.63 96.1735 101.876 107.36 85.6988 85.7286 85.7698 85.8235 85.9088 86.0663 86.2659 86.5424 86.9222 87.4479 88.1868 89.2142 90.5035 92.3432 94.6673 96.5465 98.4523 100.063 101.172 101.328 99.1441 92.4399 80.0282 77.491 81.8793 84.996 90.5705 96.1404 101.892 107.596 85.3488 85.3779 85.4158 85.3766 85.3606 85.6793 85.8715 86.1448 86.517 87.0333 87.7808 88.8626 90.1861 91.8042 94.5484 96.6389 98.7227 100.441 101.658 101.96 99.7622 92.5588 78.1717 76.3777 81.692 84.7372 90.5086 96.1024 101.904 107.847 84.9779 85.0038 85.0522 85.8168 85.6622 85.2613 85.4568 85.7222 86.0781 86.5704 87.3147 88.4591 89.9122 91.2651 94.1019 96.7008 99.0158 100.846 102.177 102.657 100.447 92.7012 75.9115 75.1922 81.5557 84.4561 90.4436 96.0593 101.909 108.113 84.6021 84.6187 84.6409 84.673 84.666 84.8298 85.0233 85.2766 85.6062 86.0516 86.7714 87.989 89.6899 91.099 93.2523 96.7471 99.3397 101.279 102.725 103.423 101.214 92.8636 73.2194 73.7916 81.488 84.1535 90.374 96.0105 101.905 108.395 84.2302 84.2365 84.2472 84.267 84.302 84.4095 84.5716 84.8121 85.1056 85.4669 86.1248 87.4326 89.4223 90.9892 92.295 96.8253 99.706 101.74 103.299 104.263 102.075 93.0731 70.1338 72.1359 81.5123 83.8341 90.2952 95.9556 101.892 108.692 83.8579 83.8502 83.8438 83.8391 83.8576 83.9758 84.0817 84.3418 84.586 84.8025 85.3328 86.7627 89.0933 90.7891 91.793 97.0056 100.128 102.23 103.892 105.184 103.015 93.4026 66.8234 70.3128 81.6772 83.5129 90.1958 95.8929 101.868 109.003 83.4764 83.4565 83.4384 83.4122 83.3974 83.4696 83.76 83.8883 84.0514 84.033 84.3041 85.9471 88.745 90.6555 92.0956 97.3404 100.621 102.748 104.49 106.19 104.027 93.9208 63.5322 68.5906 82.025 83.227 90.0552 95.8197 101.83 109.33 83.0614 83.0424 83.0336 82.993 82.9398 82.9851 83.2686 83.469 83.504 83.1116 82.8483 84.9613 88.3952 90.7278 93.0497 97.8155 101.196 103.295 105.071 107.281 105.105 94.6787 60.9859 67.2025 82.5846 83.0461 89.8705 95.7309 101.777 109.675 82.5612 82.5913 82.6475 82.5648 82.3863 82.4308 82.8368 83.1329 82.9892 81.8743 80.576 83.7574 88.0477 90.9658 94.2334 98.3433 101.867 103.867 105.6 108.449 106.221 95.6615 55.2038 2.31472 83.1701 83.0586 89.622 95.6177 101.704 110.044 81.8272 82.0771 82.4443 82.2154 81.5862 81.6413 82.4428 82.9873 82.5504 80.1474 77.7583 82.4609 87.7247 91.2572 95.2056 98.8558 102.656 104.463 106.024 109.67 107.33 98.3267 38.5266 1.09467 82.338 83.5569 89.4135 95.4659 101.609 110.447 80.2947 81.2116 83.1133 82.3783 79.9759 80.4822 82.1814 83.5766 82.3196 79.0035 74.6806 81.8038 87.4654 91.5253 95.9409 99.4741 103.594 105.089 106.254 110.896 108.318 98.78 0.124589 0.780767 -0.0977495 80.8351 89.4846 95.2538 101.505 110.901 0.248748 0.243527 0.236212 0.231242 0.2358 0.23405 0.235714 0.209473 0.81971 9.73376 59.4677 81.6436 87.4332 91.7542 96.7555 100.435 104.706 105.774 106.155 112.062 109.262 101.934 3.0864 0.48766 -0.0475405 -0.866295 89.8533 94.9613 101.421 111.43 0.247339 0.256796 0.242819 0.254749 0.238538 0.235244 0.229133 0.219254 0.216338 0.230158 0.232609 42.6408 87.5175 91.9226 97.7132 101.636 105.98 106.596 105.575 113.078 110.394 104.882 0.561363 0.223124 -0.00555744 0.0846642 90.2676 94.6124 101.386 112.067 0.261679 0.246666 0.240794 0.236071 0.22848 0.225417 0.223458 0.220598 0.205558 0.183853 0.179062 0.22691 80.3556 92.0849 98.9752 102.64 107.38 107.695 104.813 113.723 111.103 106.593 0.267751 0.089908 0.0142976 0.0732581 2.64005 94.3388 101.455 112.804 0.243574 0.242304 0.239851 0.233269 0.223628 0.21423 0.212355 0.212384 0.182307 0.132816 0.100392 0.0884368 0.28013 95.0951 100.996 103.23 108.786 108.826 105.384 113.351 111.122 104.405 0.183445 0.0828868 0.0229524 0.0625785 0.0450969 94.2466 101.707 113.532 0.230561 0.236641 0.239843 0.334022 0.219624 0.237893 0.195884 0.199186 0.158939 0.104319 0.0803777 0.0638067 0.066497 -0.536282 102.837 104.251 109.948 108.761 106.657 113.585 111.152 102.994 0.196295 0.0778367 0.0264297 0.0571028 0.0867415 -0.132814 102.304 114.633 120.176 104.223 6.62899 0.0166426 -0.162635 -0.210682 -0.339504 -0.621031 86.9719 108.072 116.826 117.273 101.838 108.337 102.871 99.8455 0.657463 0.333164 0.171153 0.0714528 0.148415 0.161221 0.182698 0.209064 0.235335 0.2475 0.266544 0.248724 0.242063 0.508462 117.006 81.4091 -0.050025 0.0116236 -0.159746 -0.204975 -0.331574 -0.768515 12.2402 113.907 117.383 118.329 102.725 106.628 103.237 1.42955 0.670518 1.2001 0.117337 0.0877532 0.135488 0.149367 0.169989 0.199206 0.228207 0.242282 0.263064 0.2452 0.244905 13.7968 112.808 1.63968 -0.0334075 0.00736234 -0.154948 -0.199204 -0.305472 -0.747693 2.90743 109.098 117.856 118.906 105.305 102.968 102.924 0.425088 0.667683 0.737499 0.0655119 0.0676496 0.124647 0.136968 0.156614 0.187719 0.219577 0.235666 0.242884 0.240925 0.232818 0.348994 112.197 0.312605 -0.026769 0.00314875 -0.148544 -0.193174 -0.365116 -0.709037 2.64121 112.387 119.368 118.895 108.78 98.946 0.301386 0.475727 0.451401 1.89825 0.0447591 0.0924638 0.115824 0.125176 0.169078 0.1752 0.209408 0.229671 0.233846 0.235296 0.232686 0.247696 114.166 0.110203 -0.0189376 -0.000839055 -0.141022 -0.186735 -0.350638 -0.27571 1.80395 114.17 124.013 120.536 112.136 88.1274 0.198985 0.487928 0.342454 1.08472 0.0477428 0.09295 0.122187 0.116401 0.160642 0.162558 0.198058 0.216515 0.223986 0.225617 0.224465 0.224747 102.024 0.0808271 -0.0110135 -0.00439599 -0.132838 -0.179753 -0.292771 -0.111867 1.10058 123.012 124.5 122.64 115.687 0.294387 0.200736 0.383106 -0.0176002 -0.0295844 0.0567256 0.0988162 0.206282 0.124349 0.145816 0.150708 0.186641 0.203423 0.211223 0.213449 0.213306 0.210777 -0.0241898 0.0601284 -0.00387833 -0.00748507 -0.12441 -0.172115 -0.304634 -0.264931 0.324909 71.6163 125.059 125.786 117.177 0.248394 0.217715 0.260277 0.086706 0.0423751 0.0785335 0.100267 0.171601 0.115486 0.120167 0.143885 0.174529 0.233692 0.197209 0.200286 0.199798 0.198417 -0.0286307 0.0570923 0.00200292 -0.0101626 -0.116033 -0.16374 -0.266575 0.258762 -0.00267385 -0.102922 126.384 125.71 0.955064 0.223491 0.204363 0.224895 0.141939 0.128364 0.100629 0.106642 0.113251 0.110899 0.120466 0.138959 0.165594 0.182884 0.185193 0.186329 0.185986 0.18509 -0.0272702 0.0534189 0.00647514 -0.0125088 -0.107884 -0.154563 -0.234151 0.294848 0.239053 -0.0489038 0.158489 14.4212 2.08686 0.220738 0.20055 0.208988 0.155198 0.145579 0.117704 0.114223 0.115391 0.117654 0.124469 0.136813 0.151452 0.163071 0.168908 0.170446 0.170639 0.17083 -0.0248942 0.0559838 0.00956467 -0.0145776 -0.100027 -0.144548 -0.206786 -0.0534136 -0.349945 0.00107374 0.229132 -0.0181923 0.414369 0.17423 0.24571 0.199004 0.136452 0.149303 0.130239 0.122078 0.119749 0.122754 0.130104 0.136234 0.143302 0.148601 0.151318 0.152574 0.153604 0.15496 -0.0226389 0.0516275 0.0114373 -0.0163553 -0.0924456 -0.133711 -0.172136 0.00684482 -0.437625 -0.131468 0.142769 -0.0151395 0.201733 0.140814 0.2367 0.191422 0.148096 0.165056 0.140639 0.129459 0.1263 0.128568 0.13352 0.1531 0.135387 0.134701 0.13448 0.134865 0.136411 0.139117 -0.0204655 0.0485657 0.0123308 -0.0177558 -0.0850731 -0.122133 -0.134433 0.0589772 -0.292248 -0.12 0.0934096 -0.0228213 0.0480824 0.117313 0.18492 0.180903 0.147201 0.175847 0.149406 0.138107 0.132074 0.411375 0.129204 0.131253 0.127116 0.126002 0.120455 0.138922 0.125255 0.126116 -0.0183438 0.0476396 0.0124951 -0.0186892 -0.0778181 -0.109961 -0.10296 0.06382 -0.114391 -0.10974 0.0739946 -0.0224457 0.0296649 0.11867 0.159111 0.171222 0.144711 0.161006 0.15599 0.184344 0.155411 0.394308 0.141727 0.13046 0.121467 0.11364 0.109433 0.108544 0.111667 0.115617 -0.0162783 0.0472533 0.0121512 -0.0191007 -0.0706136 -0.0973936 -0.0815369 0.0731554 0.0799641 -0.103166 0.0334683 0.00211246 0.0398064 0.113187 0.135381 0.189321 0.14183 0.161396 0.16028 0.177704 0.160385 0.152885 0.144573 0.134 0.121082 0.114515 0.105929 0.104681 0.106222 0.111347 -0.0140891 0.0448769 0.0114739 -0.0189947 -0.0634402 -0.0846988 -0.0563891 0.0862554 0.135647 -0.0667083 0.565366 0.110192 0.0200815 0.065763 0.107173 0.116032 0.159071 0.225577 0.161555 0.160884 0.161414 0.158108 0.147952 0.136307 0.122959 0.113413 0.108347 0.108069 0.120863 0.113119 -0.0116582 0.0411631 0.0105802 -0.0184214 -0.0563075 -0.0721724 -0.0429586 0.089872 0.14328 -0.113279 0.863832 0.0455767 0.0277635 0.0495284 0.0702085 0.0954437 0.119093 0.202716 0.154911 0.167901 0.15558 0.154065 0.145975 0.138552 0.123588 0.116137 0.112308 0.111199 0.112454 0.115931 -0.00917308 0.0371507 0.00952569 -0.0174521 -0.0492656 -0.0601335 -0.0283604 0.0728256 0.120658 -0.143277 0.42141 0.0566143 0.0332348 0.0256751 0.0405192 0.0726112 0.106016 0.172306 0.141081 0.149176 0.142824 0.140759 0.137674 0.128734 0.121314 0.135152 0.114477 0.111768 0.111179 0.112152 -0.00713613 0.0329394 0.00831636 -0.0161649 -0.0423921 -0.0488777 -0.0170903 0.0625264 0.0902863 -0.0186714 0.13155 0.0736212 0.0100276 -0.0162636 -0.000503592 0.0397363 0.0857725 0.167377 0.118826 0.124758 0.127326 0.127153 0.125852 0.124594 0.119613 0.117691 0.127332 0.108192 0.10601 0.103746 -0.00557336 0.0284217 0.00693025 -0.0146407 -0.0357855 -0.0386531 -0.0090555 0.0532416 0.0681361 0.970244 0.104071 0.134246 0.00153781 -0.0561812 -0.0491387 -0.00138616 0.0583062 0.0821227 0.0965952 0.106827 0.111799 0.11488 0.116078 0.114166 0.113467 0.111296 0.111211 0.108205 0.107401 0.107217 -0.00347918 0.024011 0.00535074 -0.0129613 -0.0295532 -0.0296513 -0.00271032 0.044426 0.0524935 0.105082 0.112301 0.809284 -0.0168918 -0.0790984 -0.0875627 -0.0411574 0.021479 0.0610808 0.0809334 0.091657 0.0984182 0.102934 0.13462 0.217697 0.106303 0.105363 0.105472 0.106337 0.108531 0.111779 -0.000352711 0.0193458 0.00359707 -0.011206 -0.0238076 -0.0220075 0.00208994 0.0371692 0.0545261 0.101718 0.0960787 0.0502762 -0.0196271 -0.0817427 -0.10336 -0.0628659 0.00137005 0.0449178 0.0665999 0.079105 0.086385 0.0905146 0.0914721 0.0919116 0.0954873 0.0970517 0.0985393 0.100256 0.101959 0.102444 0.00272123 0.0126557 0.00174153 -0.00944825 -0.0186482 -0.0157323 0.00299068 0.0306304 0.0425174 0.072316 0.0770186 0.0435594 -0.0113058 -0.0626828 -0.0883632 -0.0544553 0.00146682 0.0404582 0.0681113 0.0771298 0.0774557 0.0810825 0.0835393 0.085781 0.0878783 0.0896316 0.0912254 0.0928148 0.0944631 0.0961852 0.00639437 0.000949387 -4.95808e-05 -0.0077514 -0.0141577 -0.0108697 0.00341342 0.0236115 0.0288158 0.0437652 0.0506567 0.0293098 0.0356224 -0.0401827 -0.0495189 -0.0204677 0.0180854 0.0474429 0.062334 0.0710664 0.0765018 0.0725859 0.0746856 0.0767954 0.0788673 0.0807471 0.0824039 0.0838758 0.0852009 0.0863966 0.0105756 -0.026003 -0.00143308 -0.00616307 -0.0103886 -0.00737679 0.00489167 0.0370369 0.00217278 0.0101594 0.0246279 0.0172003 -0.000767786 -0.0170416 0.0499038 0.111969 0.0329871 0.0545057 0.0621306 0.0679336 0.0643754 0.0628538 0.0628696 0.0638715 0.0654921 0.0672849 0.068993 0.0704151 0.0714866 0.0722206 0.014674 -0.04385 -0.00191119 -0.00471432 -0.0073494 -0.00503037 -0.000579057 0.0158255 -0.042763 -0.0349246 -0.00187398 0.00656992 0.00221095 -0.00161452 0.00611365 0.0210019 0.0347397 0.04277 0.0512841 0.051843 0.0501587 0.0461002 0.045204 0.0448051 0.0449511 0.0469459 0.048332 0.0492978 0.0503661 0.0510937 0.0136521 -0.0085292 -0.00147291 -0.00342101 -0.00499458 -0.00371304 0.000440282 -0.0128775 -0.0898907 -0.0898378 -0.0261122 -0.0010327 0.00334428 0.150382 0.0151414 0.0201327 0.0320687 0.0489974 0.0367759 0.029168 0.0332721 0.0313479 0.0254546 0.0211443 0.0249408 0.0255943 0.0199198 0.0214635 0.0227629 0.0269475 0.00731097 0.00346475 -0.00083641 -0.00229355 -0.00321905 -0.00295673 -0.00538894 -0.0174603 -0.0856444 -0.100855 -0.0353336 -0.00619715 0.00217968 0.00683014 0.0103275 0.0130564 0.0119826 0.0174297 0.0174747 0.0737398 0.139277 0.116449 0.0151752 -0.00633164 -0.00806784 -0.00675406 -0.00490373 -0.00354346 -0.00283823 -0.00380931 0.00287541 0.0052313 -0.00031115 -0.00134692 -0.00187554 -0.00225491 -0.00540067 -0.0174634 0.011993 0.0297569 -0.0296554 -0.0111181 -0.00304492 0.00187866 0.00531051 0.0130904 0.00620319 0.00695702 0.0307684 0.00995996 0.00494994 -0.00209327 -0.00421092 -0.00267712 -0.00943169 -0.00777511 -0.00621482 0.00669699 0.00936763 0.0427516 0.000915956 0.00337633 -2.689e-05 -0.000593113 -0.000830483 -0.00130007 -0.00347165 -0.0108581 0.0222668 -0.024396 -0.0233682 -0.0177644 -0.0117472 -0.00671618 -0.0033372 -0.00192776 -0.00121357 -0.00411177 -0.00698185 -0.00481516 0.00116497 -0.000996362 6.86591e-05 -0.00127173 0.000233053 -0.00115923 -0.00135589 0.000297509 -0.000153961 0.00189907 0.000201293 0.00117356 2.66603e-05 -0.000149442 -0.000201018 -0.000388594 -0.00117993 -0.00321323 0.00731424 -0.0140472 -0.0252348 -0.0257938 -0.0206413 -0.0149544 -0.0106082 -0.00807522 -0.00734675 -0.00810598 -0.00925668 -0.00947086 -0.00845567 -0.00663789 -0.00453815 -0.0025851 -0.000940876 0.000742917 0.000906426 0.0148236 0.000952857 0.000596875 0.191504 0.23544 0.25628 0.272577 0.226311 0.679295 0.186633 0.19214 0.149532 0.0952731 0.0699974 0.0576343 0.0369862 0.276071 102.633 105.889 109.918 108.361 106.459 113.996 115.08 51.5975 0.0343496 0.0669209 0.0273998 0.0552289 0.0910587 -0.0984981 5.14582 115.784 0.348702 0.240045 0.255165 0.257721 0.219492 0.676382 0.18189 0.186147 0.143577 0.0833313 0.0546946 0.0589946 0.0688717 0.22137 -1.4825 107.554 110.074 107.647 106.427 114.231 119.593 37.7288 0.0252738 0.0554055 0.0279076 0.0536807 0.0892847 -0.0700216 -0.12379 68.1657 0.191339 0.225617 0.244167 0.640989 0.20071 0.217464 0.184087 0.180067 0.141201 0.0810804 0.0519597 0.0619699 0.0739561 0.172367 0.0295898 109.374 109.106 108.91 105.688 114.792 120.379 1.54635 0.072022 0.0440391 0.0280903 0.052142 0.0832421 -0.0509685 -0.113561 9.7303 0.225079 0.213358 0.197894 4.30658 0.191866 0.205259 0.184509 0.173828 0.141139 0.087691 0.0589145 0.0682065 0.0868862 0.115866 0.0346623 2.39209 106.456 108.761 106.68 114.724 120.975 0.0405138 0.0331586 0.0336384 0.0279652 0.0505127 0.0747749 -0.0417224 -0.103183 0.113677 0.217162 0.207025 0.19419 0.176635 0.181925 0.216816 0.180003 0.168224 0.14304 0.0996688 0.0724235 0.0757937 0.0934877 0.110499 -0.0091467 -0.34139 98.7071 111.241 109.699 114.005 120.55 0.0776202 -0.0466313 0.02399 0.0275378 0.048718 0.0654703 -0.0356217 -0.0935773 0.0995488 0.206627 0.200989 0.194795 0.186811 0.18288 0.209812 0.169866 0.164086 0.146046 0.113679 0.0907426 0.0863361 0.10924 0.112827 0.00986654 -0.248259 1.21812 113.52 110.504 114.885 116.424 -0.0733251 -0.0568469 0.016148 0.0268243 0.0467204 0.0563583 -0.031734 -0.0831195 0.0991815 0.195718 0.191916 0.187694 0.183311 0.180707 0.179679 0.169378 0.161461 0.148584 0.125756 0.106439 0.0966918 0.1018 0.104093 0.0591153 -0.089342 0.705614 -0.0549892 108.937 115.552 4.84446 -0.157776 -0.089632 0.0103047 0.0258577 0.0445009 0.0480209 -0.0288532 -0.0713786 0.08105 0.183588 0.181227 0.195172 0.177692 0.173968 0.170628 0.164233 0.159438 0.149664 0.132844 0.120007 0.105119 0.0990665 0.0905577 0.0552311 0.235935 0.603468 -0.0532392 -0.152407 -0.205838 -0.402506 -0.141575 -0.101814 0.00599588 0.024688 0.0420712 0.0405868 -0.0262744 -0.0571749 0.0687888 0.170948 0.171424 0.181833 0.167877 0.16558 0.162939 0.157968 0.16155 0.1532 0.134022 0.127652 0.110819 0.095854 0.0824773 0.0613363 0.0521006 0.468268 -0.0410273 -0.156091 -0.212991 -0.298147 -0.287612 -0.0832866 0.00336328 0.0233702 0.039461 0.0340906 -0.0241627 -0.0486808 0.0566965 0.156287 0.15753 0.157774 0.155849 0.156763 0.156239 0.152996 0.149261 0.144789 0.135229 0.126055 0.172439 0.0946188 0.0765643 0.0543501 0.0443028 0.146157 0.108597 -0.155629 -0.200729 -0.302044 -0.330236 -0.0550192 0.00235016 0.0219527 0.036704 0.0285154 -0.0225602 -0.0389192 0.0454937 0.141478 0.143977 0.146227 0.147611 0.158083 0.151422 0.148217 0.145033 0.140604 0.132779 0.12399 0.12154 0.0935458 0.0718251 0.0507842 0.0298827 0.0105678 0.00612464 -0.148403 -0.206094 -0.38409 -0.383187 -0.021543 0.00198069 0.0204682 0.0338371 0.0238062 -0.0210655 -0.0305936 0.0356408 0.129286 0.133012 0.136647 0.140543 0.144069 0.170212 0.147923 0.141075 0.137323 0.130717 0.121302 0.114515 0.0913866 0.067955 0.0408977 0.0190943 0.00317674 0.486029 -0.113916 -0.193694 -0.339087 -0.443903 -0.000708116 0.0017797 0.0189322 0.0308948 0.019908 -0.0192681 -0.0236284 0.0273698 0.119796 0.124587 0.12942 0.134544 0.13825 0.145448 0.144919 0.143812 0.138345 0.127135 0.116231 0.139995 0.127009 0.0671577 0.0379738 0.0112488 -0.00610679 0.487399 -0.0405449 -0.112693 -0.332502 -0.479124 -0.016698 0.0013267 0.0173451 0.027905 0.0167363 -0.0169803 -0.0178147 0.0207416 0.115957 0.125774 0.126541 0.135984 0.135273 0.137701 0.137087 0.137562 0.13387 0.124888 0.112075 0.132903 0.102833 0.0664306 0.0231992 0.000988868 -0.0122476 0.485687 -0.0631734 -0.154882 -0.29267 -0.415367 -0.0354942 0.000680363 0.0156991 0.0248943 0.0141749 -0.0143046 -0.0129374 0.0156571 0.116906 0.123593 0.126393 0.130822 0.134636 0.135108 0.135306 0.138273 0.133444 0.121618 0.108263 0.0965586 0.113097 0.0932014 0.0230089 -0.00909837 -0.0304252 0.499736 -0.138215 -0.166505 -0.228607 -0.249329 -0.0532929 0.000173987 0.013986 0.0218984 0.0120842 -0.0114805 -0.00896134 0.0118948 0.120966 0.127033 0.133501 0.138479 0.138628 0.138613 0.144798 0.25541 0.0668498 0.112118 0.103982 0.0913922 0.0768385 0.126177 0.0281251 -0.0177193 -0.0476646 0.0488029 -0.130387 -0.102944 -0.177039 -0.175275 -0.0306515 -0.00023787 0.0121988 0.0189558 0.010329 -0.00870941 -0.00588791 0.00914738 0.114355 0.118209 0.755285 0.736023 0.147374 0.132255 0.133561 0.122606 0.0937592 0.107234 0.102034 0.0893369 0.0688827 0.0498751 0.0244211 -0.0242274 -0.057015 -0.00105755 -0.137194 -0.0463644 -0.126396 -0.0697823 -0.0160001 -0.000687725 0.0103377 0.0161107 0.00881555 -0.00619161 -0.00362372 0.00712874 0.100338 0.0966587 0.0972318 0.105198 0.110684 0.407974 0.146018 0.187079 0.118403 0.112316 0.104151 0.089855 0.0704618 0.0474847 0.0214289 -0.0270299 -0.0618488 0.0324475 0.89938 0.232292 -0.175736 -0.0240386 -0.0111381 -0.00138973 0.00840882 0.0134034 0.00748566 -0.00410028 -0.00202474 0.00560152 0.107768 0.109563 0.11282 0.117095 0.120783 0.124755 0.126978 0.12532 0.132262 0.119094 0.108018 0.0902708 0.0668442 0.0389601 0.010527 -0.0291685 -0.0529951 -0.0549414 0.165255 0.163175 -0.198343 -0.0300738 -0.0124011 -0.00248265 0.00642795 0.0108661 0.00629511 -0.00249696 -0.000983192 0.0043975 0.121854 0.114744 0.117743 0.121508 0.125433 0.129752 0.132619 0.133233 0.129683 0.12214 0.107731 0.0858264 0.0580409 0.0257965 -0.00703727 -0.0353987 -0.0605713 -0.0694108 1.17901 -0.045312 -0.135923 -0.0457422 -0.0160825 -0.00400044 0.00442302 0.00852091 0.00521288 -0.0013224 -0.000320097 0.00341806 0.110813 0.110875 0.113745 0.11751 0.121797 0.127414 0.129792 0.130619 0.126346 0.115618 0.0972797 0.0766146 0.0380486 0.00186113 -0.0292393 -0.0514637 -0.0639345 -0.0755764 0.417777 -0.0500157 -0.0980237 -0.0490413 -0.0194052 -0.00578789 0.00244044 0.00638416 0.00422265 -0.000506787 8.40721e-05 0.00260508 0.0980769 0.100313 0.102956 0.105988 0.109381 0.113626 0.114843 0.1135 0.106644 0.091122 0.0683839 0.0403623 0.00242822 -0.0426953 -0.0680245 -0.0769344 -0.0800191 -0.0852837 0.202217 0.0327835 -0.0720999 -0.0465586 -0.0218435 -0.00764842 0.000537322 0.00446933 0.00331823 1.77607e-05 0.000306049 0.00192915 0.0875028 0.088613 0.0897532 0.0908301 0.0916327 0.0915917 0.0893046 0.0822633 0.067151 0.0426152 0.00863869 0.00254608 -0.0659272 -0.135418 -0.13217 -0.119954 -0.0944118 -0.076719 -0.0222564 -0.0609146 -0.0670313 -0.0435162 -0.0235253 -0.00939632 -0.00120239 0.0027936 0.00249789 0.000313404 0.000402352 0.0013794 0.0726598 0.0728078 0.0725244 0.0715358 0.0694045 0.0655639 0.0560024 0.041842 0.0340459 -0.0220288 -0.0757847 -0.15117 -0.22164 -0.26431 -0.250469 -0.174493 -0.111021 -0.0536781 -0.00881264 -0.038234 -0.0488889 -0.043334 -0.0248986 -0.0108728 -0.00267572 0.00138193 0.00176452 0.000435744 0.000418732 0.000952693 0.0514572 0.0513567 0.050485 0.0483146 0.0440133 0.036789 0.085392 0.00244247 -0.0292928 -0.0906141 -0.185922 -0.271571 -0.355922 -0.40338 -0.345428 -0.250733 -0.115237 -0.0444795 -0.0395608 0.136161 -0.0424436 -0.015352 -0.0074709 -0.0119073 -0.00376133 0.000268186 0.00112882 0.000436386 0.000391008 0.000642795 0.0247211 0.024875 0.0242455 0.0221717 0.0176528 0.00873326 -0.00964758 -0.0297217 -0.0661587 -0.112157 -0.16762 -0.196452 -0.385476 -0.428526 -0.387535 -0.23415 -0.122116 -0.0268113 0.0175038 0.468268 -0.0644345 -0.0482474 -0.00369303 -0.0122605 -0.00431403 -0.000514983 0.000606993 0.000360643 0.000336419 0.000430695 0.00101656 0.00318666 0.00368889 0.00242314 -0.00124176 -0.00819255 -0.0196636 -0.0371306 -0.0634195 -0.104066 -0.165016 -0.245485 -0.314543 -0.326475 -0.289241 -0.199841 -0.0897816 -0.00197212 0.0104533 0.0906512 2.96701 -0.0481844 -0.0276422 -0.011039 -0.00419256 -0.000937127 0.00021445 0.0002412 0.000255282 0.000285847 0.00429548 -0.000974902 -0.000465152 -0.00154291 -0.0042188 -0.00812392 -0.0141348 -0.023638 -0.0385742 -0.06117 -0.092612 -0.129054 -0.160552 -0.168368 -0.145343 -0.099558 -0.0372488 0.0101893 0.00499966 -0.00603015 0.388062 0.00738899 -0.0195382 -0.0080213 -0.00335189 -0.000994329 -4.29218e-05 0.000100246 0.000148689 0.000177343 0.00513889 0.0134162 0.0613884 0.0313021 0.0979918 0.00153638 -0.00242379 -0.00596214 -0.0127639 -0.0241551 -0.0410361 -0.0582416 -0.0677412 -0.0675381 -0.0401567 0.0905589 0.00851933 0.0263524 0.0098395 0.0112011 0.0151667 -0.00954698 -0.00933537 -0.00394746 -0.00194455 -0.000740118 -0.000179201 -4.91506e-05 1.99692e-05 8.19181e-05 -0.000361856 -0.00134938 -0.00291301 -0.00366637 0.00237961 -0.00382312 -0.000360131 -0.000564719 -0.00463364 -0.00287377 -0.0183574 -0.0416285 -0.0279392 0.0103259 -0.0130043 0.0270005 0.0085235 0.0088866 0.00601946 0.00534787 0.00707116 -0.00230808 -0.0025785 -0.00125643 -0.000717672 -0.00041036 -0.000227171 -0.000166939 -9.22519e-05 7.93301e-06 118.219 107.498 97.8622 90.7588 85.6913 82.5892 82.3581 85.5483 90.0774 93.5893 95.4466 95.9333 95.5223 94.6289 93.548 92.4628 91.4759 90.6349 89.9525 89.4194 89.0158 88.7188 88.5068 88.3615 88.2678 88.2139 88.1901 88.1887 88.2038 88.2305 118.253 107.481 97.8448 90.744 85.6761 82.555 82.2965 85.5143 90.0966 93.6327 95.4906 95.9684 95.5474 94.6444 93.5539 92.4592 91.4638 90.616 89.9286 89.3925 88.9873 88.6898 88.4779 88.3329 88.2398 88.1863 88.1629 88.162 88.1774 88.2044 118.326 107.452 97.8121 90.7158 85.6453 82.485 82.1645 85.4234 90.1089 93.7057 95.5767 96.0426 95.6026 94.6802 93.5704 92.4567 91.4439 90.5818 89.8843 89.3418 88.9333 88.6346 88.4227 88.2784 88.1861 88.1337 88.1113 88.1112 88.1274 88.1548 118.437 107.413 97.7636 90.6743 85.5996 82.3817 81.966 85.283 90.1202 93.8076 95.7026 96.1549 95.6892 94.7391 93.6005 92.4579 91.4183 90.5343 89.8211 89.2687 88.855 88.5543 88.3423 88.199 88.1083 88.0574 88.0365 88.0377 88.0548 88.083 118.588 107.363 97.699 90.6192 85.5396 82.2458 81.6985 85.0921 90.1337 93.9403 95.8674 96.3035 95.8052 94.8189 93.6423 92.4612 91.386 90.4728 89.7385 89.173 88.7524 88.4492 88.2373 88.0953 88.0064 87.9574 87.9381 87.9407 87.9591 87.9882 118.781 107.302 97.6178 90.5506 85.4658 82.0783 81.3572 84.8466 90.1507 94.1058 96.0722 96.4879 95.9486 94.9169 93.6934 92.4651 91.3457 90.396 89.6354 89.0536 88.6248 88.3187 88.1071 87.9669 87.8801 87.833 87.8154 87.8194 87.8391 87.8694 119.017 107.233 97.5194 90.4685 85.3792 81.8809 80.9364 84.5411 90.1724 94.3064 96.3189 96.7087 96.1189 95.0324 93.7531 92.4689 91.2967 90.3027 89.5101 88.9089 88.4706 88.1618 87.951 87.8132 87.7289 87.6839 87.6678 87.6733 87.6943 87.726 119.298 107.156 97.4032 90.3729 85.2809 81.6559 80.4289 84.1689 90.2002 94.5448 96.6098 96.9671 96.3161 95.1651 93.8215 92.4727 91.2382 90.1912 89.3606 88.7367 88.288 87.9768 87.7681 87.6338 87.5529 87.5103 87.4959 87.5025 87.5247 87.5579 119.626 107.072 97.2682 90.2639 85.172 81.4062 79.8259 83.7217 90.2365 94.8241 96.9475 97.2645 96.5408 95.3154 93.8988 92.4763 91.1693 90.0597 89.1842 88.5341 88.0744 87.762 87.5572 87.4283 87.3522 87.3131 87.3006 87.3078 87.3304 87.3648 120.006 106.983 97.1131 90.1414 85.0538 81.136 79.1164 83.189 90.2838 95.148 97.335 97.6024 96.7933 95.4832 93.985 92.4798 91.0891 89.9056 88.9775 88.2977 87.8266 87.515 87.3167 87.196 87.1272 87.0932 87.0833 87.0907 87.1115 87.1446 120.429 106.89 96.9367 90.0053 84.9277 80.8503 78.2881 82.5581 90.3457 95.5203 97.7759 97.9828 97.074 95.6685 94.0802 92.4834 90.9968 89.7263 88.7365 88.0228 87.5408 87.2328 87.045 86.9362 86.878 86.8518 86.8462 86.854 86.8712 86.895 120.878 106.795 96.737 89.8552 84.795 80.5562 77.3267 81.8138 90.4266 95.9457 98.2748 98.4078 97.3831 95.8712 94.1843 92.4875 90.8915 89.5183 88.4563 87.704 87.212 86.9118 86.7397 86.6478 86.6043 86.5891 86.5901 86.5999 86.6155 86.6406 121.342 106.701 96.5116 89.6907 84.657 80.2624 76.2168 80.9382 90.5316 96.4289 98.8359 98.88 97.7208 96.0908 94.297 92.4924 90.773 89.2779 88.1309 87.3343 86.834 86.5476 86.398 86.3292 86.3052 86.3046 86.3151 86.3296 86.3443 86.4575 121.808 106.614 96.2576 89.5109 84.5146 79.9796 74.9443 79.9126 90.6673 96.9748 99.4639 99.402 98.0869 96.3266 94.4175 92.4985 90.6411 89.0006 87.7532 86.9047 86.3989 86.1347 86.0169 85.9787 85.9792 85.9961 86.0181 86.0397 86.0596 86.081 122.265 106.54 95.9714 89.3147 84.3681 79.7216 73.504 78.7185 90.8423 97.588 100.165 99.9772 98.4809 96.5774 94.5446 92.5045 90.4963 88.6819 87.3143 86.4031 85.8966 85.667 85.5932 85.5949 85.6256 85.662 85.6951 85.7229 85.7469 85.7694 122.699 106.493 95.6487 89.1002 84.2166 79.5046 71.9162 77.3293 91.0687 98.2728 100.944 100.609 98.9013 96.8413 94.6768 92.5059 90.3376 88.3174 86.8029 85.8132 85.314 85.1371 85.1239 85.1778 85.2459 85.3041 85.3475 85.3791 85.4041 85.4266 123.104 106.473 95.2846 88.8645 84.0574 79.3457 70.1928 75.7047 91.3648 99.0382 101.807 101.301 99.3456 97.1154 94.8136 92.4898 90.1469 87.899 86.2038 85.1116 84.6335 84.5378 84.6073 84.7288 84.8444 84.9285 84.9821 85.016 85.0402 85.0608 123.447 106.466 94.8731 88.6038 83.8846 79.2634 68.2539 73.8134 91.7593 99.8891 102.76 102.059 99.8089 97.3941 94.9585 92.4296 89.8662 87.4326 85.5006 84.2637 83.8316 83.8636 84.044 84.2516 84.4295 84.547 84.6128 84.6487 84.6707 84.6874 123.666 106.461 94.4072 88.3126 83.6872 79.2741 65.9422 71.6266 92.2994 100.832 103.807 102.885 100.282 97.6675 95.124 92.296 89.5138 86.9626 84.6798 83.217 82.8766 83.1175 83.4439 83.7553 84.016 84.1797 84.2597 84.2947 84.3102 84.319 123.695 106.458 93.8777 87.9822 83.4473 79.3836 63.2089 69.16 93.0489 101.856 104.949 103.786 100.749 97.9211 95.338 92.1009 89.255 86.5027 83.7315 81.8986 81.7291 82.3157 82.8346 83.2719 83.6326 83.8485 83.9371 83.9608 83.9601 83.9541 123.428 106.461 93.2729 87.5985 83.1402 79.5769 60.0342 66.3947 94.0472 102.967 106.186 104.763 101.176 98.1537 95.652 91.9204 89.1293 86.0861 82.6694 80.1946 80.3069 81.4407 82.2239 82.8485 83.3218 83.5739 83.6515 83.6451 83.6138 83.585 122.725 106.465 92.5773 87.1335 82.7384 79.8004 56.9086 63.8485 95.2645 104.177 107.51 105.818 101.511 98.3927 95.9811 91.8613 89.1088 85.7874 81.5248 77.6906 78.183 80.4101 81.5615 82.485 83.1135 83.3808 83.4119 83.3421 83.2542 83.1908 121.395 106.468 91.7708 86.5087 82.6065 79.9448 0.982231 66.5524 96.6845 105.52 108.907 106.949 101.653 98.6621 96.2555 92.0231 89.2054 85.6936 80.4034 73.5962 74.4855 79.1797 80.8162 82.2161 83.0829 83.3237 83.2412 83.0468 82.848 82.7255 119.159 106.472 90.8258 86.2196 81.933 79.8534 -0.0194877 22.022 98.3161 107.037 110.35 108.149 101.323 98.9612 96.7282 92.4605 89.4327 85.8343 79.7841 69.6404 70.3248 77.7964 79.5337 82.128 83.4464 83.4635 83.1612 82.7699 82.3263 82.0727 115.579 106.489 89.7021 86.4612 81.4849 29.5214 -0.220779 6.37093 100.002 108.693 111.801 109.386 99.8899 99.3475 97.4686 93.1377 89.7488 86.1692 80.6997 67.5762 66.4448 73.4392 76.7054 82.4301 84.8982 83.61 83.185 82.6743 81.5238 80.8646 110.279 106.552 88.3178 86.9196 41.9923 -0.299467 -0.44468 8.12956 101.275 110.391 113.214 110.572 97.906 99.6178 98.3054 93.8924 90.185 86.5253 83.5215 0.425615 0.352672 0.299706 0.27318 0.257587 0.253554 0.254277 0.251456 0.250111 0.249492 0.248477 103.141 106.704 86.4149 87.5009 -0.152233 -0.285128 -0.63625 -1.79559 101.683 111.709 114.53 111.58 98.1933 100.436 99.2521 94.794 90.9734 86.8017 0.187132 0.583696 0.275525 0.276251 0.266143 0.259137 0.256496 0.255338 0.253591 0.251927 0.250386 0.24883 100.516 107.052 83.5671 -0.131131 -0.166804 -0.263775 -0.579349 -1.46208 102.665 112.752 115.679 112.331 100.444 102.44 99.8836 95.9046 91.942 15.291 0.315479 0.309137 0.231607 0.245006 0.253155 0.256373 0.256744 0.256364 0.254942 0.251275 0.249268 0.254149 19.8565 107.785 3.14637 -0.123142 -0.173534 -0.253426 -0.52849 -1.35945 104.644 114.509 116.472 112.567 102.961 105.286 99.711 97.6209 87.5835 0.237986 0.21497 0.222248 0.200839 0.216193 0.235411 0.248755 0.254803 0.256388 0.257685 0.269538 0.246758 0.244202 0.922177 109.196 0.00150002 -0.115167 -0.174032 -0.248789 -0.587256 -1.43141 106.896 114.961 117.301 112.409 104.384 106.649 98.4624 100.068 0.690104 0.180654 0.179042 0.17825 0.175211 0.197113 0.22801 0.236011 0.249657 0.252944 0.270115 0.251744 0.251668 0.244116 88.2689 88.3244 88.4022 88.508 88.6489 88.8336 89.0728 89.3802 89.7718 90.2667 90.8842 91.6411 92.5442 93.5816 94.7127 95.8605 96.8962 97.6043 97.6519 96.5997 93.9859 89.8225 85.6841 84.0201 85.2429 88.6927 93.6315 98.9977 103.991 106.717 88.243 88.2987 88.3766 88.4824 88.6232 88.8078 89.047 89.3546 89.7469 90.2433 90.8634 91.6241 92.5327 93.5769 94.7154 95.8708 96.915 97.6322 97.6893 96.6434 94.0202 89.8161 85.6337 83.9804 85.2232 88.6821 93.6275 98.9947 103.995 106.734 88.1938 88.2497 88.3277 88.4335 88.574 88.7583 88.9975 89.3056 89.6995 90.1988 90.8242 91.5931 92.5135 93.5725 94.7274 95.8991 96.959 97.6916 97.7621 96.7181 94.064 89.7778 85.5214 83.8986 85.1819 88.6608 93.6219 98.9925 104.01 106.772 88.1225 88.1788 88.2569 88.3624 88.5025 88.6863 88.9254 89.2343 89.6306 90.1348 90.7682 91.5497 92.4883 93.5711 94.7526 95.9496 97.0311 97.782 97.8677 96.8227 94.1219 89.7162 85.3525 83.7769 85.1192 88.6289 93.6144 98.9908 104.035 106.83 88.0285 88.0854 88.1637 88.269 88.4086 88.5919 88.8309 89.1411 89.5407 90.0513 90.6956 91.4941 92.4573 93.5722 94.789 96.0194 97.1282 97.9012 98.005 96.9586 94.1974 89.6329 85.1243 83.6154 85.0357 88.5862 93.605 98.9893 104.07 106.909 87.9107 87.9685 88.0473 88.1526 88.2918 88.4745 88.7137 89.0254 89.4292 89.9479 90.6057 91.4254 92.4197 93.5748 94.8349 96.1049 97.247 98.0477 98.1742 97.1272 94.292 89.5262 84.831 83.4143 84.9316 88.5326 93.5937 98.9878 104.116 107.008 87.7687 87.8275 87.907 88.0125 88.1514 88.3337 88.573 88.8867 89.2954 89.8236 90.4974 91.3423 92.3743 93.5786 94.8895 96.2049 97.3861 98.2209 98.3759 97.3302 94.4075 89.3937 84.4657 83.1741 84.8078 88.4681 93.5807 98.986 104.172 107.13 87.6022 87.6623 87.7424 87.8482 87.9868 88.1685 88.4081 88.7239 89.1382 89.6771 90.3692 91.2434 92.3201 93.5836 94.9532 96.3191 97.5452 98.4209 98.611 97.5695 94.5459 89.2331 84.0192 82.896 84.6647 88.3927 93.5661 98.9833 104.239 107.274 87.4113 87.4722 87.5519 87.6584 87.7971 87.9783 88.2179 88.5358 88.9561 89.5069 90.2195 91.1266 92.2554 93.5899 95.0262 96.4475 97.7244 98.6477 98.8806 97.8476 94.7099 89.0409 83.4795 82.5816 84.5031 88.306 93.5503 98.9794 104.315 107.442 87.1962 87.2568 87.3318 87.4419 87.5814 87.762 88.0013 88.3213 88.7479 89.3115 90.0462 90.9895 92.1779 93.5981 95.1088 96.5897 97.9236 98.9017 99.1862 98.1669 94.9027 88.8135 82.8312 82.2337 84.3236 88.2079 93.5336 98.9737 104.402 107.633 87.1431 87.2251 87.0776 87.1983 87.3392 87.5191 87.7575 88.0791 88.5119 89.0888 89.8473 90.8293 92.0841 93.6089 95.2005 96.7449 98.1427 99.1828 99.5284 98.5307 95.128 88.5462 82.0544 81.8564 84.1269 88.0976 93.5162 98.9654 104.498 107.847 86.69 86.7569 86.8143 86.9276 87.0704 87.2488 87.4852 87.8078 88.2465 88.8368 89.6204 90.6428 91.9683 93.6239 95.2999 96.9116 98.3816 99.4913 99.9088 98.9424 95.3902 88.2334 81.122 81.4556 83.9129 87.9744 93.4987 98.9538 104.603 108.086 86.397 86.4502 86.5225 86.6308 86.7727 86.9489 87.1831 87.5063 87.95 88.553 89.363 90.4272 91.8199 93.6449 95.4025 97.0878 98.6404 99.8274 100.329 99.4061 95.6944 87.8684 79.996 81.039 83.6812 87.8369 93.4818 98.9379 104.717 108.349 86.1061 86.1495 86.2129 86.3091 86.4432 86.6166 86.8499 87.1738 87.6206 88.2344 89.0718 90.1807 91.6159 93.6707 95.4981 97.2705 98.9196 100.191 100.79 99.9261 96.0462 87.4426 78.6164 80.6172 83.4299 87.6834 93.4665 98.9168 104.838 108.638 85.7951 85.8314 85.8818 85.9585 86.0794 86.2535 86.4864 86.8104 87.2565 87.877 88.7427 89.9042 91.3005 93.6814 95.5655 97.4572 99.22 100.582 101.295 100.507 96.451 86.9449 76.8934 80.2055 83.1551 87.5111 93.4546 98.8891 104.968 108.954 85.452 85.4856 85.5193 85.5986 85.692 85.8645 86.0965 86.4171 86.8556 87.4749 88.369 89.5997 90.8119 93.5794 95.5674 97.6464 99.5437 101.001 101.844 101.153 96.9113 86.3606 74.7334 79.8302 82.8502 87.3163 93.4484 98.8537 105.105 109.295 85.0839 85.1198 85.2126 94.1518 85.3271 85.4579 85.684 85.9949 86.4152 87.0199 87.9397 89.2674 90.4173 93.1391 95.4529 97.8408 99.8937 101.446 102.44 101.873 97.4221 85.6781 72.0569 79.5212 82.5031 87.094 93.4517 98.8093 105.247 109.662 84.7043 84.7261 84.7512 84.8425 84.8327 85.0284 85.2503 85.5454 85.9326 86.4999 87.4389 88.9044 90.382 92.2496 95.2005 98.0501 100.275 101.915 103.083 102.67 97.9792 84.9134 68.6383 79.3151 82.0938 86.8374 93.4698 98.7546 105.384 110.052 84.3272 84.3385 84.3569 84.3883 84.447 84.5954 84.7965 85.0731 85.4062 85.897 86.8417 88.4829 90.4245 91.1598 94.8995 98.2935 100.692 102.405 103.776 103.553 98.6015 84.1552 64.1356 79.2747 81.5895 86.5378 93.5096 98.6885 105.515 110.464 83.949 83.9461 83.9451 83.9536 84.0129 84.1526 84.3249 84.5891 84.8375 85.1836 86.1104 87.986 90.3839 90.3296 94.7662 98.5969 101.155 102.91 104.52 104.532 99.3335 83.5756 58.3176 79.491 80.9434 86.1837 93.5801 98.6097 105.635 110.891 83.5644 83.549 83.5294 83.509 83.5302 83.9766 83.8869 84.1053 84.2249 84.3079 85.1869 87.4253 90.2366 90.1987 95.0027 98.984 101.67 103.417 105.315 105.62 100.239 83.3401 51.1102 80.0783 80.0888 85.7707 93.6935 98.5171 105.736 111.325 83.1573 83.1427 83.1203 83.0749 83.0609 83.2313 83.482 83.6295 83.5581 83.1686 83.9736 86.8076 90.0514 90.7891 95.6129 99.4647 102.249 103.907 106.164 106.833 101.305 83.5994 43.7557 81.0325 78.9313 85.3373 93.8638 98.4093 105.809 111.75 82.6952 82.7277 82.7214 82.6018 82.5266 82.7335 83.12 83.1815 82.8753 81.4234 82.1658 86.1679 89.8874 91.7365 96.3685 100.033 102.905 104.344 107.071 108.194 102.554 84.6651 5.46075 81.8509 77.258 84.9963 94.1036 98.2853 105.839 112.145 82.0996 82.3559 82.4415 82.0392 81.7593 82.1394 82.906 82.7513 82.3016 78.674 79.8152 85.5711 89.7283 92.6761 96.9896 100.688 103.659 104.671 108.041 109.717 104.033 86.5313 1.26022 12.2477 74.6097 85.1363 94.4227 98.1446 105.806 112.474 81.0285 82.2819 82.8518 81.231 80.508 81.3088 83.1085 81.7934 82.5551 75.5811 78.0759 85.1476 89.5558 93.4651 97.4851 101.473 104.544 104.793 109.076 111.389 105.787 91.7656 -1.32506 0.277997 24.0736 85.5432 94.8258 97.9904 105.672 112.684 0.250472 0.240105 0.230498 0.233714 0.235055 0.24112 2.26412 16.2204 48.4595 68.0502 76.6959 84.9544 89.2999 94.2395 98.2611 102.464 105.609 104.54 110.155 113.162 107.699 95.9763 -0.882816 0.212301 0.10016 86.8294 95.314 97.8379 105.417 112.695 0.245454 0.24087 0.232459 0.231318 0.233984 0.23228 0.232222 0.213821 0.212935 0.277507 0.247227 84.527 88.6666 95.2068 99.2808 103.669 106.922 103.64 111.231 114.804 109.329 97.3116 -0.51339 0.157002 0.0670747 14.1339 95.9154 97.7468 105.015 112.385 0.257466 0.243198 0.240263 0.233197 0.226083 0.232323 0.223721 0.216751 0.199845 0.204913 0.211288 3.4342 86.0135 96.7103 99.9899 105.005 108.59 102.084 112.327 116.356 112.067 69.8473 -0.237025 0.114932 0.0445737 0.168041 96.6424 97.852 104.747 111.56 0.244535 0.241968 0.237517 0.229657 0.221415 0.215278 0.216519 0.207106 0.165214 0.130197 0.112319 0.0715279 61.0343 100.027 99.721 106.429 110.387 101.742 113.917 116.869 114.723 50.3248 -0.0753065 0.0874533 0.0343983 0.151038 46.2058 98.2393 104.726 109.91 0.236447 0.239757 0.34278 0.225883 0.207688 0.194279 0.203781 0.19035 0.140617 0.0864513 0.0832421 0.087245 0.187337 105.785 98.3068 107.801 111.555 103.811 114.796 117.158 114.428 0.172874 -0.0276991 0.0689099 0.0306649 0.1269 -0.0841516 95.8779 104.668 107.095 55.2865 110.938 0.00837662 -0.109629 -0.172133 -0.246178 -0.635261 -1.20238 109.686 114.996 118.4 112.848 105.101 106.803 94.3604 106.549 0.74562 0.123747 0.194901 0.13415 0.158451 0.173741 0.199734 0.225857 0.244214 0.250447 0.249782 0.24704 0.251815 0.252284 0.788003 110.605 0.0132506 -0.104851 -0.169865 -0.24376 -0.591446 -1.6222 116.46 115.098 119.593 114.085 104.759 105.771 92.934 0.411604 0.869599 0.0744102 0.505479 0.120035 0.146191 0.161394 0.187136 0.217623 0.238728 0.250494 0.248174 0.244574 0.52159 11.9516 0.975624 0.503695 0.00979742 -0.0994465 -0.166897 -0.240996 -0.669195 -0.939549 124.106 114.218 120.843 116.138 105.322 104.633 23.0285 0.385879 0.716724 0.0637454 0.489604 0.110087 0.134504 0.149226 0.174179 0.208003 0.231662 0.248843 0.243421 0.239295 0.206914 0.418237 0.874115 0.13484 0.00754518 -0.0935952 -0.163202 -0.236865 -0.465112 -0.724218 130.947 114.776 122.04 118.844 106.016 104.426 0.560419 0.49721 3.26136 -0.120041 0.511322 0.10733 0.12401 0.138195 0.16088 0.197117 0.222967 0.233986 0.237244 0.236006 0.230433 0.25212 0.571159 0.0922952 0.00585058 -0.0874239 -0.158741 -0.232126 -0.573116 -0.468167 80.9274 117.07 123.717 122.028 107.967 -1.61424 0.398843 0.424185 5.18608 -0.0520524 0.149236 0.105384 0.118237 0.142232 0.149781 0.185414 0.211635 0.225328 0.228021 0.227785 0.227161 0.226176 0.447592 0.0829944 0.00473979 -0.0812942 -0.153516 -0.221824 -0.586991 -0.261854 56.536 116.375 126.15 124.895 108.053 0.182225 0.360981 0.299423 4.002 -0.00943727 0.0833309 0.101184 0.211696 0.121851 0.133934 0.173802 0.200003 0.212061 0.216152 0.216213 0.21556 0.212026 0.374184 0.0727959 0.00411226 -0.0754951 -0.147559 -0.214297 -0.466176 -0.194681 -0.28972 118.303 129.241 127.579 0.367115 0.230338 0.288505 0.227758 0.303301 0.0499483 0.0889443 0.105202 0.211783 0.113974 0.128908 0.162836 0.194393 0.196021 0.202792 0.203497 0.202506 0.200118 0.319262 0.0648337 0.00378928 -0.0702193 -0.140924 -0.202971 -0.415348 -0.176536 0.221853 98.1615 133.657 131.983 0.396249 0.2195 0.297263 0.207476 0.41292 0.0989647 0.100197 0.110181 0.11718 0.113967 0.128794 0.151814 0.173958 0.188926 0.189446 0.189818 0.188999 0.187691 0.25406 0.0578757 0.00352993 -0.065539 -0.133666 -0.18888 -0.377055 -0.166082 -0.288083 0.423275 133.826 -0.0434941 1.80767 0.21352 0.213768 0.19186 0.491241 0.12839 0.112025 0.113231 0.114937 0.119025 0.129647 0.145714 0.16077 0.171002 0.174074 0.174588 0.17451 0.174366 0.191597 0.0518877 0.00311575 -0.0614165 -0.125846 -0.17373 -0.264863 -0.0984709 -0.265153 0.220457 0.120919 -0.0435493 0.54104 0.18896 0.216885 0.172011 0.176029 0.159418 0.122453 0.118773 0.119545 0.12561 0.132674 0.140767 0.149239 0.154312 0.156521 0.157434 0.158415 0.159497 0.154744 0.0466168 0.00243547 -0.057708 -0.117511 -0.156537 -0.162277 -0.0142263 -0.565365 0.127946 0.22058 -0.0941019 0.0584203 0.173563 0.20966 0.169764 0.15133 0.148158 0.132202 0.124402 0.123328 0.135258 0.1367 0.136696 0.137877 0.13779 0.138832 0.139439 0.141696 0.143916 0.137852 0.0419317 0.00151814 -0.0542242 -0.108722 -0.138958 -0.117439 0.0150453 -0.441169 0.0604987 0.159293 -0.0458977 0.0688989 0.155312 0.190184 0.160985 0.174728 0.15445 0.141908 0.143419 0.122641 0.13114 0.130751 0.131052 0.127812 0.124877 0.124741 0.144019 0.127741 0.130437 0.0937355 0.0376755 0.000483187 -0.0507779 -0.0995435 -0.120843 -0.0577811 0.0492972 -0.350181 0.0310812 0.123966 -0.0395436 0.0531125 0.148226 0.195203 0.150592 0.153038 0.159143 0.148738 0.416232 0.175722 0.133742 0.13104 0.12648 0.118461 0.113221 0.110425 0.112004 0.115988 0.119714 0.0787137 0.0337809 -0.000525668 -0.047234 -0.0900443 -0.103007 -0.0281899 0.0712234 -0.143821 0.00665186 0.0289793 0.00152057 0.0479341 0.168111 0.145494 0.138956 0.152949 0.160119 0.157988 0.47779 0.154866 0.145463 0.138317 0.126931 0.11523 0.107939 0.105052 0.105229 0.109311 0.113871 0.0882545 0.0301706 -0.00140248 -0.0435373 -0.080338 -0.085746 -0.00317718 0.110183 -0.0268766 -0.0548517 0.0435389 0.00105811 0.0398398 0.123114 0.117967 0.137745 0.146362 0.160688 0.162133 0.16013 0.165575 0.154209 0.142472 0.12903 0.116943 0.110828 0.106937 0.115525 0.114124 0.114495 0.0581984 0.0267736 -0.00210344 -0.0396811 -0.0705583 -0.069593 0.015697 0.119276 -0.00320332 -0.204091 1.28394 0.0138082 0.0299869 0.0620561 0.0905681 0.109927 0.132374 0.162249 0.155863 0.157652 0.156921 0.151286 0.144282 0.12904 0.119136 0.113033 0.110509 0.11057 0.113003 0.11714 0.0690069 0.0235282 -0.00262873 -0.0356937 -0.0608803 -0.0548931 0.0154804 0.111606 0.00456042 -0.293586 0.374522 0.084711 0.0793024 0.031654 0.0629077 0.0937566 0.122689 0.150155 0.145645 0.152142 0.145317 0.143722 0.135283 0.125705 0.118233 0.114937 0.112717 0.112068 0.113591 0.117799 0.0743803 0.0203431 -0.00300429 -0.031622 -0.051496 -0.0419628 0.0179915 0.0985274 -0.0135519 -0.170977 0.219002 0.0307025 -0.00132555 -0.00259777 0.028229 0.07371 0.106192 0.187922 0.127884 0.141447 0.130328 0.129776 0.128373 0.122074 0.118642 0.127861 0.11042 0.107748 0.105455 0.101596 0.0717557 0.0172073 -0.00325875 -0.0275285 -0.0426031 -0.0309274 0.0201447 0.0809595 -0.0430911 0.0246955 0.212566 0.0303664 -0.0281254 -0.0493188 -0.0163657 0.0364296 0.0771737 0.128886 0.107014 0.113312 0.116737 0.118379 0.117449 0.115902 0.115109 0.111676 0.108709 0.107332 0.106512 0.106221 0.0707597 0.0139503 -0.00341466 -0.0234908 -0.0343833 -0.0217994 0.0208475 0.0632956 -0.0212117 0.0493619 0.889613 0.00573597 -0.0496098 -0.0856888 -0.0604471 -0.000373413 0.0538505 0.077666 0.0907095 0.0988109 0.104027 0.108381 0.178933 0.11185 0.107877 0.106825 0.107189 0.110343 0.109556 0.121941 0.0745381 0.0103667 -0.00348967 -0.0195972 -0.0269945 -0.0144088 0.0194772 0.0510726 0.0362683 0.0990099 0.157941 0.00710206 -0.0521801 -0.101082 -0.0868513 -0.0266026 0.0308299 0.0605734 0.0766229 0.0859352 0.091591 0.0943274 0.108498 0.096969 0.0984926 0.0996438 0.101214 0.103337 0.106245 0.120481 0.0864979 0.0061946 -0.00348863 -0.0159376 -0.0205563 -0.00920952 0.0174635 0.042713 0.0478285 0.0894709 0.0679243 0.0153367 -0.0446509 -0.0906401 -0.0831639 -0.0291504 0.023092 0.0619546 0.0746403 0.0765698 0.0815353 0.0844817 0.0865383 0.0887657 0.0906579 0.0922739 0.0938585 0.0955002 0.0972081 0.0990215 0.0792631 0.00126321 -0.00339658 -0.0125961 -0.0151474 -0.00547535 0.0142227 0.0307715 0.0358883 0.059356 0.048442 0.0580798 -0.0278938 -0.0547923 -0.047919 -0.00807913 0.0320425 0.055014 0.0669806 0.0768354 0.0736666 0.0759406 0.0781565 0.0803379 0.0823269 0.0840711 0.0856358 0.0870891 0.0884639 0.0897579 0.080643 -0.00407253 -0.00317749 -0.00963827 -0.0108018 -0.0014958 0.0090272 0.0193174 0.00978818 0.029237 0.0276467 0.0129005 -0.016672 -0.0284112 0.177318 0.0173293 0.0424055 0.0587762 0.0642379 0.0688601 0.0656485 0.0658705 0.0668573 0.0684715 0.0703172 0.0721035 0.0736601 0.0749164 0.0758735 0.0765546 1.13741 -0.00711832 -0.00279186 -0.00710418 -0.0074839 -0.00251935 0.00203387 -0.00310777 -0.0438478 -0.00764245 0.00920523 0.00585837 -0.00219184 -0.000902169 0.0128319 0.0291595 0.0411968 0.0512678 0.056105 0.0574586 0.0781561 0.0501007 0.0499334 0.0500843 0.051266 0.0548135 0.0545692 0.0558752 0.0567657 0.0572356 0.0535916 -0.00459872 -0.00225263 -0.00500388 -0.00510091 -0.00274563 -0.00506423 -0.0277968 -0.0850978 -0.0396345 -0.00558452 0.00286571 0.00280042 0.0237728 0.0160593 0.0244788 0.0796206 0.04178 0.0382526 0.0361494 0.0358608 0.0322143 0.0286241 0.0262357 0.0319216 0.0272082 0.0279324 0.0297329 0.043342 0.0303467 0.0413252 -0.00119609 -0.00164032 -0.00331158 -0.00344748 -0.0033152 -0.00637464 -0.0106196 -0.125998 -0.0695663 -0.014361 -5.10533e-05 0.00480387 0.0849198 0.013936 0.0146094 0.0453035 0.0244751 0.106396 0.144722 0.0620385 0.0207953 0.00503439 -0.000973538 -0.00168768 -0.000537623 0.00161735 0.00366417 0.00973131 0.00857534 0.023956 0.000521942 -0.00102881 -0.00197782 -0.0022343 -0.00331627 -0.0107707 -0.0295449 -0.0427907 -0.0510488 -0.0178004 -0.00481483 0.00123095 0.00548381 0.0126947 0.00765957 0.00839433 0.0357883 0.0127009 0.0100076 0.00177387 -0.0115875 -0.0109581 -0.0153842 -0.0108454 -0.00756168 -0.00334612 0.00786032 0.060715 0.0597663 0.0113322 0.00085061 -0.000499878 -0.000947771 -0.00120609 -0.00242977 -0.00711716 0.0455388 0.00725426 -0.0291636 -0.0196888 -0.0123172 -0.00659324 -0.00244733 -0.000202026 5.24852e-05 -0.000755852 -0.00382163 -0.00327964 -0.000435786 -0.00115979 -9.05643e-07 0.00696267 -0.00213783 -0.00269625 -0.0036934 -0.00275917 -0.00366555 -0.00265132 0.000585318 0.000128883 6.38292e-05 -9.3338e-06 -3.09859e-05 -3.07919e-05 -0.000113429 -0.000455225 -0.0018174 0.00131831 -0.0173663 -0.0292246 -0.0283624 -0.0225286 -0.0165985 -0.0121256 -0.00942242 -0.00856215 -0.00949146 -0.0111876 -0.0118008 -0.0107991 -0.00889716 -0.00674129 -0.00478316 -0.00331267 -0.00206584 -0.00159165 -0.000793131 0.000594245 0.000349857 0.224263 0.241789 0.463303 0.227034 0.307537 0.180222 0.195134 0.179842 0.126273 0.0705821 0.0567268 0.103438 0.152439 39.4261 96.3564 108.624 113.984 105.671 115.253 115.816 114.08 -0.145783 -0.0393437 0.0592701 0.0300468 0.11489 -0.100354 0.104192 104.653 106.03 0.245847 0.243846 0.270029 0.22318 0.256416 0.130484 0.190234 0.173123 0.117756 0.0631925 0.0512873 0.0769086 0.24372 0.575349 93.7435 108.815 113.075 106.808 115.778 115.059 117.62 -0.247848 -0.050817 0.0528585 0.0299937 0.106913 -0.106793 0.0952094 86.6898 106.467 0.216151 0.23635 0.265787 0.188792 0.220305 0.177745 0.186146 0.167444 0.111241 0.0616579 0.0515513 0.0734604 0.219786 1.3336 1.31626 107.922 113.303 107.707 117.304 115.157 118.451 0.32165 -0.0541535 0.0468312 0.0301466 0.0991053 -0.105377 0.0769532 0.0188547 108.083 0.218134 0.209397 4.0895 0.172516 0.204911 0.192118 0.181344 0.162891 0.11357 0.0660171 0.0568556 0.078064 0.199966 0.799095 0.254092 104.86 114.579 110.975 118.285 114.808 120.587 0.161918 -0.0491647 0.0411046 0.030338 0.0913568 -0.0973608 0.0588512 0.0397242 108.09 0.213807 0.201341 0.165997 0.170805 0.19566 0.192818 0.175625 0.159394 0.120296 0.0784533 0.0672233 0.081785 0.110677 0.334529 0.405486 -1.15349 117.582 111.154 118.796 116 86.2379 0.136331 -0.0338497 0.0357518 0.0304451 0.0836018 -0.0853368 0.0444873 0.0357272 -0.316156 0.206124 0.199413 0.19261 0.182022 0.202973 0.214337 0.169579 0.157467 0.129251 0.0951837 0.0814503 0.0883718 0.108597 0.137709 0.152633 0.386786 119.138 110.731 120.309 120.115 2.40686 0.208261 -0.0334376 0.0308148 0.0303773 0.0758901 -0.0719306 0.0314343 0.0250332 -0.256843 0.196547 0.192133 0.187275 0.182341 0.18314 0.176473 0.165827 0.156591 0.136548 0.11195 0.0967471 0.0952595 0.105197 0.104501 0.0923898 0.231497 -0.288113 66.6687 121.979 122.94 -0.0144274 0.113986 -0.0526042 0.0263747 0.0300693 0.068328 -0.0586677 0.0202529 0.0136701 -0.19483 0.185631 0.183505 0.180873 0.177173 0.174766 0.168657 0.161588 0.155892 0.140976 0.12356 0.110672 0.0998067 0.0957208 0.0829217 0.0384753 0.121879 -0.180042 -0.119686 22.1354 -0.245173 -0.0724663 0.0317034 -0.0527723 0.0224799 0.0295006 0.0609918 -0.0467252 0.0111697 0.01 -0.139052 0.173953 0.18554 0.183049 0.169109 0.166526 0.162204 0.155649 0.159523 0.14071 0.130195 0.120988 0.116459 0.0900788 0.0752414 0.183388 0.0677847 -0.0713989 -0.129552 -0.201154 -0.283466 -0.253989 -0.0947046 -0.0394424 0.0192337 0.0286724 0.0539814 -0.0366202 0.00407558 0.00887461 -0.0942301 0.160509 0.161679 0.160303 0.158646 0.158681 0.156171 0.152212 0.147864 0.144284 0.130347 0.155082 0.103285 0.0863141 0.0707091 0.217046 0.0335236 -0.0474256 -0.167358 -0.179446 -0.277104 -0.311925 -0.140215 -0.0285801 0.0165376 0.0276068 0.0473884 -0.0284387 -0.00144399 0.00787325 -0.0603107 0.146024 0.148044 0.149232 0.150823 0.152279 0.150563 0.147821 0.14408 0.138341 0.12888 0.18565 0.105747 0.0827431 0.0665668 0.116789 0.025008 -0.0125844 -0.243368 -0.17239 -0.241466 -0.375772 -0.124964 -0.0158586 0.0143298 0.0263178 0.0412888 -0.0219118 -0.00546335 0.00706561 -0.0360259 0.133828 0.137028 0.140548 0.143595 0.144733 0.171889 0.143679 0.140486 0.134222 0.131267 0.117833 0.105533 0.0793201 0.077267 0.0356163 0.0138875 0.00334449 -0.170394 -0.116862 -0.263278 -0.479625 -0.1451 -0.0102934 0.0124866 0.0248071 0.0357316 -0.0166386 -0.00787835 0.00637088 -0.0196426 0.123874 0.128403 0.133102 0.137828 0.144943 0.167044 0.139369 0.141754 0.137536 0.123317 0.113497 0.131986 0.0756775 0.0565491 0.0304025 0.00253808 -0.0208644 -0.114638 -0.128314 -0.243948 -0.492522 0.128099 -0.00753159 0.010909 0.0230838 0.0307342 -0.0122583 -0.00899587 0.00576707 -0.00935314 0.118082 0.123872 0.132833 0.134079 0.137236 0.137443 0.137577 0.13653 0.130012 0.122096 0.110058 0.117912 0.0750003 0.050684 0.0232945 -0.0100094 0.000972234 -0.0940179 -0.154635 -0.20241 -0.507435 -0.166045 -0.00623488 0.00952305 0.0211638 0.0262812 -0.00859289 -0.00906648 0.00519372 -0.00344521 0.11881 0.12584 0.128316 0.136913 0.134873 0.13583 0.136454 0.139653 0.129626 0.115194 0.103911 0.115045 0.078124 0.127552 0.0135232 -0.00502153 -0.0394916 -0.110266 -0.180441 -0.135646 -0.369807 -0.154774 -0.00852854 0.00825313 0.0190778 0.0223346 -0.00556557 -0.00839123 0.00462766 -0.000463427 0.122005 0.129942 0.133858 0.136003 0.137349 0.142162 0.134314 0.174907 0.125048 0.109567 0.099405 0.0863335 0.0883135 0.0752663 0.00631358 -0.0258389 -0.0644157 -0.0996699 -0.185073 -0.134983 -0.273327 -0.0878908 -0.00933667 0.00701034 0.0168645 0.0188384 -0.0031301 -0.0072037 0.00412692 0.000822943 0.127306 0.163057 0.667071 0.183014 0.142707 0.134832 0.138541 1.45194 0.109089 0.105718 0.0967326 0.081156 0.171717 0.0463883 0.00124687 -0.033587 -0.0702673 0.0418488 -0.161717 -0.126269 -0.170876 -0.00750195 -0.00802946 0.00571608 0.014571 0.0157429 -0.00128763 -0.00576429 0.00365423 0.00120556 0.0951955 0.0887915 0.089943 0.104214 0.214187 0.42844 0.156061 0.114624 0.121289 0.107802 0.0971387 0.0813998 0.057226 0.0407915 -0.00312692 -0.0461408 -0.0638841 0.957234 -0.152461 -0.101022 -0.156158 0.00589396 -0.0073825 0.00430728 0.0122451 0.0130031 -1.25052e-06 -0.00426521 0.00317964 0.00117946 0.106846 0.108868 0.113017 0.117294 0.120659 0.125466 0.124092 0.122385 0.119975 0.113393 0.0996032 0.0802605 0.0548745 0.030644 -0.00893863 -0.0414961 -0.0655295 0.985338 -0.0151558 -0.103987 -0.10579 -0.00512484 -0.00772413 0.00274254 0.0099337 0.0105801 0.000829039 -0.00293657 0.0027358 0.00102704 0.111829 0.115191 0.11895 0.122904 0.126755 0.130518 0.134584 0.13074 0.126032 0.116303 0.0991186 0.0751245 0.0459247 0.0137706 -0.015808 -0.0479837 -0.0678617 0.560929 -0.0265129 -0.103144 -0.117172 -0.0221749 -0.00913159 0.0010251 0.00768062 0.00844052 0.00130076 -0.00188196 0.00231592 0.000826817 0.111987 0.114198 0.117499 0.121443 0.125588 0.130259 0.136347 0.131119 0.12454 0.111004 0.0898354 0.0638588 0.0271536 -0.00739965 -0.036188 -0.0537724 -0.0723648 -0.0967666 -0.0612412 -0.0667923 -0.0933255 -0.0301049 -0.0111548 -0.000800978 0.00552819 0.00655621 0.00149939 -0.00105826 0.00191548 0.000632049 0.101381 0.104184 0.107374 0.110878 0.114622 0.119197 0.119677 0.116914 0.10731 0.0890744 0.0677225 0.0330325 -0.00872006 -0.0442875 -0.0639018 -0.0734005 -0.0767053 0.00405005 0.490613 -0.0568041 -0.0603848 -0.0330063 -0.0132584 -0.00264944 0.00351998 0.00490366 0.00149895 -0.000464277 0.00153808 0.000461554 0.0910683 0.0925088 0.0940547 0.0956021 0.0968804 0.0971739 0.0945287 0.0861579 0.0690506 0.0431156 0.00812002 -0.00238042 -0.0415294 -0.115608 -0.114486 -0.0993204 -0.084642 0.176617 0.0903169 -0.0178973 -0.0503762 -0.0338686 -0.0151112 -0.00440856 0.0017075 0.00346767 0.00136285 -7.12513e-05 0.00119423 0.000317128 0.0770227 0.0772532 0.0770834 0.0762309 0.0740993 0.069125 0.0594844 0.0462546 0.0111056 -0.0262195 -0.0846924 -0.153151 -0.209559 -0.230572 -0.186097 -0.133945 -0.0816159 -0.0267158 -0.0261017 -0.0579246 -0.0476508 -0.0345913 -0.0165884 -0.00594342 0.000153514 0.00224377 0.00114361 0.000156983 0.000901245 0.000202739 0.0573006 0.0567779 0.055238 0.0518818 0.0450883 0.0346275 0.0193895 -0.00652935 -0.0418732 -0.108698 -0.205341 -0.291087 -0.360184 -0.373369 -0.300967 -0.177688 -0.0799222 -0.0276995 0.417748 -0.0314801 -0.0469019 -0.012011 -0.0176549 -0.0070895 -0.00108473 0.00123779 0.000881062 0.000259518 0.000671335 0.000120931 0.0312681 0.0313154 0.0301917 0.0273034 0.0215807 0.0114903 0.0691834 -0.0419837 -0.0822164 -0.140958 -0.135874 -0.339331 -0.41864 -0.429083 -0.314179 -0.194886 -0.0539303 -0.00482958 0.0266522 0.100063 -0.0540715 -0.0132891 -0.0184612 -0.00762932 -0.00191478 0.000463065 0.000607096 0.000275466 0.000496869 7.01614e-05 0.00693116 0.00709555 0.00627469 0.00363145 -0.00191622 -0.0117984 -0.0276646 -0.0504422 -0.0859653 -0.142376 -0.223685 -0.296378 -0.363361 -0.350152 -0.277708 -0.161557 -0.0530058 0.00263761 0.00889594 -0.0115782 -0.0996179 -0.0368312 -0.0167431 -0.00726317 -0.00226347 -6.64318e-05 0.000348477 0.000229303 0.000355692 4.4378e-05 0.00621533 0.00376774 0.00156512 -0.00143792 -0.00579447 -0.0121492 -0.0215112 -0.0358142 -0.0576107 -0.0895946 -0.131158 -0.176193 -0.202428 -0.19557 -0.156508 -0.0887415 -0.0224641 0.00342372 0.000571789 0.0942021 -0.0313595 -0.0254175 -0.0128734 -0.00578842 -0.00210156 -0.00034694 0.00012662 0.000136318 0.000227635 3.20732e-05 0.0101182 0.00126327 -0.00343137 -0.0106429 -0.0094283 -0.00685314 -0.0076885 -0.0126623 -0.0235032 -0.0399101 -0.0607766 -0.0792993 -0.0866177 -0.074298 -0.0420495 0.0916944 0.00758775 0.0117752 0.00664848 0.02645 -0.00823665 -0.000625934 -0.00770821 -0.00343374 -0.00147849 -0.00040271 -4.99947e-05 1.13266e-05 0.000100356 2.13066e-05 0.000364385 -0.000196514 0.00187258 -0.00234274 -0.00132407 -0.00194169 -0.00305074 -0.002777 -0.00354411 -0.00783582 -0.0144506 0.0308036 -0.016426 -0.000171996 -0.00258339 0.0208638 0.0161052 0.00492548 0.0025494 0.00225652 0.00144691 -0.0019205 -6.19891e-05 0.000589057 -0.000318154 -0.000273461 -0.000230442 -0.000194869 -0.000102815 -2.34178e-06 122.935 113.008 102.45 94.069 88.0258 83.8865 82.0385 83.5846 87.7996 92.0065 94.6988 95.8244 95.8114 95.1187 94.1044 93.0051 91.9604 91.0429 90.2809 89.6747 89.2086 88.8606 88.6081 88.431 88.3128 88.24 88.2019 88.19 88.1974 88.2187 122.977 116.2 104.894 95.8515 89.3078 84.7025 82.1813 82.8419 86.6665 91.1238 94.2354 95.7049 95.9166 95.3442 94.3751 93.2735 92.1999 91.2414 90.4358 89.7893 89.289 88.9134 88.6394 88.4457 88.3149 88.2325 88.1872 88.17 88.1735 88.1921 123.066 116.209 104.879 95.8229 89.2836 84.6712 82.1039 82.7256 86.6125 91.1549 94.3066 95.779 95.977 95.3873 94.4013 93.2828 92.1927 91.2197 90.4027 89.7482 89.2431 88.8652 88.5905 88.3971 88.2669 88.1854 88.141 88.1245 88.1288 88.1479 123.205 116.228 104.856 95.7789 89.2462 84.6227 81.9837 82.5408 86.5201 91.1935 94.4111 95.894 96.0743 95.4598 94.4479 93.3029 92.1866 91.1901 90.3544 89.687 89.1741 88.7922 88.5163 88.3231 88.194 88.1139 88.0709 88.0558 88.0611 88.0811 123.394 116.254 104.826 95.719 89.1957 84.5576 81.8211 82.2862 86.3916 91.2434 94.5497 96.048 96.2068 95.5604 94.5139 93.3329 92.1808 91.1521 90.2908 89.6056 89.082 88.6949 88.4173 88.2245 88.0968 88.0185 87.9773 87.9638 87.9705 87.9916 123.633 116.285 104.788 95.6433 89.1318 84.4771 81.6161 81.9564 86.225 91.3066 94.724 96.2414 96.3734 95.6865 94.5965 93.3704 92.1737 91.1044 90.2108 89.5031 88.9661 88.5726 88.2931 88.101 87.9751 87.8988 87.8595 87.8475 87.8557 87.8781 123.923 116.318 104.742 95.5512 89.0547 84.3824 81.3692 81.5447 86.0175 91.3845 94.9362 96.4756 96.5739 95.837 94.6943 93.4145 92.1644 91.0461 90.1129 89.3778 88.8248 88.424 88.1428 87.952 87.8284 87.7544 87.717 87.7066 87.7161 87.7398 124.266 116.348 104.686 95.4426 88.9643 84.2752 81.0813 81.0424 85.7658 91.4793 95.1888 96.7524 96.8093 96.012 94.8072 93.4651 92.1527 90.9762 89.9956 89.2278 88.6562 88.2475 87.9652 87.7766 87.6563 87.5852 87.55 87.541 87.5517 87.5768 124.661 116.37 104.621 95.317 88.8605 84.1578 80.7536 80.4385 85.4659 91.5935 95.4849 97.0743 97.0804 96.2116 94.9353 93.5223 92.1385 90.8936 89.8568 89.0505 88.4577 88.0409 87.7586 87.574 87.4585 87.3916 87.3591 87.3516 87.363 87.3889 125.11 116.374 104.544 95.1741 88.7432 84.0325 80.3882 79.7188 85.1135 91.7305 95.8278 97.4442 97.3886 96.4361 95.0787 93.5863 92.1216 90.7971 89.6939 88.8426 88.2258 87.8012 87.521 87.3429 87.2348 87.174 87.1456 87.14 87.1511 87.1759 125.614 116.354 104.454 95.0132 88.612 83.9022 79.9883 78.8646 84.7037 91.8939 96.2216 97.8649 97.7351 96.6858 95.2375 93.6572 92.102 90.6854 89.5038 88.6 87.9566 87.5251 87.2499 87.0819 86.9846 86.9329 86.9108 86.908 86.9185 86.9388 126.17 116.314 104.35 94.8339 88.4663 83.7702 79.558 77.8518 84.2316 92.0885 96.6706 98.3402 98.1216 96.9607 95.4114 93.735 92.0801 90.5569 89.283 88.3179 87.6446 87.208 86.9421 86.7891 86.7071 86.6683 86.6553 86.6574 86.6684 86.6862 126.776 116.27 104.23 94.6356 88.3054 83.6401 79.1032 76.6477 83.6921 92.3196 97.1797 98.8739 98.5497 97.2607 95.6001 93.8197 92.0564 90.4102 89.0271 87.9901 87.2835 86.8446 86.5939 86.4623 86.4012 86.3795 86.379 86.3887 86.4022 86.4166 127.428 116.236 104.093 94.4178 88.1282 83.5158 78.632 75.2069 83.0805 92.5937 97.7544 99.4707 99.0215 97.5853 95.803 93.9108 92.0314 90.2441 88.7315 87.6091 86.8648 86.4279 86.2007 86.0989 86.0652 86.0652 86.0801 86.0997 86.1192 86.1388 128.12 116.219 103.938 94.1798 87.9331 83.4014 78.1546 73.4557 82.3906 92.918 98.4005 100.135 99.5389 97.9338 96.019 94.0071 92.0052 90.0569 88.3911 87.1654 86.3774 85.9493 85.7572 85.696 85.6979 85.7241 85.7558 85.7854 85.8109 85.8337 128.845 116.221 103.765 93.9212 87.7183 83.3008 77.6835 71.2833 81.6129 93.3015 99.1245 100.874 100.104 98.3046 96.2463 94.1072 91.9746 89.8449 88.0018 86.6465 85.8063 85.3978 85.2577 85.2516 85.2992 85.3572 85.4069 85.4449 85.4739 85.498 129.595 116.241 103.571 93.6413 87.4813 83.2178 77.2336 68.5602 80.7462 93.7539 99.9293 101.691 100.72 98.6948 96.4822 94.21 91.9266 89.5872 87.5585 86.0358 85.1303 84.7595 84.6964 84.7643 84.8711 84.9684 85.0385 85.0841 85.1146 85.1379 130.353 116.273 103.356 93.3393 87.2186 83.1559 76.8265 65.1705 79.8351 94.2831 100.821 102.594 101.389 99.0999 96.7216 94.3184 91.8254 89.2337 87.0565 85.3126 84.3185 84.017 84.0691 84.2345 84.4174 84.5659 84.6611 84.7151 84.7463 84.7673 131.098 116.3 103.115 93.0141 86.9249 83.1176 76.4928 61.0807 78.9609 94.8819 101.806 103.586 102.112 99.5114 96.9537 94.4467 91.6159 88.8537 86.5076 84.4515 83.323 83.1498 83.3793 83.6688 83.9461 84.1643 84.2936 84.3571 84.3869 84.4024 131.798 116.295 102.842 92.6643 86.591 83.1026 76.2802 56.4977 78.2864 95.5099 102.88 104.673 102.891 99.9149 97.1614 94.6265 91.2958 88.6151 85.9332 83.4222 82.0744 82.1389 82.6462 83.091 83.4811 83.7874 83.9572 84.0252 84.0447 84.0466 132.407 116.21 102.534 92.2888 86.2041 83.1059 76.2908 52.0761 78.1548 96.1095 104.043 105.856 103.724 100.284 97.3569 94.8764 90.9629 88.4947 85.3754 82.2093 80.4736 80.9437 81.8744 82.5296 83.0743 83.4706 83.6687 83.7246 83.7181 83.6946 132.866 115.973 102.194 91.8863 85.7039 83.1108 76.7371 49.3716 79.0366 96.7236 105.301 107.131 104.607 100.573 97.6266 95.1325 90.7572 88.4517 84.9015 80.8067 78.1529 79.3444 80.9965 81.9562 82.7456 83.2473 83.4458 83.4593 83.3996 83.3313 133.097 115.475 101.833 91.455 85.3994 83.0809 77.9882 -0.373677 80.5062 97.4103 106.658 108.489 105.522 100.677 98.0356 95.3642 90.794 88.5009 84.6239 79.1371 73.9602 76.8011 79.9902 81.3515 82.5221 83.1728 83.3278 83.2424 83.0764 82.9238 133.019 114.48 101.452 90.9941 85.1849 82.9497 77.8692 0.272151 81.9855 98.1214 108.078 109.91 106.428 100.394 98.5696 95.719 91.1451 88.6599 84.6415 77.6888 68.641 73.8012 78.6144 80.5867 82.5189 83.4028 83.3607 83.0975 82.7386 82.4031 132.55 112.666 101.057 90.4989 85.2094 82.6243 -0.707944 -0.0443862 85.2742 98.7127 109.52 111.368 107.23 99.3084 99.1724 96.3253 91.8403 88.9182 85.0544 77.9229 65.8203 71.5796 75.8766 79.5647 82.9467 84.3501 83.4248 83.1037 82.4235 81.5936 131.633 109.573 100.69 89.9099 85.3535 47.1471 -0.287337 -0.275997 69.8337 99.0213 110.945 112.824 107.758 96.8373 100.092 97.0923 92.8166 89.198 85.6805 79.7721 0.39842 0.349412 0.292077 0.269438 0.251471 0.257354 0.258088 0.249471 0.250812 0.247826 130.295 105.01 100.408 88.9985 81.8716 -0.216892 -0.294654 -0.503158 33.9026 99.1703 112.372 114.23 108.184 96.062 101.302 98.0231 93.6724 89.1931 85.3772 0.206747 0.578186 0.294573 0.279384 0.265667 0.257798 0.255999 0.254632 0.252743 0.25124 0.249816 128.783 96.8814 100.274 87.404 -0.153763 -0.21734 -0.294312 -0.654686 12.3572 100.561 114.05 115.549 108.702 98.1935 102.785 99.0261 94.4936 88.7199 6.72331 0.302506 0.640355 0.242787 0.254297 0.257337 0.257353 0.256696 0.25584 0.254017 0.251313 0.250303 127.419 92.4563 100.477 0.111562 -0.144392 -0.21271 -0.291902 -0.704198 4.1078 102.41 116.044 116.714 108.536 102.7 104.391 99.7428 95.3511 85.3214 0.185986 0.21997 0.223974 0.210771 0.227592 0.243486 0.252761 0.256025 0.256709 0.257188 0.253739 0.245278 123.981 79.4645 101.265 0.0679966 -0.142904 -0.204722 -0.286644 -0.802416 -5.73211 103.558 116.868 117.773 107.093 106.96 105.154 100.171 94.3095 0.41525 0.216817 0.138151 0.202068 0.182797 0.213931 0.223142 0.243629 0.252548 0.254114 0.269792 0.252086 0.250095 88.2511 88.2974 88.3635 88.4547 88.5774 88.7393 88.9502 89.222 89.5698 90.0112 90.5656 91.2518 92.0824 93.0563 94.1478 95.2989 96.4099 97.3129 97.7342 97.2835 95.4868 92.0144 87.5476 84.4458 84.3272 86.745 91.0842 96.3446 101.652 105.84 88.2217 88.2638 88.3245 88.4088 88.5226 88.6735 88.8707 89.1256 89.4526 89.8688 90.3937 91.0467 91.8428 92.7855 93.856 95.0051 96.1448 97.1291 97.7143 97.5386 96.1384 93.0841 88.6662 84.9327 84.0605 85.9024 89.8211 94.9466 100.297 104.933 88.1779 88.2203 88.2813 88.3656 88.4794 88.6301 88.8271 89.082 89.4096 89.8274 90.3553 91.0135 91.8174 92.771 93.8547 95.0178 96.1715 97.1699 97.7691 97.6049 96.2028 93.1117 88.6122 84.8332 84.0006 85.871 89.8063 94.9419 100.297 104.948 88.1118 88.1547 88.2159 88.3002 88.4137 88.5639 88.7605 89.0156 89.3443 89.7647 90.2976 90.964 91.7807 92.7522 93.8584 95.0456 96.2219 97.2397 97.8562 97.7047 96.2944 93.1444 88.5223 84.6766 83.907 85.8209 89.7835 94.9358 100.299 104.974 88.0231 88.0666 88.1282 88.2127 88.3259 88.4755 88.6716 88.9269 89.2571 89.6813 90.2212 90.899 91.7332 92.7297 93.8672 95.0878 96.2944 97.3365 97.9732 97.8366 96.4151 93.1869 88.3984 84.4612 83.7803 85.7521 89.7526 94.9282 100.303 105.013 87.9106 87.9551 88.0174 88.1022 88.2152 88.3643 88.56 88.8155 89.1478 89.5768 90.1254 90.8178 91.6743 92.7027 93.8799 95.1414 96.3848 97.457 98.119 98.001 96.5667 93.2408 88.2374 84.1828 83.6214 85.6647 89.7136 94.9191 100.308 105.063 87.7737 87.8194 87.8827 87.968 88.0811 88.2298 88.425 88.6811 89.0158 89.4504 90.0097 90.7193 91.6028 92.6703 93.8958 95.2054 96.4912 97.5996 98.2931 98.199 96.751 93.3074 88.0354 83.8357 83.4312 85.559 89.6664 94.9087 100.315 105.125 87.6122 87.6594 87.7238 87.8097 87.9228 88.0712 88.266 88.5226 88.8601 89.3012 89.8724 90.6022 91.5172 92.6316 93.9153 95.2798 96.6132 97.7638 98.4957 98.4316 96.97 93.3881 87.7873 83.4127 83.2116 85.4351 89.6113 94.8972 100.323 105.198 87.4259 87.4751 87.54 87.626 87.7397 87.8877 88.082 88.3391 88.6795 89.1278 89.7124 90.4647 91.4157 92.5856 93.9386 95.3648 96.7508 97.9498 98.7269 98.7001 97.2262 93.4851 87.4866 82.9046 82.965 85.2932 89.5482 94.8847 100.331 105.283 87.2133 87.2673 87.3296 87.4144 87.5303 87.6785 87.8722 88.1294 88.4728 88.9287 89.5279 90.3048 91.2958 92.5305 93.9664 95.4603 96.9037 98.1574 98.9871 99.0053 97.5225 93.6008 87.125 82.299 82.6947 85.1333 89.4775 94.8716 100.34 105.378 86.9678 87.1416 87.164 87.1724 87.294 87.4429 87.6357 87.8926 88.2387 88.7024 89.317 90.1205 91.1545 92.4641 93.9998 95.5659 97.0714 98.3867 99.2766 99.3494 97.8622 93.7384 86.6919 81.5803 82.4052 84.9553 89.3992 94.8582 100.348 105.484 86.7143 86.7851 86.841 86.9088 87.0307 87.1808 87.3718 87.6275 87.9758 88.447 89.0775 89.9092 90.9881 92.3822 94.0402 95.6797 97.253 98.6377 99.5956 99.7347 98.2492 93.9014 86.1734 80.7278 82.1028 84.7592 89.3136 94.845 100.356 105.6 86.4827 86.4906 86.5414 86.6214 86.7403 86.8904 87.0789 87.3328 87.6827 88.1607 88.807 89.6686 90.7928 92.2765 94.0889 95.7981 97.4472 98.9106 99.9445 100.163 98.6879 94.0943 85.5515 79.7156 81.7957 84.5445 89.2209 94.8323 100.362 105.723 86.1554 86.1903 86.2396 86.3133 86.4228 86.5682 86.7543 87.0074 87.3585 87.8415 88.5025 89.3961 90.5649 92.1262 94.144 95.9135 97.6528 99.2056 100.323 100.637 99.1836 94.3228 84.8034 78.512 81.4943 84.3106 89.1212 94.8207 100.366 105.854 85.8561 85.8839 85.9252 85.9845 86.0758 86.2137 86.3974 86.6515 87.0028 87.4871 88.1598 89.0885 90.3037 91.8699 94.1895 96.0127 97.8686 99.5235 100.732 101.158 99.7426 94.5942 83.8997 77.0819 81.2111 84.0564 89.0149 94.8109 100.366 105.996 85.5209 85.5481 85.5841 85.6244 85.6904 85.8304 86.0139 86.2676 86.6156 87.0946 87.7733 88.7406 90.0139 91.3776 94.1546 96.0752 98.0949 99.8656 101.171 101.73 100.373 94.9206 82.8079 75.3968 80.9639 83.7808 88.9021 94.8031 100.362 106.146 85.1592 85.1852 85.2282 85.342 92.6265 85.4511 85.6113 85.8591 86.1973 86.6604 87.3341 88.3427 89.7112 90.7705 93.8441 96.0778 98.3348 100.234 101.638 102.357 101.082 95.3236 81.5078 73.4375 80.7874 83.4821 88.7828 94.7976 100.351 106.299 84.785 84.8046 84.8314 84.8459 84.8134 84.987 85.1867 85.4279 85.7487 86.1795 86.8295 87.8803 89.413 90.6454 93.0412 96.0126 98.5954 100.631 102.132 103.04 101.873 95.8381 80.0084 71.1168 80.7062 83.159 88.6563 94.7945 100.332 106.462 84.4132 84.4244 84.44 84.4649 84.4992 84.5821 84.7504 84.9759 85.2727 85.6471 86.2404 87.3342 89.0796 90.7854 91.8381 95.9216 98.8899 101.06 102.65 103.785 102.75 96.4971 78.3705 68.2717 80.7271 82.81 88.5204 94.7935 100.301 106.629 84.0448 84.0439 84.0455 84.0513 84.0724 84.1567 84.3004 84.5081 84.7784 85.0586 85.5375 86.6748 88.6755 90.8306 90.7912 95.9137 99.2354 101.526 103.185 104.593 103.725 97.3137 76.7775 64.866 80.8558 82.4306 88.3713 94.7946 100.256 106.795 83.6737 83.6582 83.6449 83.6284 83.6202 83.687 84.1024 84.0489 84.2769 84.406 84.6664 85.8575 88.2319 90.7101 90.5229 96.1123 99.6501 102.033 103.728 105.469 104.801 98.2852 75.4739 61.2012 81.0925 82.0063 88.2084 94.7981 100.194 106.954 83.2839 83.2576 83.2412 83.2133 83.1787 83.1838 83.4504 83.6274 83.7706 83.6714 83.5051 84.8228 87.7673 90.5733 91.1561 96.5555 100.148 102.587 104.264 106.412 105.987 99.3926 74.455 57.9631 81.3789 81.5025 88.0603 94.8054 100.108 107.096 82.8377 82.8191 82.8341 82.8012 82.7024 82.6944 82.9527 83.2536 83.2726 82.8437 81.799 83.4515 87.294 90.5193 92.3019 97.1392 100.737 103.199 104.77 107.42 107.297 100.661 74.2641 17.9374 81.4676 80.8529 88.0505 94.8208 99.9939 107.207 82.2469 82.3032 82.4761 82.4381 82.1033 82.0082 82.4616 83.0278 82.8113 81.9123 79.117 81.6029 86.8516 90.5139 93.451 97.6791 101.426 103.882 105.203 108.478 108.744 102.136 75.9721 0.585245 80.8853 79.9485 88.3519 94.8513 99.8411 107.266 81.2246 81.5318 82.4369 82.45 81.1769 80.9725 81.878 83.1828 82.0428 81.2582 76.0953 80.0685 86.4909 90.5076 94.3638 98.1309 102.241 104.664 105.476 109.561 110.278 103.649 78.6845 1.39498 1.38208 81.4698 89.4052 94.9069 99.6364 107.238 0.249802 0.815012 3.40199 6.60066 9.97197 19.4148 37.3846 69.2844 74.704 82.1153 71.7542 79.2342 86.3313 90.4458 95.1731 98.8399 103.22 105.591 105.437 110.626 111.781 105.495 64.0874 0.425244 0.0106263 -0.488625 91.4786 94.9985 99.3632 107.069 0.248168 0.244048 0.239581 0.230915 0.233298 0.235022 0.231067 0.219435 0.216458 0.221544 0.29505 76.5925 86.3726 90.222 96.092 99.9093 104.38 106.764 104.864 111.611 113.127 106.701 38.3183 0.240257 0.0501635 0.118904 93.9396 95.1202 99.0144 106.76 0.256761 0.255965 0.240814 0.240062 0.231061 0.241528 0.228527 0.222851 0.215262 0.20641 0.225546 0.257947 87.2946 89.508 97.3103 100.783 105.706 108.371 103.623 112.354 114.412 106.535 -3.39888 0.176355 0.0628079 0.0799685 3.73255 95.1866 98.5574 106.661 0.247211 0.245479 0.241476 0.236388 0.228507 0.221729 0.217869 0.21877 0.203987 0.165221 0.141118 0.138879 0.134099 87.9603 99.9359 101.042 107.199 110.367 103.089 112.546 115.442 106.581 2.46297 0.147378 0.0601344 0.0558428 0.161591 95.0909 97.8508 106.867 0.242032 0.239473 0.240108 0.235858 0.223925 0.207021 0.202956 0.207467 0.183853 0.131922 0.089162 0.0691358 0.114267 -1.6495 105.204 100.74 108.834 111.477 105.013 112.734 115.937 105.987 -0.548357 0.114346 0.0522724 0.0446235 0.141284 -0.405753 96.6647 106.378 118.114 101.145 100.012 0.0623452 -0.138887 -0.197433 -0.277678 -0.869657 -8.60886 104.889 116.376 118.475 105.851 108.47 105.53 99.8 30.7769 0.463707 0.165134 0.0381939 0.149537 0.164117 0.183432 0.205789 0.233635 0.247623 0.250226 0.250919 0.24734 0.277338 115.327 99.0559 59.3194 0.0597044 -0.135135 -0.192522 -0.271311 -0.890455 -0.316735 109.28 116.711 119.147 105.752 107.702 105.041 99.5916 0.590489 0.509035 0.128246 0.18854 0.135008 0.152232 0.170608 0.196656 0.226428 0.243035 0.253677 0.247869 0.241549 1.25548 111.064 9.50451 -0.0558779 0.0523153 -0.130381 -0.18733 -0.265335 -0.902012 0.335807 113.581 118.009 120.41 106.896 106.311 106.082 -3.65185 0.484136 0.809715 0.118094 0.161779 0.123813 0.1403 0.15755 0.185283 0.217887 0.23669 0.263939 0.244045 0.238304 4.11062 114.206 0.202203 -0.00343544 0.0462348 -0.124804 -0.181831 -0.263867 -0.840856 -0.133705 116.89 118.527 121.286 109.504 104.816 108.444 0.437257 0.43856 5.40429 0.0514164 0.156223 0.116597 0.128917 0.145135 0.172559 0.207914 0.229271 0.236924 0.238951 0.2355 0.242966 109.082 0.250456 0.00491824 0.0392773 -0.118706 -0.175963 -0.271859 -0.254224 0.00995067 119.706 118.598 120.339 112.974 105.517 -0.720784 0.42938 0.0760423 4.69744 0.028292 0.100337 0.111372 0.119413 0.160657 0.158689 0.196762 0.218456 0.227549 0.230823 0.229802 0.231595 6.71176 0.0891631 0.0110716 0.0319371 -0.112339 -0.169664 -0.231811 0.210102 0.0419204 103.308 129.013 120.898 116.599 98.9746 0.136499 0.45161 0.249182 0.31868 0.0273859 0.0870028 0.108086 0.173152 0.136364 0.14751 0.185214 0.207871 0.216708 0.219592 0.218932 0.217676 -0.0274207 0.0967362 0.0158299 0.0244221 -0.105903 -0.162889 -0.228077 -0.155706 0.0220726 11.0206 121.202 123.67 119.818 0.17013 0.19735 0.38213 0.089257 0.239392 0.0497252 0.0917656 0.110828 0.210794 0.119041 0.137543 0.173724 0.191607 0.202467 0.20666 0.206461 0.205189 -0.0282943 0.0881562 0.0193113 0.0171523 -0.0994929 -0.155596 -0.218757 -0.1537 0.00880343 0.154573 116.966 124.158 118.279 0.122877 0.207128 0.249481 0.173777 0.255043 0.0856682 0.100474 0.115005 0.122553 0.116538 0.134814 0.161789 0.228485 0.190698 0.193197 0.193202 0.192057 -0.0260635 0.0900532 0.0217611 0.0104787 -0.0931196 -0.147721 -0.201792 -0.0752402 -0.0141852 0.156505 10.5996 125.137 -0.722702 0.0738604 0.202717 0.212456 0.205955 0.438834 0.113607 0.10956 0.113341 0.113923 0.11939 0.133377 0.161808 0.167183 0.176456 0.17844 0.178691 0.178172 -0.0237385 0.106363 0.0233959 0.00475323 -0.0867934 -0.13922 -0.187345 -0.0715181 -0.0900083 0.042965 0.234975 0.0444334 -0.397485 0.105491 0.194902 0.20535 0.161778 0.14537 0.129893 0.118955 0.117321 0.119541 0.125525 0.134175 0.144755 0.154164 0.159397 0.161261 0.162044 0.162824 -0.0215364 0.105702 0.0245861 0.000164794 -0.0805266 -0.130054 -0.167398 -0.0596193 0.390113 -0.087875 0.150724 0.0830642 -0.303662 0.0894863 0.185137 0.199488 0.150149 0.142812 0.139323 0.127661 0.122335 0.123976 0.131033 0.157023 0.138567 0.141083 0.142209 0.143344 0.144287 0.146284 -0.0193869 0.097537 0.0253037 -0.00329552 -0.0743543 -0.120236 -0.145632 -0.0318265 -0.0565404 -0.197382 0.111447 0.0983508 -0.124401 0.0958842 0.178595 0.19132 0.15389 0.17093 0.148664 0.136617 0.127391 0.125369 0.134925 0.151381 0.131997 0.129996 0.126939 0.129215 0.136899 0.131488 -0.017301 0.104761 0.0255535 -0.00576003 -0.0683101 -0.109846 -0.124242 -0.00828114 0.0222115 -0.177971 0.0615426 0.0687034 -0.0391748 0.0839446 0.163108 0.175907 0.147364 0.158603 0.155786 0.143657 0.138996 0.394681 0.128832 0.130764 0.125374 0.123991 0.114797 0.113312 0.116446 0.119576 -0.0152046 0.0674223 0.0253038 -0.00743217 -0.0623907 -0.0990001 -0.0989964 0.0106442 0.133317 -0.118468 0.075348 0.0139173 0.0112493 0.0909317 0.159789 0.186238 0.142867 0.158137 0.159291 0.149701 0.276553 0.149678 0.149233 0.134278 0.123586 0.113299 0.107447 0.105555 0.10716 0.111316 -0.0128865 0.118 0.0245481 -0.00847903 -0.0565793 -0.0878744 -0.0832172 0.0314148 0.133342 -0.0618929 0.029659 0.0222215 0.0116056 0.0561538 0.135015 0.127543 0.134369 0.161556 0.160678 0.161942 0.158066 0.161029 0.149216 0.138855 0.125162 0.117875 0.10788 0.106221 0.117458 0.111485 -0.0103605 0.102803 0.0232889 -0.00902651 -0.0508497 -0.076679 -0.0653339 0.0458212 0.132302 -0.0662202 -0.0962559 0.203751 0.0137952 0.0394635 0.0819246 0.102017 0.13809 0.164945 0.159745 0.158449 0.159239 0.161486 0.15316 0.1391 0.126375 0.116606 0.111107 0.109257 0.109562 0.112888 -0.00809809 0.0799618 0.021531 -0.00916986 -0.0451896 -0.0656498 -0.0490402 0.0441064 0.105159 -0.0795536 -0.0581913 0.263783 0.0760929 0.0914823 0.0476399 0.077319 0.105193 0.1318 0.146769 0.151277 0.150309 0.148325 0.144527 0.138637 0.124546 0.117314 0.114075 0.112343 0.112728 0.115482 -0.00627729 0.0655096 0.0193167 -0.00898923 -0.039612 -0.0550318 -0.0354157 0.0394418 0.0881307 -0.0491014 -0.0498316 0.144451 0.0217329 0.00401664 0.0145748 0.0563946 0.0901194 0.117833 0.151826 0.133799 0.144714 0.133899 0.132196 0.127179 0.12161 0.133297 0.12701 0.110512 0.108152 0.105573 -0.00463177 0.0583909 0.0167964 -0.00855764 -0.0341597 -0.0450579 -0.0243504 0.0383148 0.0680681 -0.0248817 0.237535 0.161203 0.0199777 -0.0322272 -0.0324264 0.00750456 0.0576183 0.0899746 0.128509 0.113768 0.117814 0.120475 0.12098 0.119102 0.11878 0.115204 0.11121 0.108182 0.106643 0.105474 -0.00200812 0.0411573 0.0141417 -0.00794394 -0.028899 -0.0359366 -0.0156416 0.0350459 0.0577236 -0.174613 0.125291 0.908262 0.00998405 -0.0601756 -0.0763312 -0.0370202 0.0228843 0.06504 0.0858469 0.0969198 0.103726 0.108139 0.11175 0.109229 0.110906 0.109134 0.107901 0.109153 0.108622 0.10819 0.00114103 0.0299397 0.0115195 -0.00721427 -0.0239133 -0.0278428 -0.00866282 0.0307154 0.053177 0.026323 0.111687 0.81967 -0.00590433 -0.0706567 -0.101136 -0.0698352 -0.00540203 0.0436412 0.0691408 0.0825057 0.0905851 0.0955873 0.098019 0.210932 0.101574 0.10108 0.101858 0.103392 0.105713 0.109036 0.0045901 0.0271177 0.00897696 -0.00642592 -0.0192931 -0.0208913 -0.00439649 0.0263407 0.0554128 0.0599772 0.0919685 0.0665973 -0.000641688 -0.0599678 -0.0999994 -0.075944 -0.0155313 0.0327577 0.0669139 0.0725676 0.0800868 0.0846734 0.0871083 0.0887919 0.0911303 0.0929086 0.0944787 0.0960852 0.0977268 0.0993159 0.00860278 0.0268038 0.00645361 -0.00562171 -0.015126 -0.0151449 -0.0016062 0.0214381 0.035813 0.0472586 0.066813 0.0465126 0.0332641 -0.0431792 -0.0691244 -0.0498198 -0.0019282 0.0366753 0.0584254 0.0741367 0.0736219 0.0762816 0.0787248 0.0810141 0.083185 0.0850855 0.0867538 0.0883038 0.0898112 0.0912988 0.0128754 0.026758 0.00386248 -0.00482107 -0.0114833 -0.010638 0.000884994 0.0149043 0.0182317 0.0230113 0.0380693 0.0283773 0.0444371 -0.0247581 -0.0370405 -0.000623027 0.0221984 0.0456605 0.0599252 0.0721432 0.0747714 0.0675115 0.0689606 0.0705521 0.0724289 0.0743256 0.0760504 0.0775318 0.0787567 0.0797411 0.0151838 0.02791 0.00132553 -0.00401155 -0.00840819 -0.00729539 0.00039304 0.00891341 -0.0097546 -0.0227741 0.00779704 0.0129086 0.00380564 -0.0068009 -0.00263999 0.0127968 0.0308974 0.0459146 0.0561855 0.0619492 0.0836878 0.0821061 0.0547484 0.0549224 0.0555678 0.0568887 0.0590474 0.0605497 0.0617056 0.0624569 0.0104513 -0.0216895 -0.000386669 -0.00316839 -0.00590728 -0.00501028 -0.00214021 -0.00504733 -0.0472184 -0.0659789 -0.0259007 0.000634519 0.00347012 0.0016039 0.00837675 0.0170081 0.0284437 0.0926862 0.0447231 0.0425945 0.0407537 0.0388875 0.0358543 0.0336873 0.0326128 0.0397223 0.0344475 0.0354774 0.0366905 0.0365453 0.004706 -0.00340962 -0.000891663 -0.00230775 -0.00393918 -0.00355072 -0.00375678 -0.012235 -0.0562519 -0.127284 -0.0492966 -0.00748396 0.0021282 0.0193623 0.0831035 0.0169377 0.0256516 0.0412403 0.029108 0.171292 0.0432906 0.0291287 0.0194533 0.010142 0.0134541 0.00503857 0.0057332 0.00738729 0.00919319 0.0153597 0.00167334 0.00109202 -0.000542566 -0.00149436 -0.0024218 -0.00252693 -0.00429119 -0.0135911 0.0082994 -0.0804872 -0.0452247 -0.0122329 -0.00152677 0.00373341 0.00772891 0.0158777 0.00910397 0.0103752 0.0123288 0.0158096 0.0182148 0.0335849 0.0234876 -0.0188521 -0.0150123 -0.0106498 -0.00722181 -0.00438447 0.00571102 0.0220401 0.000452853 0.00152865 -0.000186841 -0.000793746 -0.00125696 -0.00159172 -0.00354784 -0.0109715 0.00623805 0.0439715 -0.0305665 -0.0163407 -0.00849629 -0.00312545 0.000537549 0.00218406 0.00666702 0.00144958 0.00806308 0.000527634 0.00131337 -0.00170364 0.00962347 -0.00214344 -0.00218135 -0.0032449 -0.00550804 -0.00452726 -0.00696626 -0.00605191 6.66673e-05 0.000712705 -2.02316e-05 -0.00024214 -0.000371189 -0.00056717 -0.00154742 -0.00412514 -0.00518847 -0.00754463 -0.0226379 -0.0235989 -0.0188403 -0.0132853 -0.00894712 -0.00643015 -0.00578683 -0.00502018 -0.0079001 -0.00789405 -0.00662285 -0.00459072 -0.00258173 -0.000847132 0.00198924 0.00158555 0.00161837 0.00764552 0.00704902 0.0021162 0.211787 0.23141 0.243423 0.455374 0.225273 0.709034 0.189182 0.197145 0.1694 0.111262 0.0663939 0.0593661 0.0749027 0.00572201 113.076 101.153 109.776 110.929 107.478 112.994 115.902 105.334 -0.460354 0.0715799 0.0455285 0.0404455 0.130554 -0.323698 2.84282 105.151 -0.212676 0.235199 0.250819 0.274644 0.223603 0.62467 0.165523 0.191598 0.162199 0.104598 0.0578875 0.0474381 0.0624257 0.127424 2.20031 100.079 109.871 112.608 108.744 113.407 116.682 107.529 -0.403662 0.0411212 0.0417151 0.039027 0.122627 -0.27719 0.0858632 104.133 -0.241796 0.230806 0.245227 0.326337 0.203652 0.231431 0.177731 0.186467 0.157018 0.0951538 0.054618 0.0505122 0.0708588 0.181317 0.160548 97.6514 109.391 111.378 110.185 113.832 118.468 100.076 -0.355331 0.0159976 0.0380526 0.0381142 0.113409 -0.234871 0.060497 11.8294 0.225602 0.218085 0.213802 4.13276 0.185445 0.211365 0.186699 0.180562 0.153749 0.0975232 0.0579247 0.0563484 0.0861418 0.198076 0.376799 2.19358 109.1 112.759 111.781 114.731 120.705 27.7523 -0.126815 0.00271268 0.0346438 0.0375519 0.103321 -0.199601 0.0464512 0.044147 0.226875 0.21258 0.19674 3.93929 0.181898 0.201993 0.187534 0.174405 0.152201 0.105579 0.0687078 0.0656982 0.0860595 0.11581 0.0959372 -0.0465046 107.903 113.617 110.814 114.972 121.178 2.64453 -0.0676539 -3.40611e-05 0.0315164 0.0371693 0.0928581 -0.169128 0.03798 0.0382329 0.213644 0.206322 0.198553 0.19775 0.180717 0.21767 0.188338 0.168758 0.151984 0.116904 0.0849874 0.0793847 0.0914795 0.109835 0.0372866 -0.112854 0.421286 114.348 109.364 115.203 119.416 -0.324741 -0.00211194 0.000538099 0.0286991 0.0368087 0.0824602 -0.142406 0.0311932 0.0369844 0.202122 0.197956 0.193017 0.187555 0.182539 0.185905 0.171845 0.164804 0.15265 0.127961 0.103321 0.0916195 0.0963223 0.109545 0.0504519 -0.0485782 0.449864 11.5522 110.131 116.178 120.067 -0.19256 0.0464713 -0.00180043 0.0261819 0.0363205 0.072451 -0.118683 0.024923 0.0325839 0.190799 0.187412 0.183562 0.181545 0.178063 0.176206 0.168704 0.161737 0.153106 0.135287 0.11727 0.104528 0.108883 0.0971847 0.0657001 0.0103182 0.697029 -0.0520149 -0.142584 76.2594 -0.332076 -0.110592 0.039963 -0.00722023 0.0239273 0.0355946 0.0630596 -0.0976339 0.0188846 0.0305545 0.177595 0.176237 0.189482 0.17689 0.170627 0.167702 0.162193 0.174089 0.152893 0.138953 0.127564 0.113471 0.0989385 0.0866783 0.0664857 0.120133 0.218845 -0.0334638 -0.145268 -0.203265 -0.313482 -0.221179 0.195961 -0.0105931 0.0218984 0.0345571 0.0544576 -0.0790605 0.0134421 0.0289268 0.163542 0.164423 0.166249 0.176313 0.161141 0.160102 0.156578 0.152442 0.151031 0.160884 0.129398 0.173696 0.0985803 0.0826267 0.0651229 0.0994657 0.163639 -0.0154321 -0.149819 -0.207759 -0.337897 -0.304364 -0.0262485 -0.0118124 0.0200377 0.0331688 0.0467251 -0.0625765 0.00878671 0.0268377 0.148175 0.150006 0.151433 0.151584 0.152023 0.153712 0.151249 0.148062 0.14382 0.137687 0.126621 0.177327 0.0996464 0.0782325 0.0622745 0.0530517 0.0337091 -0.00663422 -0.153409 -0.18102 -0.303071 -0.363939 -0.0512866 -0.0122422 0.018301 0.031428 0.0398594 -0.048133 0.00498803 0.0245158 0.134233 0.137421 0.14036 0.14329 0.14671 0.151949 0.146175 0.143821 0.140178 0.133298 0.13647 0.11698 0.0995431 0.0744428 0.060281 0.021583 0.0104664 0.0177337 -0.15422 -0.184082 -0.250548 -0.461047 -0.0523355 -0.0123454 0.0166535 0.0293659 0.0338223 -0.0358258 0.00214605 0.0217295 0.12301 0.127288 0.131389 0.135988 0.140316 0.149866 0.167835 0.139099 0.139279 0.139264 0.121391 0.114698 0.117033 0.0723905 0.0516797 0.0220655 0.00149294 0.0281686 -0.0869624 -0.176227 -0.248702 -0.529044 -0.0683887 -0.0120234 0.0150708 0.0270442 0.0285468 -0.0258465 0.00018218 0.0186749 0.115779 0.120216 0.125723 0.134991 0.135861 0.142876 0.136538 0.137693 0.135872 0.12844 0.120278 0.148385 0.120924 0.0716635 0.0441648 0.015753 0.00431297 0.309029 -0.075737 -0.151938 -0.188238 -0.473671 0.0430499 -0.0096318 0.0135275 0.0245376 0.0239682 -0.0182259 -0.0010376 0.0155723 0.115123 0.121526 0.125693 0.129658 0.133452 0.13568 0.136084 0.137285 0.137044 0.127159 0.113228 0.103161 0.11477 0.0726093 0.131031 0.00650991 -0.0184569 0.232738 -0.0872157 -0.201844 -0.142393 -0.403097 0.0420629 -0.00596253 0.0119951 0.0219242 0.0200334 -0.0126361 -0.00174051 0.0126055 0.117175 0.121887 0.127938 0.13269 0.137818 0.13604 0.134615 0.136687 0.158376 0.126434 0.108627 0.0971427 0.117088 0.117214 0.046001 -0.00259764 -0.0299149 0.0173853 -0.0727902 -0.10551 -0.114522 -0.327977 0.0196725 -0.00400932 0.0104425 0.0192714 0.0166817 -0.00860398 -0.002188 0.00991002 0.120785 0.129111 0.136126 0.16664 0.143927 0.140254 0.153381 0.193802 2.75734 0.115401 0.104616 0.0939001 0.0763783 0.148601 0.038976 -0.0111915 -0.0419478 -0.0146098 0.892704 -0.15792 -0.0780899 -0.17928 -0.0271586 -0.0035567 0.00883979 0.0166323 0.0138432 -0.0057116 -0.00236791 0.00756248 0.100468 0.0873345 0.075628 0.0754238 0.0955489 0.154163 0.187761 0.126272 0.117063 0.110488 0.104913 0.0932254 0.0770171 0.0510205 0.0356691 -0.0143643 -0.042413 -0.0689225 1.15344 -0.0972168 -0.143509 -0.094481 -0.0223365 -0.00378496 0.00716222 0.0140475 0.0114367 -0.00360341 -0.00233108 0.00560874 0.104752 0.104618 0.106897 0.111847 0.115976 0.119599 0.125032 0.119036 0.120182 0.117334 0.109405 0.0948898 0.075285 0.0493746 0.0253632 -0.0178009 -0.0527171 -0.0748942 1.0145 0.189864 -0.165903 -0.0588781 -0.0169228 -0.00454107 0.00539563 0.0115503 0.00938334 -0.00205754 -0.0020669 0.00406091 0.108478 0.111249 0.11482 0.118899 0.12287 0.126705 0.129802 0.131033 0.128777 0.123416 0.112721 0.094617 0.0704246 0.0412383 0.0095978 -0.0244434 -0.0527676 -0.0695153 0.634206 -0.0386248 -0.137233 -0.0150654 -0.0195821 -0.00586949 0.00354553 0.00916923 0.00761119 -0.000943873 -0.00160828 0.00289089 0.120872 0.113256 0.116148 0.119774 0.123768 0.127763 0.13305 0.133803 0.131085 0.123536 0.109181 0.0870403 0.058141 0.0244246 -0.00914308 -0.0341705 -0.0582899 -0.075529 0.611103 -0.0441013 -0.0759237 -0.0751932 -0.023829 -0.00764448 0.00164246 0.00693205 0.0060613 -0.00017295 -0.0011039 0.00204828 0.101205 0.104323 0.107605 0.111198 0.11514 0.120529 0.124569 0.123884 0.120529 0.109989 0.0911414 0.0686088 0.0315668 -0.00764659 -0.0395457 -0.0593441 -0.0706416 -0.0750299 0.0902698 -0.0201053 -0.0549944 -0.0644781 -0.0269556 -0.00959523 -0.000258139 0.00486834 0.00469237 0.000321513 -0.000635336 0.00147087 0.0927693 0.094352 0.0961722 0.0981963 0.100305 0.102434 0.103195 0.10092 0.0928137 0.0757656 0.0502735 0.0195772 0.00908723 -0.0380709 -0.0969717 -0.0980841 -0.0892353 -0.0839342 0.205342 0.664117 0.0227579 -0.0544179 -0.0284867 -0.0114548 -0.00206511 0.00301207 0.00348315 0.000592772 -0.000248055 0.00109083 0.0805132 0.0811424 0.0816142 0.0817828 0.0813725 0.0796852 0.075193 0.066108 0.0582236 0.0187948 -0.0188809 -0.0747928 -0.135536 -0.186023 -0.189179 -0.151164 -0.114098 -0.0730428 0.0527964 -0.0325606 -0.0563993 -0.0485993 -0.0290293 -0.0130652 -0.00367219 0.0014023 0.00242843 0.000688345 3.57002e-05 0.000840279 0.0628151 0.0627677 0.0620991 0.0603644 0.0567805 0.0501706 0.0381372 0.0232539 0.00896459 -0.0415311 -0.107066 -0.196384 -0.27698 -0.336381 -0.332266 -0.249059 -0.135027 -0.0642776 -0.0209918 -0.0128785 -0.0368627 -0.0471076 -0.0282764 -0.0143582 -0.00494569 9.31318e-05 0.00153319 0.000653346 0.000208415 0.000659915 0.0377018 0.0382584 0.038004 0.0365371 0.0332062 0.0268355 0.022871 0.0463615 -0.0416811 -0.0864353 -0.124311 -0.224267 -0.358613 -0.42834 -0.417248 -0.276491 -0.15969 -0.0528733 -0.00624295 0.314418 -0.0148462 -0.0488765 -0.00847598 -0.0153086 -0.00571603 -0.000863844 0.000809372 0.000530198 0.00027412 0.000510946 0.011637 0.0119735 0.0118722 0.0104451 0.00682423 -0.000304417 -0.0129066 -0.0323066 -0.058138 -0.102331 -0.158146 -0.247115 -0.24128 -0.393805 -0.367984 -0.272972 -0.141573 -0.0193669 0.0100599 0.0223967 0.219731 -0.062861 -0.0333145 -0.0147136 -0.00577626 -0.00142056 0.000270004 0.000361259 0.000254049 0.000377996 0.050697 0.0049562 0.00393484 0.00197126 -0.00139761 -0.00675416 -0.015117 -0.0275804 -0.0463257 -0.0746829 -0.115767 -0.168365 -0.220878 -0.243488 -0.226546 -0.170109 -0.0865219 -0.00711071 0.00435501 -0.0192431 3.0662 -0.0425417 -0.0268744 -0.0108875 -0.00496165 -0.00154359 -7.69507e-05 0.000181538 0.00017635 0.000256225 -0.00314627 0.000547381 -0.000440123 -0.00150027 -0.00679626 -0.00820272 -0.00916036 -0.0129235 -0.0207976 -0.0352029 -0.0559661 -0.0809029 -0.102198 -0.109168 -0.0916906 -0.0590279 -0.0214504 0.0205521 0.00932881 -0.00271053 0.119374 -0.0133621 -0.0127505 -0.00750635 -0.00334255 -0.00125268 -0.000241853 1.34944e-05 6.22242e-05 0.000140227 0.0019977 -0.0015113 -1.5981e-05 0.0201179 0.0761815 -0.00459582 -0.00273411 -0.00239643 -0.00550845 -0.0123693 -0.0230533 -0.0382139 -0.0416862 -0.0404916 -0.023765 0.12833 0.0125685 0.0321666 0.00976656 0.0067462 0.0214995 -0.00123026 -0.0053086 -0.00222959 -0.0012784 -0.000659879 -0.000265425 -0.000140462 -7.8484e-05 2.10371e-05 120.848 110.632 100.085 92.3728 86.8144 83.1653 82.0787 84.4851 88.9446 92.8393 95.1136 95.9093 95.6861 94.8844 93.8309 92.7352 91.7176 90.8376 90.1153 89.5459 89.1114 88.7894 88.5575 88.3966 88.2908 88.2276 88.1968 88.1903 88.2016 88.2257 118.231 107.491 97.8553 90.753 85.6858 82.5768 82.3367 85.539 90.088 93.6072 95.4632 95.946 95.5312 94.6343 93.5498 92.4611 91.471 90.6275 89.9432 89.409 89.0048 88.7076 88.4956 88.3504 88.257 88.2032 88.1796 88.1784 88.1937 88.2205 118.285 107.468 97.8304 90.7315 85.6626 82.5243 82.2388 85.4754 90.1033 93.6657 95.5285 96.0006 95.5711 94.6595 93.5605 92.4575 91.4546 90.6006 89.9089 89.37 88.9634 88.6654 88.4535 88.3088 88.2161 88.163 88.1401 88.1395 88.1553 88.1824 118.376 107.434 97.7898 90.6967 85.6243 82.4375 82.0736 85.3593 90.1144 93.7529 95.6348 96.0941 95.6421 94.7069 93.5838 92.4569 91.4318 90.5598 89.855 89.308 88.8971 88.5975 88.3856 88.2418 88.1502 88.0985 88.0768 88.0773 88.0939 88.1217 118.508 107.389 97.7333 90.6484 85.5713 82.3178 81.8411 85.1941 90.1266 93.8699 95.7801 96.2247 95.7437 94.7766 93.6201 92.4594 91.4031 90.5054 89.7823 89.2237 88.8068 88.5049 88.2929 88.1503 88.0604 88.0104 87.9903 87.9922 88.0099 88.0385 118.68 107.334 97.6605 90.5866 85.5043 82.1659 81.5374 84.9765 90.1418 94.0188 95.9647 96.3912 95.8736 94.8657 93.6667 92.4631 91.3669 90.4364 89.6896 89.1164 88.6918 88.3872 88.1754 88.0342 87.9463 87.8983 87.8798 87.8832 87.9021 87.9319 118.894 107.269 97.5708 90.5112 85.424 81.9832 81.1572 84.7017 90.1609 94.2016 96.1902 96.5937 96.0304 94.9725 93.7222 92.467 91.3224 90.3515 89.5756 88.9845 88.5511 88.2436 88.0324 87.8932 87.8076 87.7615 87.7447 87.7495 87.7698 87.8008 119.152 107.196 97.4636 90.4224 85.3314 81.7717 80.694 84.3638 90.1854 94.4207 96.4587 96.8332 96.2141 95.0966 93.7862 92.4708 91.2687 90.2493 89.4385 88.8264 88.383 88.0729 87.863 87.7267 87.644 87.6001 87.5849 87.5909 87.6126 87.6451 119.456 107.115 97.3381 90.3201 85.2277 81.5339 80.14 83.9553 90.2171 94.6791 96.7726 97.1108 96.425 95.238 93.859 92.4745 91.2051 90.1281 89.2759 88.6394 88.1852 87.8733 87.6662 87.5343 87.4556 87.4146 87.4011 87.4081 87.4306 87.4645 119.81 107.028 97.1932 90.2044 85.1139 81.2734 79.4852 83.4667 90.2586 94.9802 97.1348 97.4282 96.6636 95.3971 93.9407 92.478 91.1307 89.9856 89.0848 88.4203 87.955 87.6427 87.4408 87.3155 87.2427 87.2059 87.1946 87.2019 87.224 87.2583 120.214 106.937 97.0277 90.0751 84.9916 80.9947 78.718 82.8867 90.3127 95.3278 97.5486 97.7871 96.9301 95.5737 94.0314 92.4815 91.0445 89.8193 88.8616 88.1653 87.6888 87.3786 87.1849 87.0696 87.0056 86.9752 86.9672 86.9746 86.9936 87.0229 120.651 106.843 96.8399 89.932 84.8621 80.7038 77.825 82.2011 90.3835 95.7261 98.0178 98.1895 97.225 95.7677 94.1311 92.4853 90.9458 89.6261 88.6017 87.8693 87.3821 87.0774 86.8967 86.7957 86.7442 86.7231 86.7204 86.7291 86.7453 86.7681 121.109 106.748 96.6277 89.7748 84.7266 80.4086 76.7912 81.3936 90.4757 96.1798 98.5473 98.6378 97.5484 95.9789 94.2396 92.4898 90.8339 89.4024 88.2997 87.5261 87.0296 86.7354 86.5736 86.4924 86.458 86.4496 86.455 86.4668 86.4814 86.5039 121.575 106.656 96.3884 89.6028 84.5864 80.1188 75.6016 80.4453 90.5951 96.6937 99.1412 99.1346 97.9004 96.2067 94.3563 92.4953 90.7086 89.1441 87.9491 87.1277 86.6241 86.3476 86.2126 86.158 86.1456 86.1535 86.1697 86.1876 86.2044 86.2471 122.038 106.574 96.1188 89.415 84.4419 79.8465 74.2446 79.3379 90.7493 97.2727 99.8048 99.6828 98.2805 96.4502 94.4803 92.5016 90.5703 88.8467 87.542 86.6638 86.1569 85.9081 85.8106 85.791 85.8058 85.8323 85.8599 85.8849 85.9072 85.929 122.486 106.513 95.8149 89.2099 84.2931 79.6069 72.7261 78.0506 90.9481 97.9212 100.544 100.286 98.6879 96.7079 94.6101 92.5063 90.4191 88.5057 87.0685 86.1205 85.6163 85.4103 85.3644 85.3904 85.4388 85.4858 85.5241 85.5541 85.5788 85.6016 122.905 106.481 95.4722 88.9852 84.1382 79.4168 71.0745 76.5489 91.2066 98.6444 101.364 100.947 99.1206 96.9773 94.7446 92.5014 90.249 88.1156 86.5154 85.4782 84.9873 84.8466 84.8716 84.9571 85.0475 85.118 85.1664 85.1993 85.224 85.2458 123.288 106.469 95.0852 88.7376 83.9732 79.2938 69.2583 74.7939 91.5474 99.4526 102.272 101.672 99.5753 97.2546 94.8845 92.4674 90.0214 87.6693 85.8661 84.7087 84.2495 84.2102 84.3312 84.4934 84.6379 84.7374 84.7967 84.8317 84.855 84.8739 123.576 106.463 94.6474 88.4624 83.7899 79.2564 67.1552 72.7578 92.0073 100.35 103.271 102.463 100.045 97.5323 95.0375 92.3728 89.6887 87.1962 85.1057 83.7693 83.3754 83.4986 83.7472 84.0046 84.2212 84.3601 84.433 84.4692 84.4889 84.5024 123.71 106.459 94.151 88.1531 83.574 79.3168 64.6213 70.4275 92.6442 101.334 104.366 103.326 100.518 97.7975 95.2217 92.2027 89.3661 86.7308 84.2216 82.5971 82.33 82.7228 83.1384 83.5086 83.8179 84.0083 84.0941 84.1252 84.1341 84.1364 123.607 106.459 93.5856 87.7981 83.3038 79.4721 61.6844 67.8127 93.5159 102.4 105.556 104.264 100.97 98.0387 95.4815 92.0023 89.178 86.2848 83.2126 81.1069 81.063 81.892 82.5321 83.0533 83.4658 83.703 83.7893 83.801 83.7872 83.7709 123.142 106.463 92.9376 87.385 82.9534 79.6896 58.4119 64.947 94.6276 103.558 106.838 105.28 101.36 98.2704 95.828 91.8689 89.106 85.9165 82.1047 79.0991 79.3935 80.9487 81.9011 82.6594 83.2019 83.4646 83.5248 83.4925 83.4373 83.3932 122.152 106.467 92.1895 86.7165 82.8308 79.8958 7.36046 63.6362 95.9137 104.829 108.201 106.374 101.62 98.5228 96.1113 91.9096 89.1408 85.7105 80.9476 75.8294 76.5375 79.8226 81.2069 82.3332 83.0672 83.3306 83.3162 83.1936 83.06 82.9715 120.414 106.469 91.3177 86.3335 82.1794 80.1011 0.180709 74.8827 97.4505 106.257 109.625 107.542 101.574 98.8099 96.4546 92.2071 89.3039 85.7365 79.9656 71.3548 72.2839 78.4952 80.3065 82.1438 83.1925 83.3681 83.1892 82.9032 82.6084 82.4359 117.568 106.477 90.2897 86.177 81.8499 76.19 -0.117182 10.2853 99.1793 107.852 111.077 108.767 100.791 99.1291 97.079 92.776 89.5834 85.9807 80.0041 68.6897 68.7238 77.0022 78.4083 82.2157 83.9373 83.5816 83.1578 82.6718 81.9781 81.5817 113.15 106.513 89.0517 86.4978 79.9743 -0.315274 -0.330884 10.3473 101.053 109.556 112.515 109.993 98.7526 99.3156 97.8572 93.5142 89.9401 86.365 81.8938 59.7003 1.59401 0.313949 0.273311 6.32402 20.097 27.1149 33.0713 37.3115 39.6999 42.9687 107.008 106.613 87.4632 87.5486 -0.144479 -0.296971 -0.548999 -2.97079 101.531 111.137 113.887 111.097 97.73 99.9216 98.7806 94.3343 90.495 86.6563 80.8853 0.314101 0.317428 0.290459 0.270466 0.258711 0.255654 0.255079 0.252634 0.251202 0.249886 0.248735 93.2788 106.842 85.0864 10.9821 -0.159514 -0.273064 -0.662244 -1.51526 102.01 112.098 115.131 112.01 99.1456 101.268 99.6278 95.2999 91.5601 87.4386 0.332554 0.52785 0.243635 0.260556 0.260357 0.258347 0.256831 0.255857 0.254305 0.252117 0.251775 0.250204 86.51 107.36 78.398 -0.127801 -0.171238 -0.257495 -0.518778 -1.4049 103.573 113.696 116.138 112.53 101.754 103.905 99.8918 96.6399 91.323 0.380873 0.257955 0.242188 0.21406 0.230071 0.244743 0.253202 0.25613 0.256669 0.256076 0.257839 0.247366 0.269351 29.4498 108.345 -0.438944 -0.119296 -0.174344 -0.250737 -0.558165 -1.33881 105.744 114.863 116.755 112.475 103.849 106.202 99.4073 99.0843 5.94163 0.2011 0.201064 0.204267 0.187947 0.209184 0.225651 0.24297 0.252633 0.255099 0.258099 0.255629 0.249488 0.244583 88.2611 88.3119 88.3838 88.4821 88.6138 88.7869 89.0118 89.3012 89.6706 90.1383 90.7241 91.4455 92.3128 93.3196 94.4328 95.5852 96.6634 97.4764 97.7204 96.9792 94.7766 90.924 86.5378 84.1376 84.7195 87.6748 92.3471 97.6714 102.834 106.385 88.2589 88.3145 88.3923 88.4981 88.639 88.8236 89.0629 89.3703 89.7622 90.2576 90.8761 91.6344 92.5395 93.5794 94.7132 95.8638 96.9027 97.6143 97.6661 96.6174 94.0017 89.8238 85.6673 84.0058 85.2359 88.6888 93.6297 98.996 103.992 106.723 88.2212 88.277 88.355 88.4608 88.6015 88.786 89.0251 89.3329 89.7259 90.2236 90.846 91.6102 92.5239 93.5744 94.7198 95.8823 96.9335 97.6579 97.7214 96.677 94.0407 89.8003 85.5846 83.9445 85.2052 88.6728 93.6249 98.9936 104.001 106.751 88.1609 88.217 88.295 88.4007 88.541 88.7251 88.9642 89.2727 89.6677 90.1692 90.7983 91.5729 92.5016 93.5714 94.7384 95.9216 96.9917 97.733 97.8109 96.7666 94.0909 89.7497 85.4441 83.8427 85.1532 88.6462 93.6184 98.9916 104.021 106.798 88.0784 88.135 88.2131 88.3185 88.4584 88.6419 88.881 89.1905 89.5883 90.0955 90.734 91.5235 92.4736 93.5714 94.7696 95.9824 97.0768 97.8381 97.9324 96.8866 94.1573 89.6774 85.2462 83.7011 85.08 88.6089 93.6099 98.9901 104.051 106.867 87.9726 88.0299 88.1084 88.2137 88.3531 88.5361 88.7752 89.0861 89.4877 90.0022 90.6529 91.4614 92.4394 93.5733 94.8109 96.0603 97.1851 97.9711 98.0856 97.0387 94.2422 89.5826 84.9862 83.5198 84.9862 88.5608 93.5995 98.9886 104.092 106.956 87.8428 87.901 87.9802 88.0856 88.2245 88.4071 88.6463 88.959 89.3652 89.8884 90.5539 91.3857 92.398 93.5766 94.8611 96.1531 97.314 98.1309 98.2709 97.2243 94.347 89.4633 84.6579 83.299 84.8721 88.5017 93.5874 98.987 104.143 107.067 87.6885 87.748 87.8278 87.9334 88.0721 88.2542 88.4936 88.8083 89.2198 89.7532 90.4359 91.295 92.3484 93.581 94.9202 96.2602 97.4632 98.3175 98.4892 97.4452 94.4737 89.3171 84.2533 83.0397 84.7386 88.4318 93.5736 98.9848 104.204 107.199 87.5098 87.5704 87.6505 87.7566 87.8951 88.0766 88.3162 88.6331 89.0503 89.5951 90.2972 91.1874 92.2892 93.5866 94.9885 96.3816 97.6323 98.5309 98.7414 97.7036 94.6246 89.1412 83.7618 82.7432 84.5861 88.3508 93.5584 98.9816 104.276 107.356 87.3067 87.3676 87.4458 87.5536 87.6926 87.8735 88.1129 88.432 88.8554 89.4125 90.1359 91.0608 92.2184 93.5937 95.0663 96.5169 97.8215 98.7713 99.0289 98.0019 94.8025 88.9319 83.17 82.4116 84.4156 88.2584 93.542 98.9768 104.357 107.535 87.0798 87.1462 87.2089 87.3235 87.4636 87.6439 87.8829 88.2038 88.6335 89.2036 89.9501 90.9125 92.1333 93.603 95.1536 96.6658 98.0307 99.0388 99.3526 98.343 95.011 88.6851 82.4603 82.0484 84.2274 88.1543 93.5249 98.9699 104.449 107.737 86.8991 87.0227 86.9474 87.0663 87.2082 87.3874 87.625 87.9472 88.383 88.9666 89.7375 90.7396 92.0294 93.6157 95.2495 96.827 98.2597 99.3336 99.7137 98.7303 95.2542 88.3959 81.6097 81.6585 84.0221 88.0377 93.5074 98.9601 104.549 107.963 86.5497 86.6013 86.6717 86.7824 86.9254 87.1028 87.338 87.6609 88.1022 88.6991 89.4957 90.5388 91.8992 93.6335 95.3513 96.9987 98.5085 99.6559 100.114 99.1675 95.5367 88.0579 80.5863 81.2486 83.7994 87.9076 93.4901 98.9465 104.659 108.214 86.2523 86.301 86.3695 86.473 86.612 86.7869 87.0204 87.3439 87.7895 88.3983 89.2218 90.3079 91.7272 93.6576 95.4522 97.1785 98.7774 100.006 100.554 99.6588 95.864 87.6637 79.3429 80.8279 83.5582 87.7623 93.4739 98.9281 104.776 108.491 85.9544 85.9936 86.051 86.138 86.2658 86.4382 86.6717 86.9959 87.443 88.0609 88.9124 90.0461 91.4777 93.681 95.5372 97.3635 99.0671 100.383 101.037 100.209 96.2417 87.2036 77.8037 80.4088 83.2958 87.5998 93.46 98.9038 104.902 108.793 85.6273 85.6618 85.7048 85.7735 85.8853 86.0604 86.2944 86.6174 87.0608 87.682 88.562 89.7555 91.0745 93.6565 95.5777 97.5515 99.3788 100.788 101.564 100.821 96.6743 86.6646 75.8717 80.0113 83.007 87.4168 93.4506 98.8725 105.035 109.121 85.2705 85.3061 85.3509 91.9675 85.508 85.6647 85.893 86.2096 86.6405 87.2547 88.1621 89.437 90.5676 93.4164 95.5276 97.7426 99.7152 101.22 102.136 101.503 97.1609 86.0318 73.4692 79.6658 82.6829 87.2089 93.4486 98.8327 105.176 109.475 84.8943 84.9229 84.9494 87.5443 85.0209 85.2438 85.4697 85.7734 86.1793 86.769 87.6996 89.0907 90.371 92.7416 95.3418 97.9426 100.08 101.677 102.755 102.261 97.6944 85.3028 70.4583 79.402 82.308 86.9704 93.4585 98.7833 105.316 109.854 84.5155 84.5322 84.5564 84.6016 84.6461 84.8127 85.026 85.3116 85.6748 86.2102 87.1543 88.7031 90.408 91.7043 95.0446 98.166 100.479 102.158 103.423 103.1 98.2799 84.5239 66.542 79.2691 81.8561 86.6936 93.4865 98.7231 105.451 110.256 84.1385 84.1432 84.1527 84.1737 84.2355 84.3755 84.5619 84.8316 85.127 85.5566 86.4958 88.2431 90.4186 90.6802 94.7964 98.436 100.918 102.656 104.141 104.03 98.9501 83.8318 61.3952 79.344 81.2878 86.3683 93.5403 98.6508 105.577 110.676 83.7581 83.7478 83.7368 83.7304 83.7793 84.0621 84.0933 84.3468 84.5373 84.7708 85.6774 87.7134 90.3207 90.1626 94.8318 98.7789 101.405 103.164 104.911 105.061 99.7624 83.4006 54.8913 79.7322 80.5473 85.9837 93.6306 98.5652 105.688 111.108 83.3653 83.3471 83.3242 83.2947 83.2883 83.5026 83.686 83.8655 83.8984 83.7813 84.6263 87.1223 90.1434 90.4226 95.271 99.2127 101.951 103.666 105.733 106.209 100.745 83.4147 47.0011 80.524 79.5554 85.5513 93.7707 98.4652 105.777 111.54 82.9359 82.9353 82.9175 82.8474 82.8144 82.9913 83.288 83.4002 83.2115 82.4167 83.1768 86.4873 89.966 91.2455 95.9912 99.7385 102.566 104.135 106.61 107.494 101.909 83.8905 17.632 81.5197 78.1804 85.1461 93.9744 98.3494 105.83 111.953 82.4239 82.5287 82.5494 82.3341 82.1824 82.4527 82.9929 82.9747 82.5636 80.1413 80.9771 85.8571 89.811 92.2232 96.7098 100.348 103.268 104.526 107.548 108.935 103.259 84.5268 6.03096 80.8053 76.0835 85.1166 94.2529 98.2169 105.834 112.321 81.6727 82.2441 82.4806 81.6947 81.2174 81.7702 82.8774 82.4088 82.1989 77.1334 78.8411 85.3244 89.6466 93.0851 97.2285 101.059 104.083 104.766 108.55 110.537 104.908 88.5439 -1.34824 0.299019 60.3011 85.2826 94.613 98.0687 105.753 112.598 47.1185 56.8 64.5877 67.0302 72.1298 78.8498 84.0225 80.7474 83.634 73.8834 77.4428 85.0291 89.4458 93.8421 97.8228 101.939 105.051 104.728 109.614 112.26 106.79 94.5421 -1.12536 0.273327 0.102561 86.0353 95.0591 97.9119 105.561 112.721 0.246488 0.240103 0.23238 0.232736 0.234742 0.233948 0.227281 0.21089 0.20354 0.3298 76.1939 84.8766 89.0773 94.6838 98.7692 103.044 106.229 104.193 110.699 114.022 108.48 96.9675 -0.678773 0.183798 0.0832975 81.3828 95.6009 97.7777 105.244 112.59 0.257934 0.257147 0.24765 0.237962 0.248273 0.231984 0.225048 0.216596 0.210801 0.244494 0.236952 83.3339 87.7912 95.8446 99.7211 104.324 107.707 102.88 111.762 115.669 110.532 85.3289 -0.354279 0.133884 0.0539795 0.833546 96.2464 97.7649 104.849 112.053 0.248155 0.243221 0.238419 0.231458 0.224634 0.240382 0.22102 0.213458 0.183575 0.165362 0.158919 -0.0644018 82.7901 98.0388 99.9906 105.715 109.529 101.581 113.071 116.642 113.477 51.3753 -0.142879 0.0997146 0.0383616 0.169252 96.9905 98.0204 104.749 110.861 0.241432 0.240779 0.237074 0.227659 0.215991 0.207179 0.210556 0.198916 0.147106 0.103319 0.0825272 0.0898294 -1.64054 102.874 99.1963 107.117 111.058 102.565 114.507 117.291 115.26 1.4816 -0.0386663 0.0773835 0.0320016 0.137744 -0.00780605 98.4717 104.691 108.664 108.183 110.157 0.00396313 -0.111727 -0.173014 -0.247284 -0.625292 -1.43792 107.759 114.947 117.95 112.585 104.653 106.864 96.3035 101.963 0.677053 0.148284 0.173725 0.144066 0.16459 0.179861 0.216375 0.229618 0.246423 0.251112 0.249583 0.249107 0.254279 0.244818 25.7218 111.358 0.0115667 -0.107342 -0.171093 -0.245006 -0.654975 -1.28369 115.377 115.13 118.951 113.251 105.198 106.888 92.4251 -0.668212 0.803213 0.096907 0.500726 0.126288 0.152356 0.167699 0.193503 0.22193 0.241694 0.250076 0.250466 0.244863 0.19545 0.235932 1.12 95.0075 0.0109999 -0.102238 -0.168481 -0.242444 -0.624852 -1.42958 119.272 114.709 120.222 114.995 104.934 105.151 90.9009 0.377738 0.886417 0.0779107 0.479073 0.114539 0.140236 0.155077 0.180786 0.213036 0.235396 0.259402 0.245394 0.244572 0.704607 12.8563 0.938929 0.159037 0.00863409 -0.0965957 -0.165159 -0.235736 -0.685877 -0.95202 129.619 114.148 121.402 117.516 105.551 104.589 0.158012 0.693877 1.44196 -0.0168449 0.491183 0.108298 0.129083 0.142974 0.167603 0.202739 0.227719 0.242033 0.240689 0.237867 0.219409 0.270011 0.826616 0.0998662 0.00662886 -0.0905557 -0.161088 -0.23243 -0.518643 -0.637579 74.1125 115.782 122.819 120.435 106.829 93.3016 0.445783 0.462552 4.93902 -0.206363 0.269923 0.106287 0.119687 0.138783 0.153647 0.191352 0.217738 0.240754 0.233059 0.232499 0.231668 0.237245 0.503991 0.0873173 0.00520628 -0.0843605 -0.156246 -0.228582 -0.602287 -0.344937 44.0199 117.395 124.811 123.526 108.784 0.110683 0.337292 0.346246 5.42493 -0.0261578 0.0877874 0.104342 0.213174 0.127876 0.149485 0.179684 0.205798 0.218827 0.222436 0.222295 0.221149 0.218625 0.410248 0.0769745 0.00438318 -0.078364 -0.150652 -0.21915 -0.5305 -0.217891 -2.6836 118.346 127.409 125.772 34.344 0.213322 0.325518 0.252662 0.315969 0.0190871 0.086312 0.0984356 0.210531 0.116805 0.130682 0.168243 0.195277 0.204323 0.20962 0.209985 0.209083 0.206004 0.347407 0.068731 0.00393134 -0.0728092 -0.144354 -0.209337 -0.433629 -0.181211 -0.253662 117.839 131.469 131.091 0.41575 0.22695 0.296967 0.215655 0.365529 0.0755983 0.0943803 0.109744 0.213558 0.113313 0.128816 0.157447 0.195634 0.189843 0.196158 0.196879 0.195793 0.194345 0.284229 0.0612518 0.00367098 -0.0678267 -0.137403 -0.196208 -0.402107 -0.177186 -0.214005 0.0707455 134.431 46.5033 0.582077 0.208658 0.212094 0.200349 0.42153 0.118165 0.105947 0.110635 0.112473 0.115951 0.128915 0.149165 0.165928 0.179585 0.182224 0.182703 0.182004 0.181187 0.214807 0.0548257 0.0033563 -0.0634346 -0.129859 -0.179249 -0.325435 -0.134702 -0.348435 0.379253 15.6985 -0.0663924 0.773928 0.195443 0.206627 0.182457 0.410932 0.136808 0.117269 0.115888 0.11734 0.122168 0.130942 0.142922 0.155132 0.162732 0.16557 0.166323 0.16674 0.167222 0.172931 0.0491942 0.00281446 -0.0595396 -0.121777 -0.16538 -0.217384 0.0732244 -0.525295 0.164903 0.109614 -0.0850009 0.268704 0.181933 0.2289 0.169354 0.167724 0.144768 0.127406 0.121633 0.121486 0.1292 0.135091 0.138742 0.143492 0.146097 0.14775 0.148517 0.150047 0.151673 0.15409 0.0442376 0.00200573 -0.0559671 -0.113211 -0.148055 -0.14366 1.07802e-05 -0.49259 0.0994471 0.138137 -0.0833207 0.0629788 0.159818 0.20188 0.166523 0.152811 0.150474 0.137509 0.126588 0.124872 0.132945 0.147278 0.134239 0.13274 0.136406 0.131276 0.13581 0.134156 0.13684 0.115779 0.0397696 0.00101207 -0.0525227 -0.104221 -0.129978 -0.091203 0.027357 -0.325366 0.0395287 0.131125 -0.0512509 0.0654079 0.151496 0.185438 0.155511 0.152949 0.157459 0.145023 0.146149 0.25497 0.124434 0.130341 0.128195 0.126838 0.118643 0.11649 0.1358 0.121993 0.12479 0.0851181 0.03571 -2.67515e-05 -0.0490398 -0.0948727 -0.111748 -0.0437375 0.0616875 -0.237883 0.0155806 0.0929231 -0.0274365 0.0524243 0.173874 0.187491 0.145654 0.153717 0.159942 0.152044 0.449727 0.151625 0.140511 0.139211 0.126213 0.116041 0.109612 0.106864 0.107935 0.111683 0.115948 0.093512 0.0319673 -0.000979288 -0.0454233 -0.0852555 -0.0943115 -0.0105147 0.0922316 -0.0802472 -0.000296497 0.0304248 0.00738158 0.0434012 0.152324 0.131354 0.131127 0.15019 0.160538 0.161705 0.236743 0.162598 0.150037 0.14092 0.128032 0.116613 0.109815 0.105412 0.112344 0.109999 0.113821 0.0639623 0.0284645 -0.00177134 -0.0416458 -0.0754933 -0.0775955 0.00980088 0.112712 -0.0115718 -0.0672868 0.0641254 0.00651477 0.0348564 0.100567 0.104058 0.116551 0.137171 0.163264 0.160574 0.159998 0.165129 0.152393 0.142537 0.129465 0.118039 0.110982 0.108456 0.108321 0.110739 0.115239 0.0732158 0.025155 -0.00238318 -0.0377197 -0.0657406 -0.0621047 0.0136455 0.115583 0.0208206 -0.366871 0.639441 0.078872 0.0817146 0.0448793 0.0772229 0.102268 0.126548 0.153887 0.150896 0.153779 0.152104 0.148833 0.141806 0.127569 0.119296 0.114345 0.112159 0.112219 0.114625 0.11921 0.0808696 0.0219401 -0.00283054 -0.0336834 -0.0561824 -0.0482542 0.0167657 0.105947 -0.00334664 -0.199376 0.27134 0.0297484 0.0116133 0.0173637 0.0471003 0.0874492 0.116419 0.188523 0.137981 0.147252 0.137904 0.13664 0.13071 0.123958 0.120758 0.127548 0.112299 0.110014 0.108594 0.105796 0.0728535 0.0187993 -0.00314304 -0.0295921 -0.0470174 -0.036153 0.0192155 0.0903111 -0.0261534 -0.105115 0.215456 0.0306607 -0.0158207 -0.0254925 0.0071324 0.0548591 0.0926229 0.193498 0.116948 0.121385 0.12337 0.12395 0.122055 0.121015 0.116149 0.115072 0.107994 0.106703 0.105058 0.103429 0.0815234 0.0156199 -0.00334617 -0.0255159 -0.0384369 -0.0261622 0.0211538 0.0716898 -0.0473319 0.0334799 0.948524 0.0283507 -0.0407751 -0.0698191 -0.0394384 0.0175893 0.0637474 0.086459 0.0986378 0.105996 0.11038 0.113327 0.112401 0.112834 0.111009 0.108832 0.110239 0.108025 0.107834 0.10803 0.0809139 0.0122327 -0.00346044 -0.0215385 -0.0306114 -0.0179975 0.0201634 0.0565892 0.0146598 0.0832241 0.890148 -0.00230452 -0.0544973 -0.0960681 -0.0766128 -0.0155843 0.0393245 0.0686254 0.0833339 0.0921313 0.0977281 0.10157 0.212502 0.158603 0.103336 0.103489 0.10449 0.106307 0.109209 0.120332 0.0778909 0.00839008 -0.00349845 -0.0177496 -0.023681 -0.0113404 0.0186139 0.0459414 0.0438091 0.0972194 0.0746541 0.0118144 -0.0480071 -0.0994417 -0.0893624 -0.0313365 0.0254443 0.054794 0.071583 0.0807556 0.0862185 0.0889613 0.0899039 0.0924242 0.0943894 0.0959285 0.0975225 0.0991445 0.100389 0.104719 0.0922626 0.00384768 -0.00345567 -0.0142378 -0.0177445 -0.00713879 0.0160434 0.0365704 0.042557 0.0764005 0.0588868 0.0157618 -0.0364354 -0.0740469 -0.0688549 -0.0207859 0.0260786 0.0532716 0.0728392 0.0740629 0.0775458 0.0803081 0.0826352 0.0848653 0.0868089 0.0884898 0.0900642 0.0916353 0.0932394 0.0948674 0.0805596 -0.00140485 -0.00330646 -0.0110796 -0.0128622 -0.0042972 0.0119494 0.0234185 0.0254548 0.0449099 0.0379424 0.0500941 -0.0190012 -0.0415301 -0.0247204 0.0075435 0.0377224 0.0568282 0.0664253 0.075412 0.0695662 0.0712457 0.0730898 0.0750881 0.0770531 0.0788298 0.0803797 0.0817164 0.0828624 0.0838309 0.593937 -0.00622304 -0.00300815 -0.00832836 -0.00903325 -0.00261431 0.00639051 0.0103868 -0.0126255 0.0122499 0.0181706 0.00829954 -0.00779738 -0.0107722 0.175636 0.0234968 0.0440904 0.0569392 0.0698247 0.064179 0.0823332 0.0592557 0.0594141 0.0602216 0.0618268 0.0636455 0.0653082 0.0665582 0.0674141 0.0678992 0.289961 -0.00626251 -0.00253873 -0.0060103 -0.00619611 -0.00252222 -0.00155966 -0.0142006 -0.0535147 -0.0292303 0.00129695 0.00425683 0.0012422 0.0034184 0.0144323 0.0257025 0.0374811 0.0453553 0.0484611 0.0456694 0.0432857 0.0412097 0.0396086 0.0387163 0.0377805 0.0411367 0.0420007 0.0435481 0.0440784 0.0447864 0.049425 -0.0027311 -0.00195358 -0.00411716 -0.00420775 -0.00307929 -0.00551996 -0.0105478 -0.125999 -0.0666396 -0.0107972 0.00146183 0.00464211 0.181682 0.0162447 0.0207182 0.0766519 0.0355907 0.0266273 0.0264253 0.0309482 0.0252774 0.0175252 0.013881 0.0178809 0.0123665 0.0137554 0.0154827 0.0215614 0.018094 0.0323552 -0.000142623 -0.00133218 -0.00260944 -0.00280931 -0.00340931 -0.00883043 -0.0230735 -0.0993844 -0.0621674 -0.0164862 -0.00207709 0.00369316 0.00749833 0.0179858 0.01103 0.0127052 0.013717 0.0149287 0.0254298 0.137195 0.129583 -0.00374279 -0.0122586 -0.0108598 -0.00877411 -0.00798127 -0.00960889 -0.0161102 0.0223818 0.0170344 0.000829558 -0.000752182 -0.00143258 -0.00171357 -0.00299795 -0.00929893 -0.0126185 0.0112026 -0.0412431 -0.0185764 -0.00815577 -0.00218514 0.00193089 0.00414735 0.00869897 0.00414063 0.0195286 0.00554076 0.00536421 0.000306228 0.00827359 0.0012276 -0.00799231 -0.00676095 -0.00562131 -0.00717126 -0.00991486 -0.000917996 -0.00386714 0.00676019 0.000657512 -0.000284661 -0.000536516 -0.000721774 -0.00165512 -0.00459768 0.0542136 -0.0032727 -0.0219558 -0.0221706 -0.0172795 -0.0116933 -0.00724584 -0.00460821 -0.00391559 -0.00373423 -0.00665277 -0.00712831 -0.00536237 -0.00334093 -0.0011288 -0.000307866 0.000747224 0.000528395 0.000902202 0.0132935 0.00346033 0.00631927 0.0059401 0.228949 0.240252 0.453467 0.224571 0.250543 0.182655 0.198092 0.18349 0.136575 0.0762149 0.0773744 0.081561 0.145029 108.152 97.411 108.385 112.029 104.998 115.054 116.286 113.744 -0.40299 -0.0332248 0.0626096 0.0301723 0.11902 -0.0948408 0.50522 104.651 106.234 0.223858 0.243502 0.266955 0.22816 0.347018 0.143422 0.192493 0.176394 0.12561 0.0659899 0.0557396 0.0859725 0.154028 3.1174 95.0938 108.883 113.054 106.261 115.514 115.276 115.55 -0.206554 -0.0453767 0.0560404 0.029983 0.110901 -0.104464 0.103144 104.554 106.099 0.244262 0.242606 0.276305 0.210201 0.227672 0.164137 0.188766 0.170176 0.112266 0.0613702 0.0508511 0.0743613 0.22983 0.79467 89.5085 108.507 113.332 107.847 116.565 115.134 118.563 -0.299748 -0.0538827 0.049835 0.0300582 0.103033 -0.107097 0.0842981 0.698673 107.267 0.215925 0.225409 3.74524 0.178004 0.211321 0.187832 0.183904 0.165087 0.111715 0.0621883 0.0535826 0.0760999 0.22757 0.6735 1.28807 107.019 114.519 109.521 117.978 114.911 118.708 0.178644 -0.0523136 0.0439466 0.0302442 0.0952656 -0.102111 0.0666531 0.0396015 108.103 0.216559 0.204376 4.00387 0.182987 0.199568 0.193007 0.178607 0.161019 0.116493 0.0714105 0.061305 0.079318 0.112199 0.769656 0.409985 98.7166 115.912 111.455 118.584 115.273 112.63 0.146699 -0.0429085 0.0384043 0.0304062 0.0875348 -0.0917233 0.0515739 0.0380377 65.8795 0.210247 0.201039 0.192451 0.177406 0.230874 0.210216 0.172563 0.158267 0.12448 0.0864474 0.0740226 0.0872891 0.105742 0.157639 0.174558 0.387624 119.39 110.233 119.276 117.384 24.9307 0.12548 -0.0298722 0.0332502 0.0304376 0.0797656 -0.0787437 0.0378089 0.0354696 -0.287762 0.201596 0.196309 0.190251 0.183247 0.18705 0.20391 0.167433 0.156953 0.133564 0.103943 0.0888337 0.0920705 0.109109 0.11468 0.331019 0.273069 2.90969 110.734 121.246 122.339 -0.00383537 0.158852 -0.0431688 0.0285511 0.030256 0.0721205 -0.0652052 0.0256375 0.0147259 -0.225501 0.191162 0.187248 0.183989 0.180169 0.179027 0.172118 0.16418 0.156263 0.139232 0.118025 0.103967 0.0975666 0.0989893 0.104691 0.0746618 0.178972 -0.230939 -0.116862 123.186 120.791 -0.221135 0.0822863 -0.05583 0.0243748 0.0298201 0.0646591 -0.0525497 0.0154949 0.0125201 -0.165355 0.179607 0.194277 0.179979 0.173634 0.170631 0.165466 0.175593 0.155507 0.141548 0.12745 0.116431 0.10192 0.0919221 0.0771845 0.0705316 0.0916072 -0.121449 -0.122514 -0.181747 -0.295389 -0.21393 -0.0266046 -0.0453622 0.0207949 0.0291216 0.0574721 -0.0414734 0.00741378 0.00941488 -0.114989 0.16774 0.16965 0.181639 0.163776 0.162544 0.159152 0.154317 0.157188 0.15851 0.130683 0.125271 0.102912 0.088537 0.0759662 0.188128 0.0544494 -0.0268959 -0.143285 -0.170103 -0.255145 -0.288673 -0.123773 -0.033797 0.0178292 0.028173 0.0506579 -0.0323384 0.00120096 0.00839939 -0.0757899 0.153208 0.15452 0.154018 0.154028 0.15512 0.153352 0.150041 0.146057 0.141233 0.129179 0.177966 0.103874 0.0844522 0.068346 0.224579 0.0298655 -0.0258934 -0.197645 -0.179604 -0.268156 -0.33315 -0.151188 -0.0215203 0.0153907 0.0269969 0.0443009 -0.0250214 -0.00364321 0.00745642 -0.0469411 0.13984 0.142307 0.144799 0.147277 0.149836 0.147427 0.145718 0.142179 0.136235 0.128526 0.126922 0.106255 0.0810288 0.0794199 0.0816216 0.0210722 -0.00269843 -0.201509 -0.169663 -0.270799 -0.441217 -0.162859 -0.0129114 0.0133778 0.0255974 0.0384669 -0.0191682 -0.00683985 0.00668621 -0.0268745 0.128583 0.132407 0.136657 0.140831 0.143993 0.168202 0.141117 0.139278 0.132542 0.125619 0.116274 0.105175 0.0776702 0.0586604 0.0329308 0.00841893 0.00545894 -0.119377 -0.127764 -0.257781 -0.522418 -0.12449 -0.00776618 0.0116765 0.0239798 0.0331863 -0.0143715 -0.00857648 0.00606671 -0.0137922 0.120383 0.125395 0.138085 0.135474 0.144368 0.166007 0.138184 0.141288 0.131522 0.121606 0.115566 0.130718 0.0739037 0.0540288 0.0271179 -0.00295504 -0.00222197 -0.103034 -0.0901118 -0.22178 -0.536357 -0.122382 -0.00734201 0.0102027 0.0221563 0.0284626 -0.0103571 -0.00914265 0.00548437 -0.00591731 0.118596 0.125584 0.128423 0.133497 0.136444 0.136353 0.137136 0.137347 0.128678 0.119384 0.105217 0.105746 0.0782696 0.0552051 0.0190041 -0.0159929 -0.0299975 -0.102468 -0.19397 -0.180969 -0.208083 -0.103505 -0.00741594 0.00888531 0.0201495 0.0242666 -0.00701764 -0.00880591 0.00491029 -0.00165901 0.119837 0.125807 0.129949 0.134451 0.135409 0.134963 0.135814 0.145121 0.126018 0.11252 0.101668 0.126469 0.0846115 0.11429 0.00948398 -0.02036 -0.0599154 -0.105125 -0.170863 -0.119915 -0.326389 -0.135377 -0.00921858 0.00763962 0.0179949 0.0205498 -0.00428485 -0.00785086 0.00437279 0.000337434 0.12595 0.133635 0.142937 0.139132 0.14231 0.152271 0.14775 2.75508 0.125515 0.107062 0.0978211 0.0828237 0.15209 0.0511293 0.00345321 -0.0317974 -0.0663212 -0.0874565 -0.168887 -0.131862 -0.233088 -0.0358827 -0.00869447 0.00638025 0.0157358 0.0172579 -0.00214329 -0.00650978 0.00389601 0.00109373 0.0941233 0.137358 0.23648 0.124966 0.119077 0.128052 0.130733 0.110897 0.117837 0.106002 0.0964878 0.0811721 0.0562378 0.041275 -0.000839735 -0.0352802 -0.0636551 0.658883 -0.14895 -0.106806 -0.169385 0.00725076 -0.0075993 0.00503581 0.01342 0.0143436 -0.000586658 -0.00501632 0.00341524 0.00121801 0.101654 0.101993 0.106731 0.112613 0.114167 0.145912 0.124317 0.116361 0.116255 0.110521 0.0983747 0.0810848 0.0567767 0.0362965 -0.00556127 -0.0453227 -0.0677612 0.996569 -0.10008 -0.135261 -0.150273 0.00202662 -0.00741098 0.00355272 0.0110956 0.0117652 0.000460607 -0.00357043 0.00295585 0.0011098 0.109845 0.11255 0.116503 0.120594 0.124266 0.127736 0.128516 0.127055 0.123624 0.115498 0.100099 0.0783884 0.0513794 0.0212958 -0.0121318 -0.0422515 -0.0659934 0.859181 0.0194141 -0.126781 -0.0491848 -0.0143423 -0.00830689 0.0019098 0.00880783 0.00948665 0.00110185 -0.00238427 0.00252498 0.000928623 0.11618 0.116088 0.119543 0.123442 0.127446 0.132999 0.14015 0.132402 0.127033 0.115147 0.0959219 0.0697028 0.0382577 0.00459325 -0.0230123 -0.0517713 -0.0707703 0.352921 -0.0489439 -0.082321 -0.10561 -0.026857 -0.0100941 0.000129505 0.00659946 0.00747694 0.00142834 -0.00144435 0.0021148 0.000725303 0.10575 0.109365 0.11304 0.117093 0.121666 0.125873 0.127652 0.125898 0.118283 0.102844 0.0809899 0.0522034 0.0120626 -0.0225475 -0.0479176 -0.0622438 -0.0710533 -0.0690734 -0.0443977 -0.053859 -0.0777982 -0.0319806 -0.0122131 -0.00172014 0.00451259 0.0057099 0.00151986 -0.000736743 0.00172493 0.000542553 0.0966497 0.0987479 0.101171 0.103895 0.10873 0.108813 0.108776 0.104149 0.0914227 0.0697903 0.0467277 0.039628 -0.032825 -0.073647 -0.0855639 -0.0846944 -0.0831023 0.160554 0.569498 -0.0576421 -0.0532588 -0.0335392 -0.0142202 -0.00353992 0.00259375 0.0041658 0.00144491 -0.0002466 0.0013624 0.000384999 0.084703 0.0855281 0.0862237 0.0866088 0.0862464 0.0840868 0.0780608 0.064988 0.0411395 0.0102432 -0.0356771 -0.0615487 -0.144363 -0.167734 -0.139322 -0.116109 -0.0834163 0.0670669 -0.0229184 -0.0766747 -0.0491642 -0.0341556 -0.0158914 -0.00520635 0.00090099 0.00283473 0.0012619 6.0039e-05 0.00104145 0.000255158 0.0680501 0.0677557 0.0667276 0.0645067 0.0604867 0.0525966 0.0388504 0.0224034 -0.0178635 -0.0655599 -0.142256 -0.222784 -0.288519 -0.302717 -0.248507 -0.146018 -0.0812102 -0.0227993 -0.0027845 -0.043585 -0.0467164 -0.0353271 -0.0171757 -0.00657199 -0.000504338 0.0017174 0.00101686 0.000220884 0.000779291 0.000157293 0.045117 0.0448583 0.0436074 0.040751 0.0352874 0.0308558 0.0570753 -0.0227347 -0.0592081 -0.148423 -0.246243 -0.328476 -0.406717 -0.419385 -0.306483 -0.191124 -0.0690782 -0.020646 0.342533 -0.022854 -0.0481591 -0.0124984 -0.0181478 -0.00744954 -0.00155214 0.000824149 0.000745049 0.000276327 0.000579173 9.15734e-05 0.0180824 0.0180731 0.0169063 0.0137553 0.00728911 -0.0049516 -0.0254399 -0.0494848 -0.0910072 -0.148334 -0.202396 -0.227922 -0.406333 -0.40458 -0.321425 -0.185484 -0.0548585 0.00183339 0.0232147 -0.051644 -0.066641 -0.0366589 -0.00891635 -0.00758368 -0.00215164 0.000169309 0.000475531 0.000259407 0.000424183 5.45671e-05 0.00371153 0.00355846 0.00256368 -6.8843e-05 -0.0050669 -0.0132897 -0.0260362 -0.0452816 -0.0746407 -0.118422 -0.178886 -0.247275 -0.28361 -0.275617 -0.219347 -0.128464 -0.0398671 0.00206776 0.00734529 0.523941 -0.0799491 -0.0324107 -0.0164137 -0.00666949 -0.00224739 -0.000235969 0.000233014 0.000188142 0.00029155 3.72555e-05 -0.00234896 0.00045324 0.000494116 -0.00207366 -0.00600501 -0.00975785 -0.0151994 -0.0244532 -0.0398446 -0.0625078 -0.091556 -0.120613 -0.136503 -0.127739 -0.0958406 -0.0258353 -0.00743198 0.00786315 0.00251083 0.0132643 -0.0252909 0.0134443 -0.0113638 -0.00470479 -0.00184256 -0.000399773 3.32904e-05 7.76959e-05 0.000165103 2.70841e-05 0.00622168 0.0322122 0.0755353 0.0803082 0.0810831 0.00127351 -0.00141893 -0.00585366 -0.013567 -0.0242588 -0.0396806 -0.0527712 -0.0536224 -0.032965 0.0112216 0.0188494 0.025165 0.0124058 0.00773468 0.0194454 0.000707822 -0.0082207 -0.00440519 -0.00209375 -0.00104797 -0.000365265 -0.000122284 -5.97146e-05 3.46044e-05 1.33935e-05 122.932 116.199 104.899 95.8601 89.3149 84.7113 82.2028 82.8724 86.6761 91.1096 94.2125 95.6838 95.9003 95.3329 94.3686 93.2718 92.2028 91.2484 90.446 89.8017 89.3026 88.9277 88.6538 88.4601 88.329 88.2464 88.2009 88.1835 88.1868 88.2053 121.98 116.203 104.887 95.8391 89.2973 84.6891 82.1481 82.7925 86.6448 91.1389 94.2669 95.7367 95.9421 95.3622 94.3859 93.277 92.1963 91.2317 90.4213 89.7714 89.2691 88.8925 88.6182 88.4247 88.2941 88.2121 88.1672 88.1503 88.1541 88.1729 122.052 116.217 104.868 95.8028 89.2666 84.6491 82.0491 82.6417 86.5708 91.1729 94.3547 95.8316 96.0211 95.4199 94.422 93.2914 92.1895 91.2058 90.3804 89.7201 89.2114 88.8318 88.5565 88.3632 88.2335 88.1526 88.1089 88.093 88.0978 88.1173 122.175 116.24 104.842 95.7509 89.2226 84.5922 81.9077 82.4226 86.4605 91.2169 94.476 95.9661 96.1362 95.5068 94.4787 93.3168 92.1838 91.1722 90.3246 89.6489 89.131 88.7467 88.4699 88.2769 88.1485 88.0692 88.0271 88.0127 88.0187 88.0393 122.35 116.269 104.808 95.6832 89.1654 84.5192 81.7239 82.1311 86.3133 91.2732 94.6323 96.1397 96.2859 95.6203 94.5533 93.3508 92.1775 91.1295 90.2529 89.5572 89.0271 88.6369 88.3583 88.1659 88.0391 87.9617 87.9215 87.9087 87.9161 87.9379 122.578 116.302 104.766 95.5993 89.0949 84.4314 81.4979 81.7613 86.1266 91.3436 94.8252 96.3533 96.4694 95.7587 94.6435 93.3916 92.1693 91.0766 90.1641 89.4434 88.8987 88.5017 88.2212 88.0297 87.9049 87.8297 87.7913 87.7802 87.789 87.8121 122.859 116.334 104.715 95.499 89.0111 84.3302 81.2303 81.3055 85.8974 91.4297 95.0573 96.6086 96.6872 95.9214 94.7488 93.4389 92.1589 91.0127 90.0568 89.3061 88.7441 88.3394 88.0575 87.8676 87.7455 87.6729 87.6365 87.6268 87.637 87.6614 123.196 116.36 104.655 95.382 88.9141 84.2177 80.9223 80.754 85.6221 91.5338 95.3312 96.9076 96.9403 96.1087 94.8693 93.4928 92.1459 90.9366 89.929 89.1428 88.5609 88.1481 87.8656 87.6788 87.5606 87.4915 87.4574 87.4492 87.4604 87.486 123.59 116.375 104.584 95.2478 88.8036 84.096 80.5755 80.0942 85.2965 91.6589 95.6503 97.2531 97.2298 96.3207 95.0051 93.5534 92.1304 90.8472 89.7785 88.9506 88.3461 87.9254 87.6438 87.4621 87.3499 87.2858 87.2551 87.2485 87.2599 87.2855 124.041 116.367 104.501 95.0959 88.6793 83.9678 80.1924 79.3099 84.9161 91.8086 96.0181 97.648 97.5569 96.5578 95.1562 93.6209 92.1121 90.7433 89.6025 88.7259 88.0962 87.668 87.3898 87.2162 87.113 87.0564 87.0308 87.0264 87.0372 87.06 124.551 116.335 104.404 94.9259 88.541 83.8362 79.7766 78.3799 84.4758 91.987 96.4389 98.0955 97.9232 96.8201 95.3226 93.6952 92.0913 90.6233 89.3975 88.4643 87.8063 87.372 87.1008 86.9396 86.8493 86.8036 86.7856 86.785 86.7955 86.814 125.119 116.291 104.292 94.7372 88.3878 83.7047 79.3332 77.2761 83.9706 92.1991 96.9173 98.5995 98.3303 97.1075 95.504 93.7766 92.0684 90.4859 89.1597 88.1602 87.4707 87.0325 86.7733 86.6301 86.5578 86.527 86.5198 86.5253 86.5372 86.5538 125.741 116.251 104.164 94.5292 88.2189 83.577 78.869 75.9606 83.3956 92.4509 97.4585 99.1641 98.78 97.4199 95.6999 93.8645 92.044 90.3297 88.8846 87.8068 87.082 86.6434 86.4032 86.2853 86.237 86.2257 86.2326 86.2471 86.2633 86.2793 126.419 116.225 104.018 94.3013 88.033 83.4571 78.3933 74.3763 82.7458 92.749 98.0681 99.7942 99.2743 97.7567 95.9094 93.9583 92.0186 90.1532 88.5672 87.3959 86.6305 86.197 85.9856 85.9025 85.8855 85.898 85.9212 85.9459 85.9687 85.9898 127.149 116.217 103.854 94.0531 87.8283 83.3491 77.9174 72.43 82.0134 93.1018 98.7524 100.495 99.8154 98.1165 96.1313 94.0568 91.991 89.9545 88.2029 86.9163 86.1034 85.6835 85.5149 85.4791 85.5024 85.5437 85.5842 85.6181 85.6457 85.6695 127.923 116.229 103.671 93.784 87.6028 83.2569 77.4548 69.9987 81.1893 93.5185 99.517 101.272 100.406 98.4975 96.3634 94.1583 91.9543 89.7248 87.7874 86.3538 85.483 85.0905 84.9851 85.0133 85.0887 85.1651 85.2246 85.2665 85.2964 85.3203 128.727 116.256 103.466 93.4931 87.3534 83.1841 77.023 66.9541 80.2916 94.0087 100.364 102.132 101.048 98.8959 96.602 94.263 91.8861 89.4237 87.3146 85.6897 84.7439 84.4025 84.391 84.5045 84.6471 84.7682 84.8499 84.8995 84.9304 84.9527 129.539 116.288 103.239 93.1797 87.0761 83.1337 76.6482 63.2074 79.3867 94.5755 101.302 103.079 101.743 99.3055 96.8396 94.3785 91.7367 89.0339 86.7867 84.9011 83.8475 83.6003 83.7312 83.9552 84.1831 84.3638 84.4747 84.5335 84.5646 84.5836 130.327 116.304 102.983 92.8424 86.7637 83.1073 76.3669 58.8253 78.5828 95.196 102.332 104.118 102.494 99.7154 97.0614 94.5277 91.4656 88.7144 86.2218 83.9597 82.7355 82.6634 83.0167 83.3789 83.7101 83.9707 84.1204 84.1875 84.2136 84.2236 131.041 116.266 102.692 92.4798 86.4049 83.1027 76.2475 54.1927 78.122 95.8149 103.45 105.253 103.301 100.106 97.2568 94.7447 91.1221 88.5446 85.6485 82.8382 81.3276 81.5707 82.2677 82.8086 83.2688 83.6193 83.806 83.8708 83.8798 83.8708 131.589 116.116 102.367 92.091 85.9893 83.1099 76.4418 50.373 78.4508 96.4044 104.66 106.482 104.16 100.443 97.4759 95.0095 90.836 88.4632 85.1225 81.5353 79.4591 80.2238 81.4519 82.2474 82.9003 83.3452 83.5473 83.5871 83.5585 83.516 131.835 115.768 102.015 91.6744 85.5306 83.1029 77.209 1.65862 79.9436 97.0581 105.966 107.8 105.062 100.657 97.8142 95.2451 90.7396 88.4633 84.7296 80.0058 76.3488 78.2138 80.5118 81.6573 82.6153 83.185 83.3702 83.3435 83.2392 83.1361 131.541 115.057 101.645 91.2283 85.2508 83.0268 78.4971 0.157902 81.7389 97.7654 107.362 109.193 105.98 100.605 98.2871 95.5157 90.9279 88.5665 84.5927 78.292 71.2173 75.2485 79.3818 81.0156 82.4833 83.234 83.3247 83.1591 82.9094 82.6847 130.35 113.703 101.255 90.7518 85.181 82.8126 56.3105 0.0736588 81.2526 98.4674 108.799 110.636 106.852 99.9634 98.8921 95.9871 91.4484 88.7784 84.7917 77.5494 66.8721 72.6854 77.5696 80.0264 82.658 83.7355 83.4171 83.0681 82.5702 82.0531 127.716 111.301 100.866 90.2253 85.0123 82.4744 -0.269552 -0.161609 76.0572 98.9614 110.237 112.098 107.533 98.0545 99.6148 96.6918 92.3005 89.0715 85.3841 78.6962 64.445 34.1037 28.2204 46.1992 69.0618 79.5321 80.7502 82.1849 81.7238 80.6797 122.665 107.498 100.535 89.5182 85.8857 -0.212858 -0.293159 -0.390655 69.6152 98.9216 111.651 113.537 107.935 96.0931 100.714 97.5418 93.3019 89.3234 85.7581 74.3177 0.419229 0.325805 0.289387 0.268315 0.25644 0.255332 0.25437 0.251623 0.250476 0.249371 113.492 101.636 100.314 88.2915 0.876608 -0.217724 -0.294787 -0.633741 24.2828 99.686 113.144 114.901 108.463 96.7692 101.984 98.5282 94.0545 88.8885 84.3116 0.30512 0.601535 0.264382 0.267405 0.262185 0.258112 0.256452 0.255213 0.253526 0.251678 0.250268 100.16 92.3429 100.311 73.7449 -0.145633 -0.215639 -0.293394 -0.658327 11.2785 101.144 115.049 116.156 108.776 100.291 103.663 99.4382 94.9648 89.734 0.116439 0.26499 0.582394 0.226589 0.240893 0.251089 0.255591 0.256622 0.256415 0.254586 0.249096 0.248028 94.5321 90.2098 100.798 0.0690715 -0.144029 -0.208965 -0.289692 -0.756763 -2.32245 103.073 116.771 117.246 107.952 105.068 104.875 100.035 95.0436 -0.511026 0.206429 0.177051 0.201502 0.196927 0.214517 0.234465 0.24877 0.254688 0.256061 0.26199 0.252485 0.246852 95.7955 104.715 101.805 0.0631002 -0.140851 -0.200325 -0.282597 -0.846636 -5.6628 103.606 116.447 118.246 106.212 108.177 105.318 100.059 84.0019 0.447291 0.183619 0.083607 0.161286 0.171393 0.194739 0.220182 0.237661 0.24974 0.251403 0.252733 0.249959 0.256399 88.2347 88.2767 88.3373 88.4215 88.5354 88.6863 88.8836 89.1385 89.4653 89.8811 90.4051 91.0566 91.8506 92.7905 93.8575 95.0028 96.1386 97.1186 97.6991 97.5187 96.1165 93.0702 88.6765 84.9594 84.0772 85.911 89.8255 94.9486 100.298 104.93 88.2027 88.2449 88.3058 88.3901 88.5039 88.6547 88.8518 89.1068 89.434 89.8509 90.377 91.0322 91.8316 92.7789 93.8549 95.0097 96.1554 97.146 97.7376 97.5674 96.1673 93.0977 88.6442 84.8903 84.0348 85.8891 89.8147 94.9444 100.297 104.939 88.1476 88.1902 88.2513 88.3357 88.4493 88.5998 88.7966 89.0516 89.3797 89.7986 90.3288 90.9907 91.8004 92.762 93.8558 95.0297 96.1936 97.2012 97.8088 97.6507 96.2451 93.127 88.5714 84.7621 83.9579 85.8483 89.7959 94.939 100.298 104.96 88.0703 88.1135 88.1749 88.2593 88.3726 88.5225 88.7189 88.974 89.3034 89.7256 90.2618 90.9335 91.7583 92.7415 93.8623 95.0651 96.2557 97.285 97.9111 97.7666 96.351 93.1643 88.4647 84.5765 83.8478 85.7888 89.7691 94.9322 100.301 104.992 87.9699 88.0138 88.0758 88.1604 88.2734 88.4228 88.6187 88.8741 89.2052 89.6317 90.1758 90.8605 91.7053 92.7168 93.8731 95.1133 96.3375 97.394 98.0426 97.9147 96.4869 93.2124 88.3227 84.3302 83.7048 85.7107 89.7341 94.9238 100.305 105.036 87.8453 87.8903 87.9531 88.0381 88.1511 88.3 88.4955 88.7512 89.0847 89.5164 90.0701 90.7708 91.6402 92.6872 93.8874 95.1721 96.436 97.5256 98.2025 98.0957 96.6547 93.2724 88.1418 84.0182 83.5301 85.6141 89.691 94.9141 100.311 105.092 87.696 87.7424 87.8063 87.8919 88.005 88.1535 88.3486 88.6049 88.9409 89.3788 89.9438 90.6632 91.5619 92.6518 93.9051 95.2413 96.5503 97.679 98.3908 98.3109 96.8561 93.3458 87.9175 83.6342 83.325 85.4993 89.6398 94.9031 100.319 105.16 87.5222 87.5703 87.6351 87.7211 87.8344 87.9826 88.1772 88.434 88.773 89.2176 89.7954 90.5361 91.4686 92.6096 93.9264 95.321 96.6801 97.8541 98.6077 98.5613 97.0933 93.4344 87.644 83.17 83.0915 85.3664 89.5807 94.8911 100.327 105.239 87.3231 87.3739 87.4383 87.5239 87.6383 87.7864 87.9804 88.2376 88.5795 89.0316 89.6233 90.3877 91.3582 92.5593 93.9519 95.4113 96.8254 98.0509 98.8534 98.8479 97.3691 93.5404 87.314 82.6149 82.8325 85.2155 89.5138 94.8783 100.335 105.329 87.0953 87.1568 87.2132 87.2972 87.4155 87.564 87.7573 88.0145 88.3593 88.8191 89.4259 90.2159 91.228 92.4989 93.9823 95.5119 96.9858 98.2694 99.1282 99.1724 97.6867 93.6667 86.9182 81.955 82.552 85.0466 89.4393 94.865 100.344 105.43 86.8383 87.1062 87.19 87.0421 87.1658 87.3152 87.5072 87.7637 88.111 88.5784 89.2009 90.0184 91.0747 92.4254 94.019 95.6219 97.1605 98.5095 99.4324 99.5368 98.0495 93.8165 86.4443 81.1723 82.2552 84.8596 89.3573 94.8516 100.352 105.541 86.5831 86.6359 86.6928 86.7686 86.889 87.0394 87.2292 87.4839 87.8331 88.3078 88.9463 89.7928 90.8943 92.3332 94.0634 95.7387 97.3486 98.7714 99.7663 99.9434 98.4618 93.9938 85.8767 80.2436 81.9493 84.6542 89.2681 94.8385 100.359 105.661 86.3845 86.3415 86.391 86.4694 86.5849 86.7334 86.9207 87.174 87.5246 88.0054 88.6592 89.5365 90.683 92.2093 94.1161 95.8569 97.5487 99.0553 100.13 100.394 98.9283 94.2037 85.1949 79.1399 81.6436 84.43 89.1719 94.8263 100.364 105.786 86.0111 86.04 86.0852 86.1522 86.2536 86.3945 86.5798 86.8331 87.1846 87.6689 88.3362 89.247 90.4384 92.0181 94.1703 95.9663 97.7594 99.3616 100.524 100.891 99.4548 94.4525 84.373 77.8274 81.3496 84.1861 89.0689 94.8155 100.367 105.924 85.6925 85.72 85.7581 85.8083 85.888 86.0233 86.2083 86.4628 86.8131 87.2959 87.9725 88.92 90.1618 91.6608 94.1909 96.05 97.9803 99.6914 100.948 101.438 100.048 94.7494 83.3791 76.2721 81.0812 83.9214 88.9593 94.8067 100.365 106.07 85.3427 85.3694 85.4061 85.4181 85.501 85.638 85.8151 86.0662 86.4103 86.883 87.5609 88.5487 89.8625 91.0476 94.0502 96.0852 98.2128 100.046 101.401 102.037 100.718 95.1106 82.1842 74.4561 80.8644 83.6344 88.8433 94.8 100.357 106.221 84.9726 84.996 85.035 85.2005 92.8083 85.2196 85.4014 85.6462 85.9767 86.4261 87.091 88.1206 89.5623 90.6425 93.5099 96.0527 98.4618 100.429 101.882 102.691 101.467 95.5645 80.7809 72.3307 80.7345 83.3236 88.7206 94.7958 100.343 106.38 84.5984 84.614 84.6346 84.6617 84.6912 84.7843 84.9698 85.2044 85.5137 85.9201 86.547 87.6192 89.2549 90.7113 92.4636 95.9649 98.7374 100.841 102.389 103.405 102.298 96.1482 79.1988 69.7661 80.7035 82.9879 88.5897 94.7937 100.318 106.545 84.2289 84.2346 84.2439 84.2606 84.2903 84.3732 84.5274 84.7432 85.027 85.3602 85.9057 87.0211 88.8851 90.8317 91.2499 95.8988 99.0551 101.288 102.916 104.181 103.225 96.8856 77.5531 66.6287 80.7776 82.6247 88.4478 94.7938 100.281 106.713 83.8602 83.852 83.8455 83.84 83.8475 83.9325 84.0797 84.2744 84.5282 84.7412 85.1283 86.2892 88.4567 90.7836 90.5365 95.9817 99.4331 101.774 103.456 105.023 104.25 97.7798 76.0809 63.0366 80.9618 82.2256 88.291 94.796 100.228 106.876 83.4829 83.461 83.4436 83.4196 83.3978 83.4136 83.7897 83.835 84.0241 84.0504 84.1328 85.3717 88.002 90.634 90.7448 96.3065 99.888 102.304 103.998 105.932 105.379 98.8227 74.9106 59.4469 81.2388 81.7676 88.1284 94.8011 100.154 107.028 83.0713 83.0448 83.0375 83.0072 82.9495 82.956 83.1958 83.4301 83.5186 83.2677 82.7539 84.195 87.5298 90.5354 91.7008 96.8412 100.43 102.885 104.523 106.909 106.625 99.9818 74.4004 56.4888 81.4695 81.2019 88.0378 94.8117 100.055 107.157 82.5704 82.5753 82.6404 82.6039 82.4242 82.3838 82.7098 83.1136 83.0386 82.3915 80.5553 82.5631 87.0659 90.5131 92.8991 97.4248 101.067 103.53 105 107.944 108.003 101.38 74.4419 -0.948749 81.3194 80.4392 88.1594 94.8336 99.923 107.245 81.8248 81.9784 82.381 82.3522 81.7122 81.5471 82.1908 83.0179 82.5201 81.464 77.6321 80.7318 86.6522 90.5142 93.9368 97.9025 101.815 104.258 105.368 109.019 109.506 102.998 74.6669 0.509376 38.2434 79.371 88.7512 94.8751 99.7463 107.265 80.111 80.5629 82.7736 82.9938 80.276 80.2918 81.4504 83.898 81.2102 81.626 74.3166 79.6272 86.3805 90.4877 94.7671 98.427 102.708 105.105 105.508 110.1 111.046 104.452 76.3084 0.601704 0.0308743 31.4332 90.3323 94.9477 99.5092 107.175 0.248759 0.245958 0.238342 0.231102 0.235091 0.234613 0.232861 0.219509 0.236057 9.77939 39.8093 78.5408 86.3404 90.3664 95.6052 99.358 103.778 106.138 105.234 111.135 112.48 106.177 53.1907 0.304643 0.0337388 0.148265 92.7767 95.058 99.1985 106.921 0.248271 0.254905 0.244045 0.254275 0.237034 0.237232 0.229759 0.221649 0.216186 0.219545 0.263635 0.0731888 86.4344 89.9543 96.624 100.41 105.023 107.499 104.306 112.024 113.845 106.728 9.12032 0.201957 0.0592801 0.0985936 82.9502 95.1685 98.8054 106.649 0.261152 0.254605 0.241955 0.237766 0.23031 0.223713 0.224268 0.221909 0.21137 0.186947 0.183295 0.204957 10.7371 88.8544 98.3674 100.99 106.431 109.372 103.104 112.505 114.948 106.434 2.01588 0.159222 0.0626037 0.0657096 0.0461667 95.1722 98.2481 106.806 0.243777 0.242706 0.240834 0.235435 0.226249 0.21611 0.211543 0.213732 0.194247 0.14433 0.103617 0.0928292 0.146849 85.1082 102.101 100.948 107.997 111.097 103.756 112.635 115.762 106.422 0.293125 0.133839 0.0564452 0.0491083 0.14806 62.7936 97.3334 106.781 0.234042 0.234599 0.240492 0.438935 0.223239 0.186237 0.192721 0.200969 0.174394 0.119294 0.0714716 0.0687857 0.086191 -0.806703 110.317 100.502 109.561 111.318 106.523 112.848 115.833 105.286 -0.462531 0.0893121 0.0480572 0.0417045 0.134843 -0.348529 93.9337 105.686 90.3195 99.0503 97.1224 0.0612972 -0.137154 -0.195032 -0.274645 -0.8809 -0.896653 107.522 116.445 118.729 105.699 108.476 105.542 99.3858 0.0529378 0.475337 0.147238 0.0927625 0.141907 0.158307 0.177093 0.201541 0.230207 0.245639 0.250987 0.249942 0.244172 0.373038 75.3977 53.4727 1.11998 0.0550516 -0.132897 -0.189988 -0.26981 -0.897189 -0.0550071 112.647 117.329 119.724 106.155 107.037 105.409 100.938 0.536311 1.32981 0.120225 0.191105 0.12906 0.146316 0.164195 0.191262 0.222384 0.240091 0.262553 0.245575 0.245637 6.77558 38.7569 0.203845 -0.00629856 0.0494447 -0.127691 -0.184649 -0.260152 -0.877139 -0.113333 114.316 118.389 121.005 108.05 105.474 106.91 0.443207 0.447923 1.21961 0.0869236 0.43621 0.11973 0.134502 0.151309 0.179118 0.213121 0.233218 0.253072 0.2417 0.236388 0.325812 26.9921 0.208258 0.00108577 0.0428759 -0.121832 -0.178973 -0.268516 -0.822269 -0.0253191 119.116 118.615 121.038 111.157 104.598 90.7422 0.46044 0.264843 5.12608 0.02865 0.143021 0.114007 0.123878 0.164994 0.165833 0.2025 0.224874 0.232126 0.235437 0.233538 0.237369 35.5057 0.107999 0.00816123 0.0356858 -0.115572 -0.172902 -0.262843 0.0926209 0.0693115 113.329 118.585 119.94 114.717 107.98 0.105783 0.437448 0.147638 4.25712 0.028825 0.0860407 0.109969 0.122087 0.150856 0.152748 0.191046 0.212438 0.223066 0.225651 0.224794 0.224586 16.7072 0.0916688 0.0135892 0.0282075 -0.109153 -0.166372 -0.236544 -0.00284335 0.0210974 92.0089 122.56 122.482 118.355 0.387874 0.173806 0.415513 0.137163 0.388232 0.0348916 0.0899296 0.12999 0.211236 0.124234 0.139618 0.179524 0.200166 0.209827 0.213317 0.212849 0.211535 -0.19895 0.0979536 0.0176974 0.0207767 -0.102725 -0.159347 -0.226744 -0.152953 0.0162417 2.99763 118.407 123.994 120.797 0.151595 0.203236 0.285796 0.138007 0.20338 0.0677217 0.0960593 0.113047 0.216533 0.116924 0.136107 0.167892 0.225894 0.195197 0.200018 0.200057 0.198875 -0.15469 0.0891435 0.0206358 0.0137559 -0.0963345 -0.151774 -0.210519 -0.0703781 -0.00663997 0.0799338 116.609 124.315 5.90769 0.289824 0.207333 0.212404 0.191884 0.57247 0.10123 0.104881 0.112458 0.110992 0.117397 0.133764 0.164796 0.229664 0.184788 0.186207 0.186254 0.185343 -0.118091 0.0996006 0.0226525 0.00751263 -0.0899828 -0.143594 -0.19184 -0.0958533 -0.0574861 0.0293927 0.233853 49.1873 -0.530624 0.0938197 0.200032 0.2096 0.197351 0.486495 0.122435 0.114335 0.115101 0.116872 0.122227 0.133451 0.148229 0.160811 0.168092 0.170287 0.170616 0.170763 -0.0846282 0.104891 0.0240443 0.00234 -0.0836837 -0.134766 -0.177653 -0.0690418 -0.122465 0.0934148 0.168296 0.0413929 -0.321086 0.0875683 0.188854 0.200997 0.14726 0.15272 0.148315 0.123244 0.119766 0.121749 0.128568 0.135252 0.141574 0.147602 0.150841 0.152615 0.153294 0.154623 -0.057473 0.101429 0.0249991 -0.00168182 -0.0774572 -0.125271 -0.156771 -0.0477866 -0.0577464 -0.0976331 0.134819 0.105903 -0.21822 0.0871555 0.264807 0.196783 0.155454 0.152346 0.144414 0.131823 0.124969 0.125853 0.13238 0.154702 0.135463 0.135137 0.133875 0.135055 0.135615 0.138502 -0.0357312 0.0923691 0.0254886 -0.00462585 -0.0713471 -0.115158 -0.135197 -0.0196301 0.0670729 -0.190523 0.0896461 0.0707861 -0.0336112 0.0920692 0.169729 0.186358 0.150443 0.172531 0.152641 0.140423 0.134411 0.405327 0.129314 0.131224 0.128322 0.126745 0.120858 0.131629 0.14009 0.125472 -0.0177644 0.079421 0.0254928 -0.00667341 -0.065366 -0.104525 -0.113244 0.00409772 0.0593604 -0.152157 0.0483977 0.037984 -0.0152584 0.0821104 0.157723 0.196369 0.145152 0.158227 0.157876 0.1462 0.193704 0.228842 0.139401 0.131711 0.123838 0.115171 0.110203 0.108376 0.110745 0.114635 -0.00375667 0.10691 0.0249946 -0.0080186 -0.0595019 -0.0935143 -0.0933354 0.0208865 0.131418 -0.0852313 0.0713785 0.0199339 0.0280651 0.0590419 0.163711 0.151429 0.139206 0.156129 0.160264 0.161803 0.18273 0.154481 0.145806 0.136858 0.124172 0.113824 0.10676 0.104759 0.108152 0.110233 0.00524814 0.109604 0.0239881 -0.00880467 -0.0537342 -0.0823276 -0.0743818 0.0365635 0.129696 0.0487367 -0.00323602 0.0502978 0.0117954 0.0488356 0.136068 0.114407 0.156754 0.179739 0.160838 0.161327 0.160871 0.160843 0.150016 0.139534 0.126004 0.11505 0.108985 0.107751 0.118342 0.112376 0.0114685 0.0976045 0.0224817 -0.00914154 -0.0480391 -0.071184 -0.0569416 0.0485731 0.112821 -0.0668533 -0.220189 0.149513 0.0378341 0.0596373 0.0630463 0.0900015 0.112053 0.132864 0.155551 0.169935 0.15582 0.153554 0.149397 0.141141 0.125878 0.117612 0.112965 0.111242 0.111937 0.114931 0.0148529 0.0588097 0.0204853 -0.00911511 -0.0424166 -0.0603287 -0.0419746 0.0432631 0.097218 -0.0860191 -0.124719 0.127105 0.0419371 0.049139 0.0334709 0.0636809 0.101274 0.127221 0.141436 0.143061 0.14485 0.141048 0.139426 0.130928 0.123083 0.11812 0.115673 0.112197 0.111165 0.111789 0.0156946 0.055117 0.0180987 -0.00880158 -0.0368938 -0.0500017 -0.0294614 0.0392262 0.0778717 -0.0146877 0.0736876 0.148621 0.0208791 -0.0135281 -0.0076992 0.0287651 0.076452 0.104076 0.178333 0.123817 0.135981 0.127064 0.126435 0.125689 0.121201 0.118275 0.129139 0.108769 0.106535 0.104401 0.014346 0.070381 0.0154873 -0.0082715 -0.0315275 -0.0404265 -0.0198072 0.0374632 0.0611745 -0.0409512 0.131166 0.946691 0.0184807 -0.0461214 -0.0559379 -0.014858 0.0399103 0.0769183 0.0926748 0.105008 0.110802 0.114279 0.116093 0.114442 0.11396 0.111854 0.111532 0.108762 0.10753 0.1072 0.0124283 0.0527626 0.0128344 -0.00759258 -0.0263916 -0.0317945 -0.0120604 0.0328291 0.0555594 -0.0705672 0.119792 0.865908 -0.000583797 -0.0675691 -0.0913642 -0.0557558 0.00753082 0.0534319 0.0773972 0.0894898 0.0970314 0.101973 0.104663 0.217193 0.106803 0.105508 0.105348 0.106076 0.108077 0.11083 0.010606 0.0306756 0.0102541 -0.00682763 -0.0215754 -0.0242566 -0.00525864 0.0285815 0.050147 0.0522108 0.102919 0.11579 -0.00441384 -0.0656679 -0.104373 -0.0769093 -0.0134385 0.0374939 0.0623977 0.0766977 0.0849333 0.0897751 0.091577 0.091037 0.0949564 0.0967089 0.0981565 0.0998212 0.101581 0.102595 0.00627912 0.0272282 0.00773229 -0.00602734 -0.0171694 -0.0178941 -0.00285082 0.0240278 0.041601 0.0579673 0.0830278 0.0569202 0.00245227 -0.0538903 -0.0882018 -0.0665828 -0.0114885 0.0331326 0.064764 0.0758119 0.0762562 0.0803449 0.0829913 0.0852297 0.0874022 0.0892275 0.0908418 0.0924235 0.0940551 0.0957593 -0.000605194 0.0268701 0.00518274 -0.00522457 -0.0132545 -0.0127616 -0.000784828 0.0184447 0.0283794 0.0370143 0.0524047 0.0369927 0.0462091 -0.0334816 -0.0478673 -0.028693 0.00901126 0.0417989 0.0594925 0.0694062 0.0768549 0.0720431 0.0741801 0.0762783 0.0783762 0.0803106 0.0820192 0.0835319 0.0848903 0.0861175 -0.0124938 0.0268146 0.00256993 -0.00442281 -0.00988948 -0.0088466 0.00256996 0.0122487 0.00559201 0.00400336 0.0234959 0.0203638 0.00395612 -0.0152087 -0.0200721 0.209705 0.0273986 0.0512367 0.0619649 0.0653817 0.0661341 0.0628094 0.062774 0.063548 0.0650656 0.0668522 0.0685942 0.0701008 0.0712574 0.0720714 -0.0404585 0.00576322 0.000322603 -0.00359871 -0.00710056 -0.00604226 -0.00136136 0.000893278 -0.0277507 -0.0369619 -0.00862556 0.00634893 0.00358855 -0.00125447 0.00283609 0.0188749 0.0310142 0.0406467 0.0501418 0.051728 0.0497941 0.0490899 0.0454062 0.0449958 0.0447681 0.0463144 0.0489209 0.0489106 0.0501232 0.05095 -0.033779 -0.00985024 -0.000778884 -0.00274106 -0.00487133 -0.00420817 -0.00280885 -0.00900681 -0.0631996 -0.0952324 -0.0403976 -0.00393745 0.00290512 0.0176623 0.0221646 0.0194403 0.0256405 0.077438 0.0385277 0.0297735 0.0326272 0.032332 0.0269008 0.0219914 0.0203799 0.0254109 0.0195686 0.0210877 0.0225044 0.032606 -0.00536907 -0.00034197 -0.000754441 -0.00189484 -0.00313844 -0.00301419 -0.00414602 -0.0114456 -0.0569296 -0.11267 -0.050164 -0.0100609 0.00077872 0.00547577 0.00851317 0.0129746 0.0121056 0.0163802 0.017916 0.0350537 0.132022 0.139317 0.040783 -0.00553571 -0.00782896 -0.00720129 -0.00533193 -0.00380787 -0.00297288 0.00700772 0.00340985 0.00156462 -0.000345882 -0.00113049 -0.00180716 -0.00206937 -0.00410003 -0.0137334 -0.0145873 0.0117499 -0.0382955 -0.0141963 -0.00458123 0.000827143 0.00465306 0.00877398 0.00617505 0.006571 0.0306661 0.00813505 0.00575465 0.000261709 -0.00487436 -0.00338498 -0.00985339 -0.00812067 -0.0064904 0.00985729 0.00292561 0.0425247 0.00422673 0.00120535 -8.1739e-05 -0.000501635 -0.000786376 -0.00109708 -0.00268808 -0.00781221 0.0471708 -0.0184264 -0.0243123 -0.0192418 -0.0131565 -0.00780899 -0.00398422 -0.00208834 -0.0021547 -0.00339007 -0.00647153 -0.00459049 -0.00204596 -0.00165016 -9.43199e-06 0.000137856 0.000241875 -0.00104584 -0.00131019 -0.000796937 -0.000673896 0.00155802 0.00235991 0.000432116 -1.29664e-06 -0.00012667 -0.000190271 -0.000304958 -0.000913532 -0.00242402 -0.00455921 -0.0117764 -0.0233627 -0.026467 -0.0220698 -0.0162532 -0.011506 -0.0085224 -0.00736727 -0.007785 -0.00901067 -0.00954463 -0.00879611 -0.00709548 -0.00496742 -0.00302105 -0.00133973 0.000480801 0.000932517 0.00109445 0.00105695 0.000755652 0.146067 0.230522 0.247772 0.35064 0.225987 0.651787 0.181208 0.194308 0.165661 0.107469 0.0619018 0.0487714 0.059178 0.0790338 102.529 100.237 110.227 111.668 108.177 113.18 116.192 105.883 -0.433504 0.0565109 0.0436274 0.0396698 0.126808 -0.300714 0.0946492 104.686 0.613714 0.242514 0.248744 0.286863 0.21656 0.537115 0.168344 0.189015 0.15937 0.100852 0.0551274 0.0485526 0.0593746 0.123648 2.10742 99.5898 109.64 112.196 109.531 113.643 117.51 109.111 -0.377386 0.0274215 0.0398802 0.0385223 0.118206 -0.255418 0.0708339 101.291 0.153459 0.221513 0.235938 3.91066 0.190553 0.220639 0.183138 0.183577 0.155176 0.0955433 0.0553945 0.0531727 0.0765585 0.168665 0.431681 101.581 109.23 111.861 112.797 114.17 119.542 63.6974 -0.276705 0.00790082 0.0363308 0.0378027 0.108494 -0.216847 0.0522772 0.0530476 0.231908 0.215301 0.197993 4.15359 0.187057 0.205778 0.188325 0.177505 0.15274 0.100909 0.0623773 0.0613497 0.0826072 0.349433 0.404141 -0.126014 109.58 113.21 111.431 114.925 121.429 6.03239 -0.10362 0.000376476 0.0330575 0.0373494 0.0981565 -0.183987 0.0419245 0.0416407 0.219792 0.209625 0.197677 0.222253 0.179033 0.219887 0.185854 0.171481 0.152013 0.110967 0.0762976 0.0717406 0.0891743 0.110674 0.046563 -0.0488973 13.8381 114.127 109.76 115.003 120.219 0.341917 -0.0435991 0.000516301 0.0300833 0.0369976 0.0876827 -0.155509 0.0345242 0.0381877 0.207879 0.202498 0.196483 0.191061 0.182527 0.206263 0.220143 0.166538 0.152273 0.123429 0.0941744 0.0844159 0.0955354 0.108912 0.045201 -0.0956154 0.289382 113.907 109.89 115.716 118.008 -0.203271 0.0294589 -0.000117949 0.0274179 0.0365906 0.0774417 -0.130345 0.0280591 0.036015 0.196581 0.192965 0.188727 0.184597 0.180856 0.180925 0.169776 0.163339 0.152962 0.131944 0.110305 0.0981702 0.0980632 0.104434 0.0570963 -0.00835232 1.06469 -0.0691679 48.2529 116.595 126.81 -0.187039 0.0446623 -0.00351483 0.0250344 0.0359961 0.0677134 -0.107917 0.0219168 0.0315797 0.18409 0.181874 0.197474 0.179058 0.174665 0.171864 0.165158 0.160479 0.153039 0.137517 0.122748 0.109237 0.100143 0.0884217 0.0672477 0.0899518 0.355425 -0.0378841 -0.143086 -0.200344 -0.311429 -0.125922 0.00653924 -0.0100968 0.0228987 0.0351234 0.058698 -0.0882012 0.016094 0.02975 0.170923 0.171113 0.181144 0.182195 0.166048 0.163843 0.159351 0.15491 0.157045 0.140776 0.12911 0.11678 0.0969554 0.0847116 0.0673577 0.141223 0.168997 -0.0315155 -0.14786 -0.195434 -0.296083 -0.288245 0.00233898 -0.0121739 0.0209593 0.0339151 0.0505225 -0.0706483 0.0110395 0.027808 0.155978 0.15721 0.158076 0.155873 0.156578 0.156707 0.153899 0.150248 0.145438 0.138136 0.128149 0.175345 0.0991119 0.0799642 0.0630389 0.0712778 0.118292 0.0161208 -0.151759 -0.194743 -0.319392 -0.341616 -0.0434933 -0.0122141 0.0191651 0.0323504 0.043221 -0.055176 0.00679238 0.0257521 0.140901 0.143333 0.14567 0.147305 0.159112 0.151894 0.148732 0.145926 0.14196 0.134815 0.126504 0.159289 0.0999322 0.0763227 0.067199 0.0353926 0.0139547 0.00357987 -0.153537 -0.188062 -0.297322 -0.368037 -0.0522407 -0.0128201 0.0174759 0.0304446 0.0367723 -0.0417659 0.00346676 0.0231829 0.128382 0.132045 0.135645 0.139582 0.143102 0.173439 0.166988 0.141693 0.138835 0.132182 0.12444 0.115961 0.0989908 0.0732407 0.0544454 0.0223444 0.00626265 0.0273771 -0.10095 -0.182164 -0.255014 -0.49604 -0.056681 -0.0118863 0.0158635 0.0282451 0.0311213 -0.0305896 0.00107416 0.020236 0.118725 0.123028 0.127914 0.133119 0.13778 0.145123 0.166094 0.13821 0.140021 0.129889 0.118892 0.139448 0.128216 0.0716369 0.0488288 0.0193921 -0.00278377 0.654217 -0.0869737 -0.140534 -0.226126 -0.496797 -0.0853068 -0.0111523 0.0143039 0.0258222 0.0261977 -0.0217953 -0.00050441 0.0171333 0.114794 0.122377 0.125034 0.133658 0.133972 0.14339 0.136933 0.137495 0.135718 0.12701 0.115342 0.113327 0.107363 0.0713164 0.039339 0.0114722 -0.00941004 0.422889 -0.0686356 -0.201493 -0.15881 -0.478356 0.140185 -0.00776921 0.0127694 0.0232528 0.0219441 -0.0152351 -0.00142191 0.0140773 0.115847 0.120926 0.126661 0.129905 0.135568 0.135229 0.135541 0.137082 0.142023 0.123985 0.111087 0.100058 0.118096 0.0768265 0.113109 0.00175584 -0.0229874 0.168073 -0.0838806 -0.20072 -0.134349 -0.39633 0.04475 -0.00455187 0.0112311 0.0206126 0.0183061 -0.0104736 -0.0019913 0.0112323 0.119594 0.12539 0.131971 0.138801 0.138038 0.139567 0.154492 0.13354 0.827052 0.119114 0.1063 0.0952064 0.0806951 0.13835 0.0416923 -0.00703066 -0.0352244 -0.0241998 -0.0517583 -0.166885 -0.0912027 -0.249551 -0.00932872 -0.00366274 0.0096572 0.0179608 0.0152179 -0.00705453 -0.00231054 0.00870221 0.113712 0.115736 0.53885 0.735636 0.538418 0.134381 0.134779 0.129544 0.12927 0.108509 0.104095 0.0931343 0.0759058 0.0600804 0.0352941 -0.0128797 -0.0428402 -0.0635639 1.11431 -0.12622 -0.133425 -0.131108 -0.0260603 -0.0036049 0.00802008 0.0153441 0.0126034 -0.00458797 -0.00237361 0.00654428 0.101254 0.0974704 0.0965341 0.102832 0.110164 0.218782 0.279421 0.179816 0.119787 0.11358 0.106877 0.0939571 0.076346 0.0510091 0.0307748 -0.0158366 -0.0537222 -0.0835881 0.971721 0.223723 -0.143026 -0.0773777 -0.0181934 -0.00408793 0.00629915 0.0127988 0.0103811 -0.00277783 -0.002232 0.00479293 0.107573 0.109051 0.111822 0.116003 0.119909 0.123643 0.126794 0.1258 0.132864 0.120779 0.111562 0.0953687 0.0734107 0.046255 0.019423 -0.0205543 -0.048268 -0.0709747 1.07478 -0.0220387 -0.160607 0.0427404 -0.0177159 -0.00513057 0.00448916 0.0103559 0.00847532 -0.00145915 -0.00185328 0.00343724 0.122255 0.114191 0.11687 0.12051 0.124426 0.128396 0.132123 0.135149 0.130876 0.12476 0.112182 0.0920727 0.065677 0.0342664 0.00122281 -0.0268848 -0.0553644 -0.0723156 0.925784 -0.0405163 -0.106555 -0.0684386 -0.0218078 -0.00670757 0.00260745 0.00804243 0.00681947 -0.000524389 -0.00135828 0.00243643 0.11906 0.110397 0.112898 0.116487 0.120655 0.125232 0.129952 0.13105 0.12782 0.119035 0.102723 0.080168 0.0467825 0.0110641 -0.0219264 -0.0469313 -0.060673 -0.0749293 0.0703848 -0.0412158 -0.0542024 -0.0737106 -0.0255603 -0.00860675 0.000695608 0.00588721 0.00536305 0.000102536 -0.000864185 0.00173333 0.097574 0.0996989 0.102241 0.105174 0.108479 0.114806 0.114568 0.114279 0.10922 0.0959776 0.0740211 0.0488278 0.0295792 -0.0322277 -0.063505 -0.0756141 -0.0793502 -0.0830843 0.134103 0.428193 -0.0584553 -0.0577372 -0.0279208 -0.0105399 -0.00117006 0.00392155 0.00407468 0.000480412 -0.000431811 0.00126227 0.0872287 0.088323 0.0894621 0.0905685 0.091475 0.0917343 0.09023 0.0846831 0.071863 0.0495989 0.0185942 -0.0163172 -0.0428953 -0.114722 -0.139043 -0.125697 -0.10089 -0.0802809 0.312696 -0.0384771 0.0555805 -0.0512862 -0.0287746 -0.0122882 -0.00289291 0.00218231 0.00294187 0.000659031 -9.40984e-05 0.000954547 0.0725751 0.0728028 0.0726513 0.0718773 0.0700923 0.0665002 0.0588037 0.0459573 0.0403052 -0.0121381 -0.0591467 -0.131233 -0.205125 -0.255425 -0.260156 -0.197027 -0.127605 -0.0673202 -0.00483838 -0.0278621 -0.0463979 -0.0470287 -0.0294224 -0.0137475 -0.00435347 0.000709547 0.00196493 0.000684472 0.000134986 0.000745161 0.0514029 0.0514402 0.0508072 0.0490353 0.045378 0.038908 0.0862147 0.0107625 -0.0240283 -0.0737438 -0.156294 -0.25068 -0.335698 -0.397477 -0.389922 -0.285291 -0.153934 -0.0598514 -0.0265598 0.433549 -0.0247663 -0.043832 -0.00765882 -0.0148864 -0.00540163 -0.000426923 0.00115284 0.000600701 0.000253265 0.000583588 0.0246248 0.0248878 0.0245153 0.0228879 0.0191275 0.0116273 -0.00345132 -0.00955786 -0.0559295 -0.0997932 -0.172899 -0.170776 -0.360759 -0.424127 -0.407697 -0.27015 -0.156261 -0.0300776 0.00928661 0.030834 -0.0117366 -0.0542092 -0.00942544 -0.0155482 -0.00584774 -0.00119192 0.000518758 0.000449751 0.000273001 0.000443465 9.0468e-05 0.0028173 0.0037112 0.0029473 -2.79231e-05 -0.00603482 -0.0162069 -0.0319895 -0.0555353 -0.0917417 -0.147782 -0.224353 -0.30493 -0.327707 -0.304047 -0.225979 -0.117573 -0.0107323 0.00641077 -0.000856503 2.73903 -0.0651203 -0.0311917 -0.0120211 -0.00548503 -0.0015377 7.44289e-05 0.000272107 0.00022123 0.000316586 0.0165995 -0.00128704 -0.000451951 -0.00110795 -0.00340002 -0.00697236 -0.0123296 -0.0207624 -0.0340458 -0.0545354 -0.0837623 -0.119537 -0.154308 -0.16924 -0.153691 -0.113753 -0.0513264 0.00775063 0.00593891 -0.019738 3.15988 -0.0211813 -0.0218313 -0.0096262 -0.00424425 -0.00144581 -0.00017949 9.61983e-05 0.000123516 0.000198555 0.00273 0.00736577 0.0341954 0.0394124 0.0669074 0.00279315 -0.00154012 -0.00481478 -0.0106958 -0.0206491 -0.0362989 -0.0538142 -0.0660482 -0.0693958 -0.0475738 0.0404977 0.00451174 0.0321367 0.0113689 0.00675321 0.0599534 -0.0078611 -0.0109621 -0.00483888 -0.00234405 -0.000987134 -0.000267139 -6.37528e-05 -4.24251e-06 8.23541e-05 -9.93306e-05 -0.0010456 -0.00217983 -0.00351789 -0.00592018 -0.00519392 -0.000780961 -0.000111874 -0.00307335 -0.00593777 -0.0153446 -0.0334708 -0.032985 -0.000292007 -0.0123373 -0.000886212 0.0080011 0.0164772 0.00702995 0.00463888 0.0111544 -0.000541744 -0.00304507 -0.00143893 -0.000788301 -0.000484193 -0.000257634 -0.000178536 -0.000117753 -1.07587e-05 120.851 110.63 100.08 92.3685 86.811 83.1594 82.067 84.4796 88.953 92.8532 95.1257 95.9181 95.692 94.8878 93.8322 92.7342 91.7144 90.8325 90.1088 89.5385 89.1035 88.7813 88.5494 88.3885 88.2829 88.2199 88.1893 88.1829 88.1943 88.2185 120.884 110.627 100.058 92.3498 86.7931 83.1251 81.9928 84.4157 88.9551 92.8993 95.1814 95.9659 95.7276 94.9111 93.8435 92.7335 91.7027 90.8116 90.0811 89.5063 89.069 88.7458 88.5138 88.3534 88.2483 88.1859 88.1558 88.1499 88.1618 88.1863 120.951 110.625 100.022 92.3176 86.7611 83.0636 81.8566 84.2877 88.9393 92.9671 95.2773 96.0544 95.7962 94.9582 93.869 92.7373 91.686 90.7778 90.0344 89.4514 89.0095 88.6843 88.4521 88.2923 88.1883 88.127 88.098 88.0932 88.1059 88.131 121.055 110.621 99.9699 92.2716 86.7155 82.9761 81.6603 84.1 88.9124 93.0591 95.4113 96.1815 95.8978 95.0304 93.9103 92.7472 91.666 90.7324 89.9702 89.375 88.9262 88.5982 88.3655 88.2065 88.104 88.0444 88.017 88.0135 88.0274 88.0533 121.196 110.613 99.902 92.2118 86.6564 82.8638 81.4019 83.8489 88.8761 93.1776 95.5837 96.3461 96.0303 95.125 93.965 92.7611 91.641 90.6743 89.8875 89.2764 88.8189 88.4872 88.254 88.0962 87.9955 87.9379 87.9122 87.9102 87.9254 87.9524 121.376 110.599 99.818 92.138 86.5842 82.7284 81.0785 83.5284 88.8305 93.3246 95.7963 96.5484 96.1922 95.2398 94.031 92.7775 91.6099 90.6024 89.7851 89.1542 88.6863 88.3505 88.1171 87.961 87.8625 87.8068 87.7829 87.7824 87.7989 87.8272 121.596 110.572 99.7176 92.0505 86.4994 82.5719 80.6866 83.1303 88.7761 93.5023 96.0513 96.7896 96.3836 95.3743 94.1078 92.7961 91.5721 90.5154 89.6612 89.0069 88.5269 88.187 87.9539 87.8002 87.7044 87.6511 87.6288 87.6297 87.6475 87.6773 121.859 110.531 99.6003 91.9491 86.4025 82.3972 80.2225 82.6443 88.7135 93.7134 96.3511 97.0711 96.6048 95.5285 94.1954 92.817 91.5271 90.412 89.5138 88.832 88.3385 87.9947 87.7633 87.6133 87.5213 87.4709 87.4506 87.4526 87.4715 87.5026 122.169 110.469 99.4658 91.834 86.2941 82.2081 79.6814 82.0566 88.6439 93.9611 96.6988 97.3947 96.8565 95.7026 94.2942 92.8401 91.4743 90.2902 89.3402 88.6266 88.1183 87.7716 87.5437 87.3995 87.3133 87.2671 87.2492 87.2521 87.2709 87.3026 122.527 110.379 99.3132 91.7052 86.1746 82.0094 79.0583 81.3492 88.569 94.2492 97.0979 97.7626 97.1393 95.8967 94.404 92.8657 91.4131 90.1481 89.1371 88.3867 87.8629 87.515 87.2934 87.1582 87.0804 87.0406 87.0264 87.0301 87.047 87.0755 122.95 110.255 99.1417 91.5629 86.0443 81.807 78.3474 80.4984 88.4915 94.582 97.5524 98.1772 97.4539 96.1106 94.525 92.894 91.3432 89.983 88.9004 88.1079 87.5677 87.2213 87.0102 86.8881 86.8224 86.792 86.7836 86.7891 86.8038 86.8255 123.456 110.083 98.9497 91.4073 85.9033 81.6086 77.5429 79.4726 88.4147 94.9641 98.0662 98.6415 97.8008 96.3443 94.6568 92.9252 91.2644 89.7922 88.6254 87.7841 87.2275 86.8865 86.6913 86.5877 86.5387 86.5213 86.5214 86.5306 86.5446 86.5658 124.061 109.851 98.7353 91.2387 85.7511 81.4235 76.6391 78.2302 88.3436 95.4008 98.6447 99.1586 98.1806 96.5972 94.7991 92.9595 91.1772 89.5723 88.3065 87.4081 86.8351 86.5053 86.3335 86.2552 86.2282 86.2276 86.2392 86.2551 86.2709 86.3871 124.783 109.556 98.4956 91.0574 85.5867 81.2635 75.6307 76.717 88.2844 95.8978 99.2934 99.7322 98.5937 96.8685 94.9507 92.9965 91.0824 89.3194 87.9371 86.9704 86.3817 86.0714 85.9331 85.8886 85.8895 85.9089 85.9335 85.9575 85.979 86.0006 125.645 109.206 98.2271 90.8637 85.4082 81.1433 74.509 74.8672 88.2446 96.4618 100.018 100.367 99.0402 97.1569 95.1105 93.0347 90.9807 89.0286 87.5099 86.4583 85.8555 85.5773 85.4861 85.4864 85.5221 85.5643 85.6018 85.6324 85.6577 85.6807 126.674 108.803 97.9246 90.6579 85.2124 81.0809 73.2666 72.6016 88.2329 97.1015 100.824 101.066 99.5196 97.4601 95.2762 93.0698 90.8689 88.6911 87.0155 85.8548 85.2408 85.0139 84.9889 85.0482 85.1279 85.1969 85.2472 85.2824 85.3087 85.3312 127.895 108.364 97.5814 90.4398 84.9942 81.0987 71.9074 69.7914 88.2608 97.8248 101.719 101.836 100.03 97.7748 95.4454 93.0936 90.7241 88.2865 86.4413 85.1356 84.5158 84.3716 84.4389 84.575 84.7114 84.8133 84.8775 84.9164 84.9421 84.9625 129.377 107.915 97.1884 90.2085 84.7462 81.2272 70.4987 66.2827 88.3578 98.6311 102.708 102.682 100.57 98.0949 95.6139 93.0943 90.4877 87.8456 85.7771 84.265 83.6488 83.6421 83.8377 84.0705 84.2807 84.4267 84.5086 84.5511 84.5749 84.5911 131.209 107.479 96.7334 89.9617 84.457 81.5018 69.2544 62.0238 88.569 99.5149 103.795 103.609 101.131 98.4104 95.7758 93.0653 90.1485 87.4664 85.0232 83.1912 82.593 82.825 83.1994 83.547 83.8517 84.0579 84.1609 84.2036 84.2196 84.2264 133.504 107.073 96.2004 89.6929 84.1129 81.9579 68.5888 57.2109 88.9046 100.47 104.982 104.621 101.703 98.7055 95.9539 93.024 89.8096 87.1367 84.1918 81.848 81.2841 81.9259 82.5499 83.0432 83.4607 83.7313 83.8486 83.8793 83.8762 83.8653 136.425 106.712 95.5671 89.3866 83.7066 82.6353 69.1598 52.9468 89.3125 101.465 106.268 105.723 102.26 98.9615 96.2472 93.0173 89.5836 86.8625 83.3231 80.1303 79.5707 80.9013 81.8697 82.5884 83.1512 83.4723 83.5805 83.5773 83.5371 83.4981 140.169 106.409 94.8002 89.0132 83.2046 83.5463 71.1797 63.4745 89.7437 102.473 107.647 106.915 102.75 99.1563 96.6442 93.1041 89.5231 86.7108 82.4933 77.6863 76.699 79.6065 81.1065 82.1664 82.952 83.3144 83.3736 83.2959 83.1848 83.0988 144.995 106.173 93.8533 88.5743 83.0892 84.585 -0.450522 -4.02397 90.3706 103.516 109.101 108.191 103.064 99.2424 97.0973 93.363 89.6703 86.7382 81.8882 74.3487 71.7229 77.9949 80.172 81.8143 82.9569 83.3334 83.2596 83.0404 82.7883 82.6127 151.236 106.013 92.6792 88.152 83.0455 85.349 -0.450052 -0.551753 91.7629 104.662 110.595 109.542 102.966 99.1087 97.9064 93.8604 90.048 86.949 81.828 71.9703 66.6851 76.7779 78.1555 81.5829 83.431 83.6348 83.2394 82.851 82.2917 81.8956 159.367 105.929 91.2284 87.8819 82.7595 83.2917 -0.412316 0.536616 93.8999 105.847 112.079 110.956 101.887 98.6637 98.6654 94.5966 90.5873 87.2784 83.1119 70.6191 41.8851 31.961 31.9022 59.972 75.9386 80.1065 81.5048 82.3249 81.1469 80.4114 170.043 105.905 89.4297 87.9711 50.7936 -0.33397 -0.410245 0.849741 95.4711 106.818 113.538 112.396 100.766 98.0935 99.7422 95.5511 91.077 87.511 85.8406 0.436822 0.354261 0.305168 0.277496 0.260741 0.254848 0.256003 0.252747 0.250947 0.249946 0.248904 184.699 105.91 87.2371 88.3047 -0.132782 -0.290814 -0.426148 -2.01163 97.2472 107.505 115 113.731 101.429 98.8046 100.863 96.7124 90.9379 86.8318 0.312025 0.303796 0.343339 0.268968 0.264801 0.259878 0.257048 0.255927 0.25441 0.252595 0.250909 0.249959 147.944 105.924 84.0975 0.0649661 -0.141014 -0.250998 -0.436666 -1.48937 99.0172 110.043 116.507 114.699 102.503 101.794 101.674 98.1896 89.5545 34.9331 0.293827 0.267453 0.247069 0.23364 0.246643 0.253979 0.256314 0.256641 0.255887 0.251783 0.248645 0.261637 472.675 106.093 81.4283 0.0286294 -0.150907 -0.231859 -0.450349 -1.18475 105.088 114.094 117.706 115.236 102.134 105.577 101.505 100.431 83.4934 0.167261 0.218593 0.201064 0.193548 0.202145 0.225897 0.242566 0.25256 0.255634 0.256711 0.267469 0.249408 0.244873 -2.95247 106.634 1.2987 0.00835034 -0.154595 -0.222351 -0.443658 -0.832036 130.056 114.258 116.437 115.83 100.827 107.218 99.5448 105.278 -0.69658 0.16573 0.230692 0.136745 0.167243 0.179136 0.213253 0.225873 0.245275 0.251613 0.262797 0.251025 0.250741 0.252524 88.2539 88.3048 88.3767 88.475 88.6066 88.7797 89.0046 89.294 89.6635 90.1316 90.7179 91.4402 92.3087 93.317 94.4319 95.5863 96.6664 97.4819 97.7291 96.9916 94.791 90.9321 86.532 84.1279 84.7144 87.672 92.3453 97.6694 102.833 106.386 88.222 88.2731 88.3452 88.4436 88.5751 88.7481 88.9728 89.2624 89.6327 90.1023 90.6915 91.4183 92.2933 93.3098 94.4341 95.5981 96.6885 97.5149 97.773 97.0433 94.8345 90.9325 86.4721 84.0693 84.6849 87.6557 92.3392 97.6659 102.836 106.402 88.1672 88.2186 88.2908 88.3891 88.5204 88.6929 88.9176 89.2075 89.5792 90.0518 90.6463 91.3815 92.2688 93.3016 94.4447 95.6275 96.7354 97.5784 97.8513 97.1274 94.8947 90.9143 86.3553 83.9627 84.6307 87.6258 92.3299 97.6623 102.845 106.436 88.0902 88.142 88.2144 88.3126 88.4434 88.6154 88.8398 89.1304 89.5042 89.9814 90.5836 91.3312 92.2368 93.2943 94.4659 95.6769 96.8091 97.6718 97.9617 97.243 94.9757 90.8849 86.1858 83.8098 84.5522 87.5824 92.3173 97.6581 102.86 106.488 87.9901 88.0427 88.1154 88.2136 88.344 88.5154 88.7396 89.0311 89.4079 89.891 90.5035 91.2673 92.197 93.2869 94.4957 95.7428 96.9055 97.7925 98.103 97.391 95.0801 90.8457 85.9599 83.6097 84.4501 87.5254 92.3013 97.6533 102.881 106.559 87.8661 87.9196 87.993 88.0914 88.2214 88.3924 88.6164 88.9092 89.2895 89.7799 90.405 91.1888 92.1485 93.2789 94.533 95.8225 97.0215 97.9389 98.2755 97.5727 95.2096 90.7961 85.6716 83.3616 84.3251 87.4545 92.2822 97.6477 102.908 106.648 87.7176 87.7724 87.8466 87.9453 88.0752 88.2456 88.4696 88.7638 89.1483 89.6473 90.287 91.0945 92.0902 93.2699 94.5775 95.9152 97.1563 98.1104 98.4795 97.7895 95.3663 90.7355 85.3136 83.0644 84.1782 87.3697 92.2603 97.641 102.94 106.756 87.5446 87.6008 87.6756 87.7747 87.9045 88.0744 88.2983 88.594 88.9832 89.4917 90.1482 90.9826 92.0205 93.2595 94.6296 96.021 97.3095 98.307 98.7155 98.0434 95.5524 90.6634 84.876 82.7173 84.0107 87.2709 92.236 97.6329 102.978 106.884 87.3469 87.4046 87.4781 87.5781 87.7085 87.8779 88.1015 88.3986 88.7928 89.3117 89.9866 90.8513 91.9374 93.2475 94.6898 96.1397 97.4813 98.5288 98.9844 98.3363 95.7711 90.5793 84.3461 82.3197 83.8242 87.1578 92.21 97.6233 103.019 107.03 87.1218 87.1858 87.2485 87.354 87.4862 87.6552 87.8782 88.1765 88.5758 89.1058 89.8006 90.698 91.838 93.2338 94.7585 96.2708 97.6714 98.7758 99.2869 98.6706 96.0258 90.4828 83.7067 81.8712 83.6202 87.0301 92.1829 97.6117 103.065 107.198 86.8858 87.1278 86.9808 87.1026 87.2372 87.4058 87.6275 87.9264 88.3305 88.8718 89.5878 90.5202 91.7185 93.2185 94.8359 96.4131 97.8796 99.0482 99.6238 99.049 96.3206 90.3735 82.9344 81.372 83.4008 86.8873 92.1553 97.5976 103.115 107.39 86.6078 86.6668 86.7234 86.8258 86.9613 87.1291 87.3483 87.6471 88.0555 88.608 89.346 90.3152 91.5726 93.2017 94.9208 96.5646 98.1057 99.3461 99.9961 99.4748 96.6605 90.2513 81.9964 80.8234 83.168 86.7286 92.1283 97.5806 103.167 107.607 86.395 86.363 86.4263 86.5233 86.6562 86.822 87.0387 87.3374 87.7493 88.3117 89.0724 90.0807 91.3908 93.1828 95.0087 96.7218 98.3495 99.6695 100.405 99.9517 97.0515 90.1161 80.8442 80.2273 82.9239 86.5531 92.1025 97.5601 103.221 107.848 86.0234 86.0608 86.1157 86.1986 86.3199 86.4818 86.6976 86.9969 87.4104 87.9801 88.7635 89.8154 91.1563 93.1531 95.0865 96.8798 98.6113 100.019 100.851 100.483 97.5013 89.9684 79.4044 79.5878 82.6702 86.3589 92.0789 97.5352 103.276 108.116 85.7053 85.7378 85.7818 85.8443 85.9448 86.111 86.3268 86.6264 87.0377 87.6094 88.4142 89.5188 90.8424 93.0656 95.1222 97.0331 98.8922 100.394 101.335 101.074 98.0199 89.809 77.5922 78.9144 82.4077 86.1434 92.0579 97.5052 103.33 108.409 85.3552 85.3868 85.423 85.485 85.5499 85.721 85.9317 86.2274 86.6298 87.1941 88.0167 89.1876 90.4619 92.7617 95.0467 97.1773 99.1948 100.795 101.858 101.732 98.6219 89.6391 75.354 78.2288 82.1353 85.9023 92.0395 97.4689 103.384 108.73 84.9834 85.0124 85.0782 92.1739 85.1265 85.3058 85.5156 85.8018 86.1851 86.7268 87.5589 88.8134 90.1978 92.1707 94.7551 97.3137 99.5234 101.222 102.42 102.461 99.3258 89.466 72.5427 77.5874 81.8538 85.628 92.0232 97.4253 103.434 109.079 84.6059 84.6237 84.6473 84.6984 84.7001 84.8751 85.0795 85.3516 85.7029 86.1966 87.0226 88.3854 90.0761 91.559 94.2167 97.4564 99.8844 101.674 103.021 103.269 100.143 89.3147 68.8773 77.0675 81.5611 85.3075 92.0076 97.3727 103.478 109.455 84.2315 84.2387 84.251 84.2741 84.3192 84.4487 84.6226 84.8821 85.1854 85.5887 86.38 87.8819 89.9329 90.9681 93.6306 97.636 100.287 102.149 103.658 104.164 101.057 89.2284 64.1883 76.7524 81.2439 84.9177 91.9909 97.3091 103.514 109.861 83.8557 83.8486 83.8421 83.8398 83.8737 84.0443 84.1401 84.4066 84.6388 84.8795 85.5883 87.2862 89.7219 90.5059 93.3778 97.8938 100.741 102.644 104.329 105.156 102.074 89.2727 58.5626 76.7895 80.8894 84.4249 91.9712 97.2321 103.537 110.294 83.4708 83.4522 83.4328 83.4054 83.398 83.9929 83.7558 83.9394 84.0644 84.0261 84.5682 86.5866 89.4751 90.4402 93.7187 98.2608 101.258 103.152 105.026 106.256 103.203 89.5118 52.1845 77.3693 80.4799 83.7961 91.9441 97.1392 103.543 110.755 83.0539 83.0408 83.0272 82.9777 82.9368 83.0379 83.3298 83.4967 83.4635 82.9467 83.1491 85.7878 89.2272 90.8064 94.5583 98.7339 101.852 103.664 105.738 107.478 104.512 90.0947 46.446 78.7853 79.9522 83.017 91.9036 97.0282 103.526 111.237 82.5595 82.6092 82.6445 82.5188 82.3647 82.5027 82.9562 83.1129 82.9043 81.2934 80.9085 84.9046 88.991 91.396 95.5389 99.2756 102.537 104.166 106.443 108.831 105.984 91.2485 56.455 70.5994 79.0538 82.1049 91.8491 96.8969 103.475 111.731 81.8541 82.1851 82.4641 82.0485 81.5175 81.7815 82.6781 82.7958 82.519 78.7334 78.3071 84.0328 88.769 92.0212 96.3214 99.8678 103.337 104.636 107.107 110.308 107.597 92.3578 -1.57932 0.221106 74.5061 81.1519 91.7939 96.7434 103.387 112.217 80.6101 81.9283 83.3187 81.6316 79.8834 80.7221 82.9046 82.5191 83.1299 76.1705 76.048 83.5877 88.5495 92.5978 96.9137 100.59 104.286 105.03 107.66 111.859 109.253 93.7905 -0.164911 0.252885 0.0157558 80.3749 91.7861 96.5665 103.267 112.665 0.248577 0.241519 0.233815 0.232115 0.235537 0.232933 0.240598 0.195958 3.53765 14.4553 72.7243 83.467 88.366 93.1867 97.7151 101.583 105.419 105.284 107.984 113.378 110.812 94.4004 -0.293712 0.234667 0.0147724 49.5091 91.798 96.3758 103.073 113.017 0.24788 0.255068 0.258324 0.259034 0.245037 0.233826 0.239978 0.21679 0.213354 0.245293 0.239226 82.9606 88.1373 93.85 98.6739 102.806 106.774 105.324 107.912 114.852 112.873 96.0485 -0.100923 0.174356 0.0136109 0.0676761 91.8588 96.2421 102.75 113.167 0.259398 0.245788 0.24019 0.23422 0.22705 0.242803 0.223091 0.218515 0.198647 0.183703 0.180483 0.0399658 87.2057 94.5001 99.4106 104.082 108.353 105.229 107.651 115.669 115.004 98.569 0.0851489 0.117877 0.0111444 0.0798053 80.7534 96.342 102.568 112.889 0.243329 0.241881 0.238527 0.230935 0.221304 0.212475 0.213035 0.209011 0.168972 0.123613 0.100654 0.0754062 -0.455381 95.3475 99.7461 105.299 109.73 105.765 108.637 115.847 115.046 89.2071 0.160616 0.0787729 0.010843 0.0753638 0.106113 96.6834 102.353 111.917 0.23095 0.238372 0.327989 0.229516 0.211625 0.196405 0.198603 0.19442 0.142291 0.0907246 0.0857798 0.0728704 0.0473191 73.7728 97.8636 106.38 110.369 106.515 111.172 114.986 113.724 32.4413 0.0567924 0.0530985 0.0127276 0.0714148 0.116942 -0.0920119 102.268 111.476 -3.44293 107.686 -0.0328003 0.000604682 -0.154058 -0.217939 -0.436199 -0.753162 22.5244 119.663 116.191 116.455 100.463 107.374 95.1803 103.115 0.726863 0.0761772 0.285389 0.109134 0.15271 0.165804 0.189597 0.216691 0.239592 0.248835 0.254511 0.247349 0.240383 0.324992 -0.213775 107.783 0.0262026 -0.00587958 -0.152397 -0.214052 -0.40884 -0.932223 34.3344 122.872 118.338 117.143 100.919 106.986 93.3439 0.771804 0.891322 0.0679098 0.655225 0.0999741 0.140495 0.1535 0.176737 0.207397 0.233125 0.244036 0.247638 0.244529 0.252388 13.5959 -0.264083 7.0408 0.023696 -0.0118439 -0.14958 -0.209931 -0.418517 -0.811024 12.4673 122.659 120.104 117.515 102.924 106.071 90.07 0.374433 1.18684 -0.0695219 0.322451 0.0879497 0.129971 0.142335 0.163736 0.196681 0.225095 0.236846 0.242422 0.239923 0.228189 0.385415 -0.233053 0.263862 0.019483 -0.0172632 -0.145811 -0.205283 -0.374471 -0.683138 37.2066 123.285 120.442 118.499 105.103 106.466 0.135928 0.467714 0.846722 -0.199138 0.253567 0.098764 0.122224 0.127525 0.155854 0.184864 0.215345 0.241025 0.234764 0.23527 0.232046 0.250213 -0.234169 0.0673911 0.0169273 -0.0221876 -0.141299 -0.199716 -0.328967 -0.0996413 10.9013 125.085 121.662 120.435 106.265 27.9575 0.319651 0.420132 5.27521 -0.0341585 0.099164 0.099877 0.200963 0.119489 0.168466 0.172729 0.204204 0.229995 0.224795 0.225444 0.224259 0.223968 -0.194663 0.0486095 0.0150927 -0.0264974 -0.136215 -0.192503 -0.290977 -0.218424 0.00811074 127.36 123.65 119.368 106.257 0.276701 0.445479 0.326347 0.623977 -0.0267199 0.0706859 0.0976189 0.207175 0.112585 0.159576 0.161204 0.192631 0.205894 0.212251 0.213385 0.212961 0.209981 -0.151995 0.0497696 0.0134875 -0.0300343 -0.13065 -0.185179 -0.247186 -0.184234 -0.2641 123.175 125.651 121.657 3.71363 0.285367 0.13916 0.261977 0.269434 0.0697725 0.0854269 0.103208 0.208792 0.109643 0.123932 0.15206 0.181382 0.24074 0.198562 0.200351 0.199471 0.197892 -0.126137 0.0501256 0.0120489 -0.0326826 -0.12464 -0.176365 -0.254778 -0.173677 -0.440344 2.29778 129.993 124.103 0.569219 0.265707 0.22622 0.230294 0.226299 0.128668 0.101549 0.108522 0.111659 0.112649 0.124124 0.144175 0.171665 0.183481 0.185615 0.186344 0.185798 0.184804 -0.0461294 0.0501288 0.0108602 -0.0343924 -0.118176 -0.166289 -0.220334 -0.153281 -0.642495 0.156034 71.193 -0.0824396 1.25185 0.234765 0.212985 0.214164 0.283851 0.146574 0.115666 0.11433 0.115657 0.11903 0.127192 0.140257 0.155307 0.16529 0.169486 0.170485 0.170676 0.170851 -0.0294543 0.050041 0.00998675 -0.0351978 -0.111257 -0.154925 -0.185562 -0.0924549 -0.836526 0.105181 0.200379 -0.0510247 1.1186 0.194144 0.219153 0.198054 0.14379 0.14753 0.12714 0.121018 0.119824 0.130859 0.131845 0.140003 0.144942 0.14948 0.151777 0.152806 0.153931 0.155311 -0.0141608 0.0492497 0.00939672 -0.0352059 -0.103899 -0.142311 -0.13873 -0.0218199 -0.867142 0.0341438 0.149367 -0.0688963 0.0839048 0.162423 0.238356 0.184251 0.145559 0.155296 0.137456 0.127343 0.125729 0.132659 0.132327 0.135899 0.135335 0.135694 0.13481 0.134765 0.137148 0.139724 -0.00152106 0.0475665 0.00897453 -0.0345713 -0.0961508 -0.128618 -0.114747 0.038618 -0.610014 -0.0190434 0.113287 -0.0386292 0.0639002 0.138244 0.215175 0.171229 0.148754 0.162139 0.146286 0.14073 0.128918 0.219141 0.130153 0.130405 0.125985 0.123908 0.12035 0.13964 0.124359 0.126821 0.013692 0.0456058 0.00857257 -0.0334451 -0.0880801 -0.114202 -0.0796373 0.0714305 -0.287878 -0.0375316 0.0798104 -0.0476245 0.0510595 0.160316 0.164614 0.155419 0.147832 0.160946 0.153659 0.468041 0.153274 0.171399 0.138863 0.128328 0.119084 0.112365 0.108852 0.109005 0.112631 0.11663 0.0211051 0.0439374 0.0080692 -0.031932 -0.0797729 -0.0994597 -0.051899 0.0829457 -0.0261576 -0.0560719 -0.0618213 -0.00917104 0.0348706 0.145915 0.135264 0.174385 0.146247 0.159841 0.16038 0.468711 0.158654 0.150287 0.142374 0.130826 0.118087 0.110739 0.105328 0.104501 0.107959 0.1125 0.0293695 0.0414133 0.00740499 -0.0300921 -0.0713415 -0.084805 -0.0251519 0.0980773 0.0632466 -0.0733242 0.146368 -0.0007547 0.0285558 0.0810464 0.106712 0.118322 0.142753 0.208236 0.161852 0.160533 0.163218 0.155759 0.145462 0.132868 0.120082 0.11175 0.107902 0.108742 0.12 0.113936 0.0422739 0.0386248 0.00658048 -0.0279618 -0.0628977 -0.0706619 -0.0208541 0.0924006 0.0966989 -0.184233 1.0002 0.0338827 0.0297257 0.0424429 0.0773598 0.101003 0.124972 0.184717 0.154194 0.15767 0.155217 0.151349 0.145518 0.13139 0.1214 0.114869 0.111794 0.111301 0.113145 0.117048 0.0255233 0.0346485 0.00564039 -0.0255827 -0.0545677 -0.0574201 -0.00547307 0.0840269 0.0725951 -0.127995 0.622194 0.0357529 0.0382679 0.0175663 0.047826 0.0815513 0.111715 0.2039 0.141597 0.150571 0.142245 0.142411 0.135029 0.126743 0.119447 0.122573 0.113533 0.111453 0.111288 0.112597 0.0494145 0.0301579 0.00464834 -0.0230098 -0.0464837 -0.0453944 -0.000905887 0.0740934 0.0254177 0.446243 0.234541 0.0399318 -0.000366125 -0.0168867 0.0080994 0.0517299 0.0918386 0.186071 0.120266 0.126422 0.126293 0.127093 0.125237 0.12366 0.118903 0.120283 0.11199 0.107629 0.105456 0.103018 0.00564404 0.025377 0.00366237 -0.0203131 -0.0387865 -0.0347891 0.00441224 0.0635202 -0.0157939 1.36255 0.171951 0.0343466 -0.0169947 -0.0602448 -0.0397151 0.012753 0.0635025 0.0860418 0.0998986 0.108347 0.112728 0.11541 0.115743 0.114303 0.112916 0.110914 0.110876 0.10803 0.107308 0.107279 0.0258258 0.0210722 0.00271313 -0.0175688 -0.0316125 -0.0257464 0.00867238 0.0534068 0.0227272 0.152155 0.242425 -0.00757689 -0.034613 -0.0872248 -0.0800686 -0.0251538 0.0338113 0.0677054 0.0841088 0.0936377 0.0997061 0.103837 0.210798 0.216462 0.105992 0.105286 0.105651 0.111113 0.109198 0.114456 0.0571856 0.0173171 0.00180126 -0.0148571 -0.0250936 -0.0183607 0.0100807 0.0441529 0.0478032 0.116285 0.0879945 0.0237132 -0.0354701 -0.092694 -0.0982456 -0.0468876 0.0159705 0.0513735 0.0704594 0.0812797 0.0876881 0.0910829 0.0913426 0.0932183 0.0959426 0.0974055 0.0989479 0.100707 0.102289 0.103851 0.0405977 0.0137073 0.000910931 -0.0122558 -0.0193394 -0.0124954 0.00956334 0.0359631 0.0423509 0.0811634 0.0701687 0.0292017 -0.0255624 -0.0729955 -0.084607 -0.0405811 0.0134491 0.0469917 0.070998 0.073922 0.0785285 0.0817659 0.0840942 0.0863372 0.0883435 0.0900367 0.091619 0.0932201 0.0948867 0.0966282 0.0457753 0.00989305 3.8609e-05 -0.00983121 -0.0144317 -0.00822568 0.00805724 0.0271349 0.0289559 0.0492886 0.0476623 0.036145 0.00912035 -0.0456513 -0.0451634 -0.0115395 0.0269715 0.051732 0.0647952 0.0747072 0.071657 0.0731219 0.0752074 0.0773238 0.0793583 0.0811808 0.082787 0.0842195 0.0855119 0.0866752 0.0567251 0.00511854 -0.0007616 -0.00763402 -0.0104116 -0.00547533 0.00609826 0.0411341 -0.000605514 0.016498 0.0243773 0.0138221 -0.00646057 -0.017521 0.183554 0.0152113 0.0383303 0.0575233 0.062518 0.0676845 0.0628354 0.0627811 0.0630348 0.0642375 0.0659413 0.0677253 0.0693811 0.0707156 0.0717008 0.0723548 0.0396314 0.0003667 -0.00132419 -0.00569785 -0.00726645 -0.00380905 -3.15881e-05 0.0200861 -0.0553097 -0.0304895 0.00260471 0.00606626 0.000897801 -0.00101485 0.0100927 0.0238728 0.0373859 0.0454489 0.0521048 0.0511386 0.0522058 0.0457295 0.0450088 0.0446235 0.04523 0.0472772 0.0481171 0.0496257 0.0505881 0.0512189 -1.74087e-05 -0.00135631 -0.00144642 -0.00403957 -0.00491725 -0.00322764 -0.000784998 -0.00826762 -0.0995437 -0.0785234 -0.0153179 0.000897898 0.00360472 0.177195 0.0155979 0.0205701 0.0611884 0.0400873 0.0342522 0.0302069 0.0333522 0.0299398 0.0242208 0.0205826 0.0252584 0.0234682 0.0202916 0.0218295 0.0253958 0.024377 0.00186253 -0.000635289 -0.00113446 -0.002658 -0.00320629 -0.00303396 -0.00706043 -0.0235981 -0.104754 -0.0847459 -0.0238771 -0.00326038 0.00339041 0.00729672 0.0171168 0.0128896 0.0136619 0.0179146 0.0166563 0.0918993 0.139483 0.0978631 0.000559483 -0.00716346 -0.00803652 -0.00628125 -0.004497 -0.00331902 -0.00258913 -0.00126011 0.001909 0.000210852 -0.000688165 -0.00154132 -0.00192172 -0.00259769 -0.00730724 -0.0226617 0.00588141 0.0401898 -0.0236838 -0.00856207 -0.00164217 0.00288674 0.00583958 0.0134663 0.00642659 0.0195584 0.0161144 0.00985 0.0038985 -0.00302982 -0.00559858 -0.00760315 -0.0089613 -0.00719214 -0.00588671 -0.00106143 0.0543207 0.0500305 0.00116075 0.000385561 -0.000297045 -0.000672125 -0.000883317 -0.00161151 -0.00449765 0.0569148 -0.00726765 -0.0243957 -0.0221275 -0.0162256 -0.0103652 -0.00569758 -0.00279687 -0.00188244 0.000167991 -0.00489598 -0.00684629 -0.00440274 -0.00150891 -0.0007058 0.00334712 -0.00105178 -0.000846885 -0.00122147 -0.00137632 -0.00113284 0.00673698 0.00201589 0.00273481 0.000317166 -9.55289e-05 -0.000180309 -0.000250195 -0.00068937 -0.0019122 -0.00415726 0.00645756 -0.0207041 -0.0267449 -0.0234735 -0.0176614 -0.0125381 -0.00909329 -0.0074888 -0.00761116 -0.00870935 -0.00954013 -0.00908919 -0.00761034 -0.00559361 -0.0034944 -0.00173261 -0.000120047 0.000658637 0.000997741 0.00103984 0.00107852 0.000173577 0.211129 0.23902 0.266914 0.234977 0.231038 0.319368 0.19105 0.186789 0.133254 0.095364 0.0692398 0.0536363 0.0895459 -0.435273 94.4411 107.371 110.671 106.375 112.751 114.043 115.781 -2.79628 -0.00961087 0.0431295 0.0144164 0.0693803 0.0984256 -0.0734371 97.3687 110.81 0.27116 0.240991 0.263986 0.226876 0.225819 0.241755 0.187517 0.180392 0.126695 0.0704865 0.0457202 0.0595335 0.195148 0.132917 83.6909 107.243 110.969 105.358 115.091 112.861 119.745 -0.0527027 -0.0553447 0.0359791 0.0161656 0.0675999 0.0812848 -0.0623814 1.48854 110.081 0.204486 0.228603 0.278223 0.132859 0.208507 0.201966 0.185007 0.174353 0.125898 0.0701329 0.0487275 0.0661961 0.129514 0.163066 0.147919 108.505 111.668 103.687 116.901 112.007 121.486 -0.192813 -0.0673037 0.0300464 0.0179276 0.0656004 0.0656599 -0.0540186 -0.0528823 94.926 0.221044 0.210575 2.69351 1.57582 0.196643 0.200392 0.181978 0.168691 0.128166 0.0770423 0.0574073 0.0739293 0.114523 0.122473 0.498916 82.8623 113.727 104.745 117.345 113.627 123.161 -0.0823381 0.0626071 0.0253102 0.0195935 0.0632891 0.0523964 -0.0491447 -0.0402807 2.03409 0.214575 0.204257 0.190927 0.165917 0.193241 0.207266 0.176651 0.164078 0.132894 0.0900734 0.0705592 0.080638 0.107072 0.0624866 0.123004 -0.125506 117.654 108.118 116.709 116.075 123.832 -0.0138042 0.0126908 0.021427 0.0210813 0.0606675 0.0414831 -0.0448314 -0.0329727 0.0925313 0.205302 0.199496 0.193008 0.18417 0.184527 0.211329 0.169551 0.161009 0.139521 0.106086 0.0880521 0.0885168 0.10859 0.103493 0.132069 -0.0903051 -0.175189 109.801 119.985 118.216 64.2507 -0.0281279 0.00578982 0.0181991 0.0223115 0.0576818 0.0325177 -0.0406518 -0.0310048 0.040724 0.194873 0.190858 0.186697 0.1822 0.180861 0.177261 0.166587 0.159148 0.143522 0.119899 0.103227 0.0964298 0.0991577 0.0994055 0.19017 0.00796466 0.450772 -0.0655949 120.869 119.27 -0.411347 -0.0888962 -0.0322089 0.0153518 0.0232132 0.0543364 0.0249538 -0.0364701 -0.0217526 0.0202326 0.183041 0.183372 0.183268 0.176488 0.173354 0.169001 0.169367 0.157606 0.145615 0.128964 0.117226 0.102048 0.0962669 0.0839502 0.110378 0.0261706 0.302961 -0.0728567 -0.0206829 -0.249157 -0.344534 -0.0295265 -0.0630316 0.012831 0.0237266 0.0506757 0.0190372 -0.032311 -0.0162557 0.00933351 0.170976 0.172297 0.182348 0.167024 0.165085 0.161868 0.156799 0.162893 0.146135 0.132146 0.126467 0.118293 0.0927904 0.0788211 0.116477 0.0341256 0.080403 -0.0712559 -0.135483 -0.256107 -0.353046 -0.218252 -0.0731998 0.0108371 0.0238115 0.0467604 0.014574 -0.0281314 -0.0159605 0.00260287 0.156573 0.157812 0.157035 0.156146 0.156879 0.155546 0.152069 0.148176 0.144328 0.132145 0.133973 0.127149 0.0899522 0.0718717 0.126441 0.0284982 0.038939 -0.0687559 -0.172075 -0.2401 -0.340133 -0.198198 -0.0592669 0.00881209 0.023455 0.0426641 0.0113394 -0.0235011 -0.0113982 -0.00121206 0.14207 0.144575 0.146706 0.147849 0.156281 0.149965 0.14753 0.144119 0.139102 0.130506 0.127174 0.111963 0.08738 0.0674853 0.0690325 0.0233558 -0.00450391 -0.0597264 -0.161708 -0.243882 -0.437231 -0.268275 -0.0280965 0.00738468 0.0226745 0.038469 0.00907422 -0.0191527 -0.00784794 -0.00265156 0.130255 0.133819 0.137625 0.141356 0.144754 0.170116 0.14363 0.140532 0.135651 0.128551 0.118105 0.110689 0.08392 0.0625781 0.0446903 0.0133365 0.000286557 0.0199 -0.07868 -0.246234 -0.410216 -0.201207 -0.0244745 0.00631998 0.0215179 0.0342696 0.00750205 -0.015484 -0.0052528 -0.00252182 0.120874 0.12544 0.132899 0.135527 0.142917 0.164599 0.139183 0.142992 0.13589 0.124628 0.113273 0.135294 0.0832164 0.0617976 0.0377789 0.00403392 -0.013464 0.268794 -0.0757352 -0.172984 -0.485973 -0.355702 -0.0377864 0.00557959 0.0200507 0.0301609 0.00638005 -0.0124434 -0.00344346 -0.00153949 0.117151 0.125866 0.128084 0.131244 0.1357 0.137201 0.137243 0.137428 0.131659 0.12336 0.108638 0.110737 0.0825073 0.0585431 0.0283897 -0.00721565 -0.0167055 0.10852 -0.117421 -0.16796 -0.412637 -0.350588 -0.0205672 0.00503131 0.0183427 0.0262306 0.00554065 -0.00993171 -0.00230898 -0.000308647 0.118026 0.125053 0.127663 0.131832 0.135082 0.134922 0.135592 0.141541 0.130321 0.116561 0.105613 0.103852 0.0899305 0.122605 0.0156314 -0.0184622 -0.0334456 -0.0648729 -0.174754 -0.104362 -0.312535 -0.112322 -0.00804035 0.00443854 0.0164592 0.0225511 0.00489299 -0.00790638 -0.00152787 0.000714641 0.122351 0.128647 0.135389 0.137729 0.141706 0.140987 0.139186 1.50367 0.099062 0.109661 0.101391 0.0872702 0.0771622 0.11265 0.0161874 -0.0222734 -0.053972 -0.0541157 -0.174169 -0.121803 -0.226182 -0.0879878 -0.00954732 0.00367318 0.0144519 0.0191611 0.00440205 -0.00630082 -0.00094948 0.00133649 0.114976 0.182011 0.759427 0.758728 0.134869 0.130694 0.13387 0.160668 0.102953 0.106686 0.0994146 0.08532 0.0551431 0.0493566 0.012686 -0.0258977 -0.0629392 -0.0270269 -0.123846 -0.0549763 -0.175073 -0.0183645 -0.0107687 0.00270774 0.0123631 0.016073 0.00404033 -0.00501667 -0.000501777 0.00154734 0.0993705 0.0961855 0.09855 0.107272 0.109306 0.421629 0.15216 0.181236 0.12136 0.110874 0.101063 0.0856428 0.0636412 0.0453857 0.00687832 -0.0368948 -0.0632398 0.274326 -0.10828 -0.0222471 -0.198003 -0.0120734 -0.00999911 0.00152776 0.0102269 0.0132777 0.00375014 -0.00390615 -0.000175258 0.00147046 0.108141 0.110171 0.11386 0.118116 0.121644 0.125688 0.126837 0.124957 0.12316 0.117034 0.104125 0.0849784 0.0601151 0.0318837 0.00101173 -0.0329454 -0.0630563 0.0913917 -0.00151971 0.0658913 -0.200369 -0.0284725 -0.0105913 7.64712e-05 0.00807646 0.0107574 0.00346628 -0.00284405 4.78316e-05 0.00122847 0.117865 0.115377 0.118641 0.122487 0.126418 0.135224 0.132717 0.13263 0.128292 0.119277 0.102913 0.0793747 0.0502692 0.0175335 -0.0126681 -0.04387 -0.0651318 -0.0889012 -0.0627467 -0.0644126 -0.143616 -0.0422282 -0.0127348 -0.00157755 0.00594814 0.00849138 0.00315015 -0.00189775 0.00020305 0.00092032 0.110059 0.111466 0.114624 0.118538 0.122935 0.12971 0.137114 0.129959 0.124397 0.111792 0.0915117 0.069914 0.0291398 -0.00665568 -0.035834 -0.0535612 -0.0674094 -0.0797984 0.364766 -0.0627242 -0.100748 -0.042771 -0.0153099 -0.00337934 0.00388636 0.00646477 0.00278473 -0.00112299 0.00031662 0.000639221 0.0985949 0.100935 0.103677 0.106804 0.110303 0.113373 0.114912 0.112417 0.103547 0.0858859 0.0662317 0.0308277 -0.011727 -0.0509753 -0.0712314 -0.0779028 -0.0806234 -0.0836364 0.500157 -0.114394 -0.063575 -0.0424949 -0.0175228 -0.00521189 0.00194579 0.0046702 0.00236848 -0.000523483 0.000403917 0.000429358 0.0877743 0.0888974 0.0900332 0.091069 0.0917365 0.0914407 0.0881022 0.0794107 0.0616265 0.0352324 -0.00198293 -0.0110214 -0.0871542 -0.13842 -0.127758 -0.113634 -0.0888196 -0.0688958 -0.0255152 -0.107173 -0.0567328 -0.0403558 -0.0191068 -0.00693406 0.000190734 0.00310984 0.00191388 -9.99048e-05 0.00046437 0.000301894 0.0727261 0.072786 0.0723572 0.0711326 0.0685967 0.0631799 0.0528731 0.0374081 0.00946324 -0.0331103 -0.0938949 -0.170458 -0.235628 -0.266905 -0.237211 -0.154616 -0.0955224 -0.0391198 -0.0329407 -0.0485686 -0.0497715 -0.0388391 -0.0201891 -0.00839739 -0.00129489 0.00179491 0.00144701 0.00016068 0.000486656 0.000235794 0.0514834 0.0512277 0.0500908 0.0474798 0.0424904 0.0348071 0.0747949 -0.00567356 -0.0262061 -0.108717 -0.211899 -0.293091 -0.373241 -0.404269 -0.314211 -0.217268 -0.090759 -0.0327422 0.117119 -0.0114181 -0.0439896 -0.0144455 -0.020844 -0.00941946 -0.0024171 0.000743753 0.00100029 0.000280372 0.000459978 0.000201008 0.0248028 0.0248141 0.0238933 0.021324 0.0159501 0.00536406 -0.0172432 -0.0412764 -0.0777671 -0.132133 -0.113471 -0.218971 -0.401442 -0.427324 -0.361768 -0.225743 -0.0904743 -0.0122162 0.0228409 0.430256 -0.0587435 -0.0381085 0.00383462 -0.00970616 -0.00306333 -2.23754e-05 0.000603174 0.000287255 0.000389363 0.00017389 0.00180167 0.00345429 0.00355678 0.00176155 -0.00263069 -0.0105793 -0.0234098 -0.0426725 -0.0719971 -0.117477 -0.183937 -0.26711 -0.320215 -0.322176 -0.271144 -0.173157 -0.0666068 -0.00478522 0.00712609 0.0722875 -0.0261341 -0.0384668 -0.0231515 -0.00878055 -0.00313625 -0.000484377 0.000278224 0.000216114 0.000291185 0.000142327 -0.00191344 -0.000726074 -0.000585919 -0.0020753 -0.00505638 -0.00940273 -0.0161098 -0.0267834 -0.0434242 -0.0682092 -0.101638 -0.138045 -0.165102 -0.165494 -0.135866 -0.0842941 -0.0249594 0.00459055 -3.79472e-05 -0.0728682 -0.0426607 -0.00308213 -0.0163399 -0.00647481 -0.00260749 -0.00064336 3.80516e-05 0.000101414 0.000175509 0.000103934 0.00826979 0.0301206 0.0686319 0.0356536 0.0949352 0.000401529 -0.00327094 -0.00731832 -0.0150983 -0.0279396 -0.0458153 -0.06144 -0.0688922 -0.0627393 -0.034072 0.103768 0.0113184 0.0141534 0.00842325 0.0145853 0.00457291 -0.0103076 -0.0075505 -0.00328537 -0.00158705 -0.000542092 -0.000122336 -3.72107e-05 4.56762e-05 5.69789e-05 -0.000792212 -0.00185847 0.00276683 -0.00435205 -0.00697969 0.00444156 0.000103252 -0.00193957 -0.00801761 -0.0131308 -0.0260095 -0.0284297 -0.0275506 0.0259022 -0.00949439 0.0047623 0.0262203 0.00796158 0.00469177 0.00833887 0.00142015 -0.00324323 -0.00170558 -0.000820892 -0.000563642 -0.000298255 -0.000190792 -0.000138299 -3.63783e-05 8.3156e-06 121.97 116.204 104.904 95.8665 89.3193 84.7152 82.212 82.8811 86.6689 91.0915 94.1954 95.6719 95.8929 95.3285 94.3667 93.2724 92.2059 91.2539 90.4535 89.8107 89.3125 88.938 88.6643 88.4705 88.3392 88.2563 88.2106 88.1929 88.1961 88.2144 122.03 113.009 102.442 94.0607 88.0192 83.8773 82.0168 83.5644 87.8045 92.0285 94.722 95.8427 95.8243 95.127 94.1085 93.0048 91.956 91.0348 90.27 89.6618 89.1946 88.8461 88.5936 88.4167 88.2987 88.2262 88.1883 88.1766 88.1842 88.2057 122.14 113.018 102.419 94.0375 87.9981 83.845 81.9378 83.4711 87.7816 92.0705 94.7872 95.9038 95.8718 95.1594 94.1265 93.0083 91.9458 91.0129 90.2391 89.6248 89.1542 88.8042 88.5513 88.3748 88.2574 88.1856 88.1485 88.1374 88.1456 88.1675 122.301 113.038 102.381 93.9999 87.9636 83.7917 81.8065 83.3099 87.7305 92.1272 94.8895 96.0061 95.9545 95.2189 94.1621 93.0197 91.9338 90.9806 90.1911 89.5664 89.0897 88.7368 88.4833 88.3072 88.1909 88.1204 88.0846 88.0747 88.0838 88.1064 122.516 113.07 102.33 93.9476 87.9157 83.7184 81.6236 83.0816 87.6563 92.2023 95.0279 96.1473 96.0715 95.305 94.2154 93.0393 91.9204 90.9383 90.1268 89.4872 89.0019 88.645 88.3904 88.215 88.1002 88.0314 87.9973 87.9889 87.9993 88.0229 122.784 113.114 102.262 93.8806 87.8545 83.6262 81.3878 82.7809 87.5589 92.2981 95.2039 96.3269 96.2208 95.4151 94.2837 93.0646 91.9038 90.8849 90.0449 89.3863 88.89 88.5283 88.2726 88.0981 87.9851 87.9183 87.886 87.8792 87.8909 87.9157 123.107 113.173 102.178 93.7989 87.7801 83.5168 81.0981 82.401 87.4372 92.4165 95.4193 96.5459 96.4019 95.5474 94.3652 93.0944 91.8831 90.8192 89.9442 89.2622 88.7529 88.3856 88.129 87.956 87.8452 87.7806 87.7501 87.7448 87.7579 87.784 123.486 113.248 102.077 93.7024 87.6926 83.3923 80.7532 81.9329 87.2902 92.5596 95.6766 96.8061 96.6151 95.7017 94.4598 93.1287 91.8578 90.74 89.8229 89.1131 88.5886 88.2154 87.9586 87.788 87.6802 87.6182 87.5895 87.5856 87.6 87.6275 123.923 113.341 101.958 93.5911 87.5923 83.2553 80.3519 81.3649 87.1167 92.7302 95.9785 97.1092 96.861 95.8781 94.5673 93.1674 91.8276 90.6462 89.6791 88.9365 88.3949 88.016 87.76 87.5933 87.4899 87.4314 87.405 87.4023 87.4175 87.4462 124.419 113.456 101.82 93.465 87.4791 83.1089 79.8932 80.6818 86.9158 92.9316 96.3284 97.4574 97.1406 96.077 94.6881 93.2107 91.7922 90.5362 89.51 88.7292 88.1686 87.7846 87.5316 87.3711 87.2742 87.2208 87.1976 87.1962 87.2111 87.2395 124.972 113.599 101.663 93.324 87.3531 82.9572 79.3764 79.8634 86.6872 93.1677 96.73 97.8533 97.4549 96.2983 94.8221 93.2588 91.7513 90.4081 89.3123 88.4872 87.9059 87.5182 87.2711 87.1202 87.0329 86.9872 86.9689 86.9693 86.9828 87.0068 125.58 113.775 101.486 93.1682 87.2142 82.8048 78.8016 78.8828 86.4309 93.4427 97.1874 98.3 97.8048 96.542 94.9693 93.3118 91.7051 90.2601 89.0823 88.2058 87.602 87.2129 86.9758 86.8391 86.7655 86.7309 86.72 86.7236 86.7362 86.756 126.245 113.977 101.291 92.9978 87.0617 82.6571 78.1702 77.7028 86.1482 93.7618 97.7054 98.8011 98.1915 96.808 95.1293 93.3699 91.6538 90.0898 88.8154 87.879 87.2509 86.8639 86.6427 86.5259 86.4711 86.4515 86.4511 86.4603 86.4736 86.4909 126.962 114.193 101.078 92.8132 86.895 82.5207 77.482 76.2682 85.8418 94.1304 98.2893 99.3604 98.6162 97.0957 95.3015 93.4328 91.5981 89.8947 88.5064 87.499 86.8448 86.4651 86.2677 86.1785 86.1483 86.1479 86.161 86.1786 86.196 86.2133 127.726 114.393 100.849 92.6149 86.7126 82.4032 76.747 74.4963 85.5161 94.5546 98.9445 99.9824 99.08 97.4043 95.485 93.4998 91.5389 89.6716 88.1495 87.0563 86.3738 86.0093 85.8465 85.7945 85.7958 85.8183 85.8461 85.8727 85.8961 85.9181 128.524 114.544 100.604 92.4042 86.5124 82.3135 75.9838 72.311 85.1753 95.0402 99.6765 100.672 99.5839 97.7323 95.6781 93.5692 91.4753 89.4153 87.7391 86.5382 85.8243 85.4872 85.3743 85.3721 85.4135 85.4629 85.5058 85.5397 85.5667 85.5901 129.337 114.613 100.347 92.1829 86.2908 82.2621 75.2113 69.6381 84.8182 95.5942 100.491 101.435 100.129 98.077 95.8784 93.6386 91.3985 89.1094 87.2683 85.9273 85.1779 84.8877 84.8465 84.9106 85.0033 85.0852 85.1443 85.184 85.2121 85.2349 130.135 114.572 100.08 91.9537 86.0428 82.2612 74.4386 66.1606 84.4529 96.2263 101.393 102.276 100.715 98.4344 96.0814 93.7058 91.2756 88.7191 86.7278 85.2003 84.408 84.1978 84.2598 84.4105 84.5695 84.6929 84.7707 84.8161 84.8441 84.8646 130.875 114.388 99.8082 91.7214 85.7606 82.3256 73.6791 61.4377 84.1316 96.9503 102.39 103.202 101.341 98.7973 96.2773 93.7733 91.0431 88.3041 86.1153 84.3244 83.4745 83.4042 83.6169 83.8762 84.1199 84.2997 84.4024 84.454 84.4802 84.496 131.474 114.031 99.5365 91.4928 85.4332 82.4726 72.8894 54.9661 83.9338 97.7724 103.483 104.217 102.004 99.1535 96.448 93.8499 90.6886 88.0097 85.4455 83.2548 82.3167 82.4991 82.9356 83.3257 83.6733 83.9277 84.0604 84.1138 84.1311 84.1355 131.813 113.469 99.2756 91.2779 85.0495 82.7276 71.9551 45.8346 83.8862 98.6709 104.675 105.325 102.695 99.4823 96.6142 93.9536 90.3085 87.8038 84.7495 81.9471 80.8521 81.4734 82.2345 82.7979 83.2751 83.6059 83.7593 83.8005 83.7954 83.7788 131.682 112.673 99.0428 91.0907 84.6162 83.1333 70.6554 32.4547 83.9719 99.5627 105.971 106.525 103.399 99.749 96.9125 94.0985 90.0404 87.6607 84.0849 80.3515 78.8176 80.2219 81.466 82.2931 82.9618 83.3641 83.512 83.515 83.4654 83.4133 130.757 111.617 98.8695 90.9533 84.1657 83.765 68.0831 10.9286 84.5079 100.374 107.38 107.813 104.084 99.8927 97.388 94.2925 89.9849 87.6243 83.5593 78.2282 75.147 78.4449 80.598 81.7912 82.7584 83.2462 83.3451 83.262 83.1245 83.0091 128.552 110.289 98.8029 90.8914 84.3497 84.7091 68.9154 0.125145 85.625 101.141 108.917 109.173 104.688 99.7861 97.9844 94.6185 90.2051 87.7284 83.3214 75.8047 69.4432 76.2757 79.4319 81.2975 82.7785 83.3598 83.2978 83.0574 82.7493 82.5031 124.235 108.716 98.8868 90.8944 84.4909 85.8906 -0.455535 0.150152 87.7281 101.75 110.591 110.578 105.042 99.1067 98.7319 95.1605 90.7004 87.9576 83.5811 74.904 65.0616 74.8889 76.8225 80.8338 83.2836 83.9165 83.3228 82.9718 82.3155 81.7296 116.276 107.148 99.1367 90.9446 85.1674 80.8685 -0.34678 -0.0399122 89.114 102.064 112.374 111.983 104.805 97.3573 99.6909 95.9025 91.4307 88.3006 84.7166 75.6607 12.4499 0.363884 0.301916 1.19472 13.2048 24.5323 29.7342 35.6512 38.4046 41.1063 103.567 105.979 99.552 90.9893 75.4024 -0.334463 -0.360739 -0.404383 88.1484 102.311 114.151 113.316 104.59 96.0307 100.882 96.7624 92.1646 88.9653 85.4887 0.180747 0.330784 0.304649 0.279524 0.263813 0.256239 0.255754 0.253771 0.251869 0.250557 0.249293 93.3978 104.981 100.091 91.0289 -0.109836 -0.284449 -0.362013 -0.768376 81.7283 102.732 115.921 114.47 105.092 97.3601 102.134 97.6657 93.0314 90.6621 0.519516 0.315255 0.622234 0.256979 0.260918 0.259447 0.25744 0.25639 0.255171 0.253262 0.251228 0.251139 99.4237 104.241 100.493 0.00137362 -0.139772 -0.248095 -0.356954 -0.755521 72.8589 102.723 117.486 115.364 105.058 101.728 103.114 98.8554 95.1668 70.2184 0.146517 0.24239 0.265454 0.222138 0.237942 0.249738 0.255111 0.256569 0.256538 0.253853 0.247775 0.266223 68.2614 103.924 101.536 0.0275897 -0.158425 -0.227393 -0.351398 -0.84928 37.4358 101.894 118.103 116.067 103.307 106.658 103.085 100.363 100.97 0.346692 0.215675 0.162169 0.188999 0.220913 0.21739 0.234014 0.248962 0.254417 0.255395 0.266652 0.251232 0.247382 88.2438 88.2857 88.3464 88.4306 88.5445 88.6956 88.8929 89.1478 89.4746 89.89 90.4135 91.0643 91.8571 92.7954 93.8605 95.0037 96.1373 97.1147 97.6918 97.5064 96.0985 93.0516 88.6706 84.9682 84.0847 85.9146 89.8282 94.9516 100.302 104.931 88.2382 88.2846 88.3508 88.442 88.5646 88.7264 88.9372 89.2091 89.5572 89.999 90.5543 91.242 92.0748 93.0515 94.1462 95.3008 96.4154 97.3227 97.7491 97.3042 95.5111 92.0301 87.5389 84.4246 84.3152 86.7387 91.0808 96.3418 101.65 105.843 88.2003 88.247 88.3134 88.4047 88.5272 88.6888 88.8995 89.1715 89.5202 89.9637 90.5221 91.2147 92.0547 93.041 94.147 95.3134 96.44 97.36 97.7989 97.3635 95.5647 92.0423 87.4778 84.3445 84.2729 86.7157 91.072 96.3379 101.652 105.86 88.1398 88.1869 88.2535 88.3447 88.4669 88.6281 88.8386 89.1108 89.4608 89.9071 90.4707 91.1717 92.0243 93.028 94.1548 95.3427 96.4892 97.4269 97.8819 97.4561 95.6412 92.0485 87.3689 84.2108 84.2021 86.6767 91.0582 96.3333 101.658 105.894 88.0571 88.1046 88.1715 88.2627 88.3845 88.5452 88.7552 89.0279 89.3797 89.8302 90.4012 91.1142 91.9849 93.0136 94.1705 95.3893 96.5631 97.5225 97.9962 97.5808 95.7433 92.0548 87.2151 84.0234 84.1036 86.6216 91.0394 96.3276 101.667 105.944 87.9509 87.9993 88.0667 88.158 88.2795 88.4396 88.6493 88.9226 89.2769 89.7328 90.3133 91.0417 91.9358 92.9968 94.1925 95.4499 96.6573 97.6438 98.1404 97.7383 95.8733 92.0624 87.0126 83.7796 83.9781 86.5505 91.0156 96.3207 101.68 106.011 87.8204 87.8699 87.9382 88.0299 88.1512 88.3108 88.5202 88.7944 89.1517 89.6141 90.2062 90.9533 91.876 92.9771 94.2198 95.5224 96.7692 97.7889 98.3144 97.9297 96.0328 92.0719 86.756 83.4762 83.827 86.4633 90.987 96.3124 101.697 106.096 87.6654 87.7163 87.7856 87.8777 87.999 88.1581 88.3673 88.6424 89.0032 89.4731 90.0786 90.8475 91.8041 92.9539 94.2526 95.6067 96.8983 97.9574 98.5185 98.1564 96.2241 92.0839 86.4382 83.1092 83.652 86.3601 90.9537 96.3026 101.717 106.198 87.4858 87.5384 87.6081 87.7006 87.8222 87.9808 88.1896 88.4657 88.8303 89.3085 89.9291 90.7228 91.7185 92.9264 94.2914 95.7027 97.0444 98.1493 98.753 98.4198 96.4495 92.0992 86.0501 82.6738 83.4551 86.241 90.9161 96.2911 101.739 106.318 87.2809 87.3365 87.4037 87.4968 87.6196 87.778 87.9863 88.2631 88.6317 89.1189 89.7559 90.5771 91.6169 92.8938 94.3367 95.8105 97.2074 98.3647 99.0185 98.7218 96.7121 92.1194 85.5793 82.1648 83.2394 86.1059 90.8744 96.2775 101.763 106.457 87.0443 87.1217 87.1606 87.2645 87.3904 87.5489 87.7563 88.0336 88.406 88.9026 89.5573 90.4081 91.4962 92.855 94.3894 95.9294 97.387 98.6036 99.3155 99.0644 97.0153 92.1459 85.0098 81.5763 83.0084 85.9545 90.829 96.2615 101.788 106.614 86.7795 87.0388 86.8965 87.0056 87.1345 87.2932 87.4989 87.7758 88.1517 88.6578 89.331 90.2133 91.3523 92.8084 94.4501 96.0578 97.5827 98.8659 99.6445 99.4498 97.3633 92.1809 84.3201 80.9021 82.7666 85.7865 90.7801 96.2428 101.813 106.788 86.5282 86.5777 86.633 86.7232 86.8513 87.0098 87.2128 87.4887 87.8675 88.3825 89.0746 89.9904 91.1799 92.7507 94.5189 96.193 97.794 99.1519 100.006 99.8804 97.7606 92.2272 83.4811 80.1357 82.5198 85.6014 90.728 96.2209 101.838 106.98 86.31 86.2764 86.3321 86.4172 86.5393 86.6952 86.8958 87.1711 87.5521 88.0744 88.7852 89.7371 90.9723 92.673 94.5921 96.3297 98.0202 99.4618 100.401 100.36 98.2118 92.2878 82.4532 79.2695 82.2751 85.3983 90.673 96.1954 101.86 107.192 85.9406 85.9724 86.0199 86.0902 86.1968 86.3482 86.5469 86.8228 87.2045 87.7309 88.459 89.4513 90.7221 92.5423 94.6543 96.4598 98.2612 99.796 100.829 100.892 98.7215 92.3667 81.1819 78.2934 82.0413 85.176 90.6154 96.1657 101.88 107.417 85.6139 85.6435 85.6829 85.7289 85.8016 85.9701 86.1692 86.4454 86.8241 87.3484 88.0902 89.1304 90.4254 92.2404 94.6574 96.5724 98.5181 100.155 101.29 101.48 99.2928 92.4673 79.5999 77.2148 81.8289 84.9334 90.5553 96.1314 101.896 107.657 85.2575 85.2866 85.3307 85.2831 85.2678 85.5812 85.7699 86.0415 86.4104 86.9224 87.6705 88.7672 90.11 91.6391 94.4748 96.6571 98.7936 100.54 101.785 102.128 99.9267 92.5924 77.6456 76.095 81.6523 84.669 90.4927 96.0921 101.906 107.912 84.8837 84.9073 84.9426 84.7257 84.5217 85.1475 85.3499 85.6129 85.9631 86.4463 87.187 88.3484 89.8555 91.1974 93.9232 96.7126 99.0935 100.952 102.311 102.842 100.63 92.7398 75.2799 74.8647 81.5318 84.3824 90.4268 96.0476 101.909 108.182 84.5088 84.5233 84.5432 84.5758 84.5927 84.7257 84.9125 85.1619 85.4834 85.9121 86.6207 87.8589 89.6301 91.0782 93.0027 96.7611 99.4268 101.391 102.867 103.626 101.42 92.9094 72.4794 73.4024 81.4838 84.0749 90.3555 95.9974 101.903 108.468 84.1373 84.1404 84.1471 84.1613 84.1948 84.3024 84.4539 84.6942 84.9771 85.309 85.9427 87.2769 89.3441 90.9451 92.1052 96.858 99.8058 101.86 103.446 104.486 102.304 93.1407 69.3187 71.6865 81.5385 83.7531 90.273 95.9407 101.887 108.768 83.764 83.7528 83.7422 83.7317 83.7418 83.8673 84.0145 84.2259 84.4539 84.6213 85.1036 86.5738 89.0068 90.7409 91.79 97.0739 100.244 102.357 104.042 105.427 103.261 93.5123 65.9842 69.8627 81.7454 83.436 90.1654 95.8757 101.86 109.083 83.3773 83.3556 83.3372 83.3075 83.2847 83.3054 83.6306 83.7793 83.9151 83.8201 83.9902 85.7171 88.6575 90.6535 92.2894 97.4485 100.756 102.882 104.638 106.454 104.291 94.0933 62.7028 68.2012 82.1455 83.1686 90.0112 95.7992 101.818 109.414 82.9474 82.9336 82.9327 82.8864 82.8157 82.8645 83.1544 83.3739 83.3695 82.8407 82.3803 84.6847 88.308 90.7751 93.345 97.9466 101.354 103.435 105.21 107.566 105.381 94.9332 59.5171 66.6864 82.7471 83.0268 89.7945 95.7053 101.76 109.765 82.4101 82.4709 82.5667 82.4626 82.2181 82.2593 82.7385 83.0735 82.88 81.4779 79.8732 83.4211 87.9617 91.0392 94.5051 98.4728 102.052 104.013 105.719 108.751 106.502 96.0758 57.3176 1.88448 83.2941 83.086 89.5681 95.5841 101.682 110.141 81.5625 81.9252 82.48 82.1745 81.3054 81.3905 82.3416 83.0073 82.4408 79.7308 77.0628 82.2126 87.65 91.3271 95.3864 98.9896 102.875 104.616 106.104 109.978 107.589 97.7414 15.8599 1.00611 55.1236 83.3148 89.4034 95.4195 101.583 110.555 45.078 52.0036 61.0438 66.3493 68.7927 75.7885 82.0684 84.0761 82.4268 78.9202 73.573 81.7463 87.4276 91.5868 96.1303 99.681 103.856 105.253 106.267 111.196 108.536 99.2966 5.30329 0.707555 -0.0874088 74.1814 89.5533 95.1886 101.482 111.025 0.24804 0.243037 0.236794 0.231228 0.234865 0.234763 0.232638 0.216848 0.219829 0.254529 14.0709 81.6736 87.4715 91.804 96.9883 100.726 105.01 105.963 106.06 112.33 109.557 102.824 3.35542 0.41524 -0.0342324 -0.000939055 90.0057 94.8764 101.407 111.578 0.246685 0.256793 0.257754 0.25086 0.246134 0.236439 0.228516 0.220467 0.214789 0.22106 0.226519 0.43586 87.4528 91.9459 97.9684 101.921 106.322 106.838 105.359 113.305 110.581 105.533 0.541584 0.173646 0.000968191 0.0820862 88.7306 94.5312 101.391 112.246 0.263769 0.245541 0.24061 0.235125 0.227699 0.222201 0.220726 0.219395 0.20061 0.170412 0.157856 0.169574 28.2137 92.2695 99.4322 102.822 107.736 108.009 104.767 113.712 111.155 106.498 0.30405 0.0820199 0.0171994 0.0699336 3.34587 94.3003 101.499 112.985 0.242345 0.241118 0.239559 0.232742 0.222317 0.210041 0.208717 0.209237 0.175875 0.122955 0.101439 0.0751641 0.149709 94.9077 101.538 103.382 109.131 109.001 105.767 113.329 110.807 103.189 0.605127 0.0837672 0.0241593 0.060848 0.0623101 68.3899 101.81 113.631 77.6339 102.317 56.0987 0.0198397 -0.163356 -0.215017 -0.339782 -0.728028 110.444 104.722 116.825 116.771 101.622 108.813 102.968 101.538 0.27061 0.305596 0.195046 0.0899676 0.159057 0.169567 0.198042 0.215371 0.239829 0.249962 0.250454 0.250825 0.248686 0.26657 50.3012 103.621 1.74367 0.0156203 -0.162106 -0.209249 -0.339171 -0.650202 213.159 109.187 116.931 117.52 101.716 108.134 103.342 98.338 0.660857 0.348639 0.15916 0.0726475 0.145021 0.158344 0.179571 0.206776 0.233683 0.246482 0.265982 0.24771 0.23822 0.52282 27.5187 70.3408 -0.0316795 0.0105698 -0.158706 -0.203542 -0.328414 -0.765915 13.1949 111.769 117.505 118.556 103.266 105.948 103.621 -0.766789 0.66814 1.96242 0.117982 0.0813943 0.132721 0.146866 0.166593 0.196462 0.22619 0.240563 0.253524 0.24417 0.245588 13.1322 30.0587 0.429292 -0.0316396 0.00630133 -0.15347 -0.197729 -0.360284 -0.738953 3.95227 110.334 118.075 118.916 106.154 101.92 99.4954 0.437577 0.687552 0.96996 0.0499639 0.0823192 0.122289 0.134032 0.153311 0.184679 0.217179 0.234016 0.240136 0.23994 0.233579 0.289118 23.1886 0.310197 -0.0248945 0.00212535 -0.146748 -0.191607 -0.373357 -0.700479 2.19586 111.189 119.851 119.123 109.518 98.2744 1.41189 0.443838 0.570506 12.2003 0.0452986 0.0919943 0.113887 0.122199 0.169579 0.171947 0.206642 0.227754 0.231449 0.233274 0.231347 0.240081 -0.211933 0.0835958 -0.0169316 -0.00178156 -0.139016 -0.185044 -0.321312 -0.224156 1.71432 116.833 123.605 121.021 113.21 79.2703 0.207226 0.445632 0.0553548 1.65272 0.0498694 0.0932936 0.158267 0.11509 0.157833 0.159961 0.195186 0.211804 0.221084 0.222709 0.221607 0.220873 -0.16469 0.0752996 -0.0091252 -0.00520967 -0.130735 -0.177905 -0.267109 -0.321374 0.83074 123.999 124.136 123.854 116.552 0.263916 0.19824 0.322729 -0.000780179 -0.0212562 0.061519 0.0980583 0.205339 0.13701 0.122674 0.148478 0.183801 0.200543 0.20773 0.210218 0.210253 0.2077 -0.126899 0.0580192 -0.00227678 -0.00818844 -0.122298 -0.170092 -0.29542 -0.237963 0.230923 16.7406 125.201 126.244 38.208 0.237585 0.231809 0.244784 0.116915 0.0411019 0.0843476 0.101771 0.125125 0.109672 0.119886 0.142559 0.170767 0.229681 0.194124 0.196896 0.196459 0.195252 -0.0924638 0.0545913 0.00325829 -0.0107771 -0.113967 -0.16152 -0.263078 0.473577 -0.075469 -0.034478 129.856 125.808 1.22319 0.215151 0.199548 0.217678 0.139857 0.161545 0.105461 0.108422 0.113342 0.112588 0.121114 0.138017 0.16409 0.17282 0.181374 0.182571 0.18238 0.181648 -0.0637101 0.0535484 0.00737504 -0.0130513 -0.105889 -0.152136 -0.210194 0.155992 -0.216631 -0.0306977 0.208136 -0.00711203 1.91501 0.221634 0.203201 0.206488 0.143696 0.159253 0.121122 0.116283 0.116346 0.119296 0.125863 0.136628 0.149412 0.159487 0.164557 0.166038 0.166521 0.167047 -0.0407577 0.0532209 0.0101406 -0.0150528 -0.0981055 -0.141911 -0.192369 -0.0382718 -0.372796 0.0328248 0.168048 -0.023653 0.695995 0.16405 0.228277 0.197207 0.140677 0.14978 0.133615 0.123951 0.122257 0.124439 0.131294 0.135484 0.141313 0.145003 0.146928 0.147967 0.149206 0.150872 -0.0219724 0.0501721 0.0117444 -0.0167456 -0.0905847 -0.13088 -0.162954 0.0199909 -0.366264 -0.127694 0.136553 -0.0164979 0.0473466 0.14234 0.229303 0.189218 0.149148 0.173607 0.142861 0.131081 0.127316 0.130202 0.133315 0.141744 0.133357 0.133147 0.130608 0.130853 0.132554 0.135536 -0.00673656 0.0486736 0.0124327 -0.0180367 -0.0832497 -0.119137 -0.124997 0.065951 -0.280318 -0.116392 0.0753751 -0.00713294 0.0476438 0.114404 0.174974 0.176571 0.14637 0.162623 0.151327 0.140075 0.135666 0.40193 0.128952 0.130656 0.125156 0.123286 0.117121 0.136486 0.121314 0.123252 0.00332601 0.0457877 0.0124507 -0.0188423 -0.0760119 -0.106845 -0.0980329 0.069846 -0.0396967 -0.108713 0.0810536 -0.016891 0.0282026 0.134496 0.153705 0.180528 0.144538 0.161068 0.157238 0.239421 0.160214 0.163523 0.147628 0.131025 0.120996 0.112366 0.107795 0.106903 0.109635 0.113783 0.0101473 0.0472369 0.0120089 -0.0191213 -0.0688164 -0.094219 -0.0742079 0.0762686 0.102493 -0.100839 0.247954 0.00751531 0.0247416 0.0914051 0.126486 0.172263 0.140156 0.165097 0.160943 0.159907 0.159176 0.154648 0.145898 0.134899 0.121492 0.115553 0.106309 0.105424 0.117597 0.111748 0.0143622 0.0439743 0.0112689 -0.0188924 -0.06165 -0.0815361 -0.0560935 0.0870179 0.140668 -0.0838259 0.452092 0.0395102 0.0190888 0.0579892 0.0988787 0.111099 0.160865 0.216936 0.160935 0.159958 0.160837 0.157415 0.152084 0.136255 0.123354 0.113942 0.109303 0.10831 0.115662 0.113073 0.0159104 0.0404381 0.0103318 -0.0182127 -0.0545341 -0.0691018 -0.0389364 0.0812232 0.140301 -0.144317 1.00184 0.0481312 0.0650742 0.100477 0.0628996 0.0900946 0.115355 0.192819 0.151649 0.163695 0.153174 0.149872 0.144746 0.138999 0.123218 0.116351 0.113022 0.111896 0.113113 0.116639 0.0144544 0.0357793 0.00923932 -0.0171562 -0.0475255 -0.0572314 -0.0253576 0.0693564 0.115402 -0.119216 0.297555 0.0677522 0.017174 0.0123364 0.0314586 0.068654 0.104176 0.170703 0.137388 0.14379 0.138821 0.136954 0.135477 0.127308 0.12083 0.133802 0.114537 0.110964 0.109319 0.107617 0.0132833 0.0322078 0.00798824 -0.0158019 -0.0407092 -0.0462131 -0.0147271 0.0601261 0.0843305 -0.0141155 0.113121 0.0684547 0.00775682 -0.0269535 -0.012527 0.0301892 0.0790492 0.144614 0.112046 0.119787 0.12195 0.123972 0.123256 0.122458 0.119289 0.114091 0.111716 0.107447 0.105907 0.104328 0.0115543 0.0276501 0.006554 -0.0142311 -0.0341855 -0.0362775 -0.00736288 0.0507916 0.0631901 0.968332 0.109751 0.139584 -0.0031772 -0.0639213 -0.0604135 -0.0121612 0.0497976 0.0774237 0.0929605 0.102837 0.108388 0.111942 0.114157 0.111053 0.112082 0.109912 0.10854 0.109829 0.107764 0.107938 0.00683452 0.023189 0.00492745 -0.0125256 -0.028065 -0.0276069 -0.00101596 0.0425152 0.0510273 0.1189 0.10672 0.361124 -0.0194578 -0.0817863 -0.0939816 -0.0489269 0.0150269 0.0560911 0.0769566 0.0881862 0.0952067 0.0997232 0.17942 0.214028 0.103777 0.103288 0.103897 0.105186 0.107617 0.110887 0.00133154 0.0180537 0.00313867 -0.0107631 -0.0224574 -0.0203074 0.00249269 0.0354847 0.054124 0.0926953 0.0915514 0.0447129 -0.0180319 -0.0774936 -0.102731 -0.0638229 -0.000873557 0.0419993 0.0654436 0.0767219 0.0838212 0.0878863 0.089529 0.0909165 0.0935044 0.0951568 0.096702 0.0983381 0.0998439 0.100603 -0.00850155 0.0103947 0.001278 -0.00901521 -0.0174583 -0.0143802 0.00324942 0.0290005 0.0399261 0.064568 0.0736745 0.0401951 -0.0092007 -0.0564086 -0.0799477 -0.0477185 0.00492725 0.04157 0.0637533 0.0765659 0.0757616 0.0790064 0.0814722 0.0837596 0.0858667 0.0876616 0.0892725 0.0908371 0.092423 0.0940411 -0.0309417 -0.0037501 -0.000452792 -0.00734181 -0.0131449 -0.00987374 0.0032689 0.021593 0.0236158 0.0366229 0.0442409 0.0263215 0.0386664 -0.0345131 -0.0375812 -0.0115081 0.0225874 0.0487805 0.0624638 0.0707546 0.076757 0.070321 0.0721347 0.0740665 0.0760758 0.0779583 0.0796235 0.0810651 0.0823049 0.0833619 -0.0455476 -0.0370037 -0.00165539 -0.00578615 -0.00955939 -0.0066794 0.00432412 0.0370168 -0.00721084 -0.00122563 0.0180352 0.0143244 -2.12846e-05 -0.0106843 -0.00830249 0.00858682 0.0342956 0.0519545 0.0662228 0.0663642 0.0779274 0.0603141 0.0589638 0.0596252 0.0609745 0.0628207 0.0645185 0.0659756 0.067029 0.0676974 -0.00995898 -0.0326519 -0.00186623 -0.00437548 -0.00669845 -0.00461616 -0.00132052 0.0095826 -0.056253 -0.0354822 -0.00852181 0.00439689 0.00278656 0.000709819 0.00865374 0.0186656 0.0318939 0.0453917 0.0483633 0.0468123 0.0447485 0.0421358 0.0403595 0.0390764 0.0384391 0.0443291 0.0413585 0.0427683 0.0438253 0.0444623 0.00228849 -0.00392118 -0.0013033 -0.00312258 -0.00450049 -0.00349358 -0.000551941 -0.0156452 -0.0954227 -0.111571 -0.0301289 -0.0024964 0.00331188 0.178334 0.0150477 0.0195572 0.0532015 0.036564 0.031318 0.0358893 0.0308591 0.0290392 0.0210588 0.0152352 0.0189014 0.0132739 0.012975 0.0145966 0.0163624 0.0224543 0.0043916 0.00451117 -0.000689518 -0.00203874 -0.00284787 -0.00279166 -0.00559151 -0.0191497 -0.0745443 -0.0887235 -0.0349451 -0.00736748 0.00123045 0.00584608 0.0118041 0.0116318 0.0107659 0.0137906 0.0146902 0.0103069 0.081638 0.142658 0.0433364 -0.0114491 -0.0118815 -0.00968942 -0.00813564 -0.00836829 -0.0122317 -0.022432 0.0029468 0.00496528 -0.000214083 -0.00113964 -0.00158969 -0.00204681 -0.0050781 -0.0161071 -0.0117082 0.0363787 -0.02817 -0.0125151 -0.00490269 3.62813e-05 0.00330771 0.0046386 0.00450486 0.00436258 0.0290326 0.00442635 0.001928 -0.00132687 0.00656633 0.00516437 -0.00669045 -0.00632545 -0.00624958 -0.00874839 -0.0105945 -0.00421892 0.000351398 0.00268913 3.14323e-06 -0.000434719 -0.000606502 -0.0010121 -0.00277168 -0.00788991 -0.000594369 -0.0180215 -0.0231514 -0.0200395 -0.0144533 -0.00929782 -0.00570112 -0.00402764 -0.00426496 -0.00550969 -0.00722642 -0.00631236 -0.00440448 -0.002355 -0.000778769 0.00142827 0.000897576 0.000688674 0.00123797 0.00307803 0.00513061 0.0069357 0.222668 0.235736 0.238281 0.471107 0.222877 0.72737 0.192865 0.19678 0.155756 0.1001 0.073866 0.118065 0.0552316 1.51924 102.894 104.556 109.996 108.503 106.673 113.709 112.15 96.7652 0.09093 0.0745595 0.0267981 0.0564452 0.0889171 -0.122061 101.186 114.958 0.169655 0.236271 0.248945 0.259058 0.224963 0.677061 0.184188 0.190624 0.147534 0.0930109 0.0852907 0.0579682 0.0394291 0.240867 101.756 106.258 110.119 108.015 106.301 114.102 116.35 56.591 0.0306453 0.0641148 0.0275575 0.0548343 0.0911175 -0.0906745 5.00882 116.173 0.322017 0.238072 0.254575 0.258581 0.215426 0.659617 0.181935 0.18464 0.142784 0.080371 0.0517763 0.0594515 0.0868859 0.202344 0.663106 108.062 110.091 108.592 106.127 114.37 120.085 10.2844 0.0181843 0.0524877 0.0279852 0.0532975 0.0881093 -0.0644262 -0.123813 32.975 0.209622 0.222166 0.230203 2.82799 0.197149 0.213963 0.184522 0.178499 0.14097 0.0821259 0.0532619 0.0633548 0.0768464 0.166679 0.0932089 106.102 107.261 107.698 105.693 114.821 120.497 1.5005 0.0783369 0.0413355 0.0280865 0.0517477 0.0812895 -0.0490527 -0.110761 -0.266428 0.224185 0.211492 0.198169 4.17459 0.190041 0.203668 0.183615 0.172331 0.141443 0.0902909 0.0617711 0.0684781 0.0893213 0.10413 -0.01346 0.698122 107.903 109.36 107.347 114.591 121.849 0.121676 0.0475538 0.0311989 0.0278852 0.0500803 0.0724793 -0.0399007 -0.10078 0.116609 0.214569 0.205766 0.19626 0.183771 0.18117 0.217199 0.178165 0.167024 0.144152 0.103123 0.0765296 0.0789246 0.0943685 0.113049 -0.0162021 -0.324079 77.9016 111.813 110.296 113.911 120.61 0.0869302 -0.0487172 0.0219509 0.027384 0.0482382 0.0631465 -0.034511 -0.0910402 0.0958021 0.203937 0.198979 0.193336 0.18636 0.183102 0.199863 0.169289 0.163318 0.146766 0.118086 0.095146 0.0889563 0.104292 0.111206 0.0217218 -0.207356 1.27951 102.403 110.877 115.198 113.893 -0.0727306 -0.0632873 0.0141299 0.0266032 0.0461859 0.0541778 -0.0309558 -0.0802561 0.0953218 0.193252 0.189273 0.185464 0.18197 0.179256 0.177251 0.172699 0.160905 0.149017 0.128017 0.110271 0.0994069 0.103932 0.100597 0.0554871 -0.0637645 0.682175 -0.0625654 42.3747 115.718 1.56965 -0.166 -0.0968172 0.00891109 0.0255807 0.0439121 0.0460779 -0.0282017 -0.0682927 0.0779967 0.180517 0.178427 0.19128 0.176163 0.171996 0.168595 0.162344 0.160025 0.149679 0.133764 0.122774 0.106707 0.0978505 0.0881675 0.0623873 0.0462339 0.575562 -0.050362 -0.155145 -0.207484 -0.387043 -0.162012 -0.0993389 0.00494418 0.0243692 0.0414345 0.0388726 -0.0256827 -0.0568103 0.065715 0.167456 0.16833 0.178373 0.167136 0.163333 0.161163 0.156714 0.153213 0.155286 0.137952 0.128323 0.132647 0.0960572 0.0809666 0.0637625 0.00448226 0.406656 -0.0365382 -0.156364 -0.205855 -0.355009 -0.240049 -0.0768958 0.00293975 0.0230227 0.0387843 0.0326113 -0.023732 -0.0461061 0.0537839 0.152514 0.153955 0.154589 0.153841 0.154622 0.154758 0.151741 0.1482 0.143764 0.137811 0.123828 0.169924 0.0943954 0.0753698 0.0529082 0.0408826 0.111277 -0.0313371 -0.154516 -0.187387 -0.221733 -0.369906 -0.0465742 0.00215485 0.0215864 0.0359963 0.0272581 -0.0221928 -0.0366973 0.0428863 0.138258 0.140962 0.143637 0.145766 0.15488 0.151107 0.14715 0.144004 0.139646 0.132176 0.123826 0.116608 0.093128 0.0702792 0.0510762 0.0271026 0.00814112 0.0406944 -0.145197 -0.206913 -0.365888 -0.397177 -0.0136603 0.00195739 0.0200886 0.0331078 0.022758 -0.0206598 -0.0287287 0.0334139 0.126556 0.130614 0.134539 0.138884 0.143206 0.167148 0.15483 0.140114 0.136799 0.129099 0.120795 0.113964 0.0905469 0.0678296 0.0415701 0.0174795 0.0058964 0.441271 -0.120424 -0.186277 -0.357738 -0.45731 -0.00124772 0.0016861 0.0185402 0.0301508 0.0190506 -0.0187429 -0.0220749 0.0255564 0.118167 0.122868 0.127972 0.13388 0.137261 0.143762 0.137996 0.138449 0.135885 0.12641 0.1147 0.140656 0.124016 0.0669208 0.0353882 0.00889068 -0.0031153 0.468077 -0.111635 -0.112236 -0.30405 -0.480341 -0.0219123 0.00115472 0.0169393 0.0271529 0.0160437 -0.0163381 -0.0164914 0.019329 0.116057 0.123889 0.126042 0.136068 0.134734 0.139698 0.136673 0.137713 0.133818 0.124588 0.111239 0.103105 0.122829 0.0669351 0.0172625 -0.00176427 -0.0133401 0.494133 -0.103001 -0.166672 -0.289342 -0.400561 -0.0373159 0.000537956 0.0152775 0.0241424 0.0136136 -0.0136035 -0.0118598 0.0146023 0.117417 0.124594 0.127636 0.131984 0.135291 0.135464 0.135082 0.137584 0.131586 0.119413 0.107238 0.0943333 0.111489 0.124439 0.025448 -0.0110308 -0.029188 0.28075 -0.140439 -0.0448208 -0.210789 -0.270555 -0.0531006 6.37775e-05 0.0135461 0.0211555 0.0116182 -0.010774 -0.00810681 0.0111232 0.122355 0.130045 0.136267 0.14265 0.141435 0.139819 0.141931 1.74132 0.502535 0.109538 0.103144 0.0906683 0.072492 0.125788 0.0279101 -0.0077263 -0.0498605 0.00700463 -0.129836 -0.129117 -0.137321 -0.139933 -0.0249457 -0.000338273 0.0117401 0.0182331 0.00992996 -0.00804726 -0.00525132 0.00858295 0.10197 0.0761975 0.168544 0.231177 0.0928924 0.123428 0.132312 0.123984 0.107394 0.107902 0.102094 0.0892703 0.0705723 0.0486235 0.0226085 -0.0254315 -0.0556887 -0.0275866 -0.0476116 -0.078256 -0.171886 -0.0600171 -0.0141293 -0.000826364 0.00986106 0.0154187 0.00846706 -0.00562295 -0.00316374 0.00670736 0.102445 0.101332 0.103817 0.110087 0.11351 0.134814 0.128648 0.160783 0.118245 0.114046 0.105179 0.0901333 0.0698171 0.0475747 0.018121 -0.027498 -0.0609898 -0.0255197 0.907137 0.208721 -0.181536 -0.0279335 -0.0109885 -0.00161783 0.00791724 0.0127513 0.00717575 -0.00365401 -0.00171835 0.00527356 0.108523 0.110994 0.114464 0.118625 0.122438 0.126205 0.128541 0.127892 0.126237 0.120384 0.10855 0.0897889 0.0653207 0.0363858 0.00758912 -0.0309988 -0.0571896 -0.0553946 0.173862 -0.0447856 -0.193522 -0.00164284 -0.0132652 -0.00282706 0.00592699 0.0102603 0.00601465 -0.00216539 -0.000787327 0.00413337 0.121936 0.114666 0.117755 0.12149 0.125468 0.129923 0.13351 0.133679 0.130073 0.121742 0.106378 0.0833859 0.0544179 0.0211091 -0.0118445 -0.0371344 -0.0620715 -0.076792 0.315002 -0.0506705 -0.121411 -0.0489118 -0.0169916 -0.00442974 0.00392234 0.007966 0.00495661 -0.00108711 -0.000198142 0.00319999 0.103576 0.107619 0.111188 0.115043 0.11931 0.126058 0.128866 0.127337 0.123102 0.111504 0.0919859 0.0693482 0.0304825 -0.00682132 -0.0366456 -0.0568769 -0.0663062 -0.0776967 0.335866 -0.0451042 -0.0899125 -0.0488987 -0.0200995 -0.00625438 0.00195434 0.00588345 0.00398819 -0.000350611 0.000154257 0.0024232 0.0957389 0.0976715 0.0999363 0.102515 0.105391 0.107869 0.109279 0.107021 0.0987093 0.0814782 0.0560379 0.0271032 0.0164428 -0.0583052 -0.0822496 -0.0857558 -0.0835813 -0.0863093 0.0724722 0.906483 -0.0686365 -0.0455617 -0.0223282 -0.00810323 8.26196e-05 0.00402651 0.00310491 0.000111127 0.000339929 0.00177955 0.0842792 0.0851303 0.0859054 0.0864758 0.0865674 0.0855026 0.0816572 0.0726348 0.0688543 0.0269546 -0.0109076 -0.0272681 -0.114087 -0.1624 -0.147579 -0.133343 -0.0985546 -0.0699447 0.0137743 -0.0533495 -0.0597415 -0.0432236 -0.0238662 -0.00979763 -0.00160068 0.00241411 0.00230583 0.00035828 0.000412286 0.00126083 0.0680197 0.0679715 0.0673512 0.0657882 0.0627283 0.057672 0.0460449 0.0302439 0.021431 -0.0385652 -0.101391 -0.18493 -0.259441 -0.303751 -0.284118 -0.200067 -0.115327 -0.0510415 -0.0139028 -0.0329638 -0.0450797 -0.0437477 -0.0252651 -0.0111813 -0.00298953 0.00107377 0.00159558 0.000446509 0.000414782 0.000864388 0.0450094 0.0450815 0.0443809 0.0424126 0.038391 0.0309843 0.0703015 -0.0034402 -0.0433998 -0.106877 -0.181516 -0.283891 -0.373379 -0.42354 -0.358879 -0.259399 -0.122911 -0.040336 -0.028183 0.355068 -0.0457295 -0.0225078 -0.00283964 -0.0120716 -0.00395617 3.9512e-05 0.000986826 0.000422827 0.000379682 0.000581409 0.017851 0.0181815 0.0176719 0.0156246 0.0110132 0.00203052 -0.0144362 -0.0365434 -0.0672681 -0.118711 -0.190876 -0.196226 -0.382543 -0.414925 -0.3724 -0.256437 -0.116938 -0.0234846 0.0182772 0.333064 -0.0672148 -0.0495283 -0.0154853 -0.0121758 -0.00435204 -0.000655667 0.000496022 0.000333957 0.000318694 0.000389319 0.00401851 0.00368844 0.00321245 0.00148235 -0.00225781 -0.0087608 -0.0190793 -0.034799 -0.058592 -0.0941217 -0.147 -0.214068 -0.271753 -0.285066 -0.253403 -0.175922 -0.0778564 -0.00127826 0.00794018 0.0169007 2.93475 -0.0427606 -0.0259978 -0.0104041 -0.00404842 -0.000985156 0.000137364 0.000207354 0.000230846 0.000256321 -0.00429157 -0.000693532 0.000839104 -0.000452994 -0.00409176 -0.00783212 -0.0121621 -0.0193132 -0.03118 -0.0503705 -0.0766501 -0.106019 -0.131282 -0.13561 -0.112987 -0.0745756 -0.0244927 0.0146775 0.00617358 0.000265316 0.138549 0.0150985 -0.0171988 -0.00703679 -0.00304245 -0.000956646 -8.73698e-05 6.34071e-05 0.000118554 0.000152937 0.00616585 0.00285366 0.041419 0.0816636 0.0846737 0.00331263 -0.000288376 -0.00344838 -0.00928863 -0.0190891 -0.0325273 -0.0478224 -0.0528639 -0.0551146 -0.0307797 0.106097 0.0137269 0.0224797 0.00964362 0.0102998 0.0156313 -0.00666889 -0.00679512 -0.00292681 -0.00154156 -0.000640244 -0.000198688 -8.7423e-05 -1.5622e-05 5.80193e-05 118.217 107.502 97.8658 90.7613 85.6926 82.5918 82.3604 85.543 90.0663 93.5794 95.4403 95.93 95.5208 94.6285 93.5485 92.4644 91.4787 90.6388 89.9572 89.4247 89.0213 88.7245 88.5124 88.367 88.2731 88.2191 88.1951 88.1937 88.2087 88.2353 120.863 110.628 100.071 92.3608 86.8039 83.1458 82.0381 84.4563 88.9568 92.8736 95.1484 95.9369 95.7058 94.8967 93.8364 92.7336 91.7094 90.8239 90.0975 89.5254 89.0895 88.7669 88.5349 88.3743 88.2689 88.2061 88.1757 88.1695 88.1811 88.2054 120.913 110.626 100.042 92.3354 86.7788 83.0976 81.9321 84.3592 88.9489 92.9304 95.2245 96.0052 95.7577 94.9315 93.8542 92.7346 91.6947 90.7961 90.06 89.4816 89.0422 88.7182 88.4861 88.326 88.2214 88.1594 88.1298 88.1244 88.1367 88.1615 120.998 110.623 99.9979 92.2964 86.74 83.023 81.7661 84.2015 88.9271 93.0099 95.3395 96.1132 95.843 94.9913 93.8878 92.7416 91.6765 90.7565 90.0046 89.4159 88.9708 88.6443 88.4118 88.2524 88.1491 88.0886 88.0604 88.0562 88.0695 88.095 121.12 110.618 99.9379 92.2434 86.6876 82.923 81.5391 83.9828 88.8954 93.115 95.4926 96.2592 95.9603 95.0751 93.9362 92.7538 91.6542 90.705 89.9313 89.3285 88.8756 88.5458 88.3129 88.1544 88.0528 87.9941 87.9676 87.9649 87.9794 88.0059 121.281 110.607 99.8621 92.1766 86.6219 82.7989 81.2485 83.6978 88.8544 93.2474 95.6849 96.4425 96.1076 95.18 93.9966 92.769 91.6262 90.6401 89.8389 89.2183 88.7558 88.4221 88.1888 88.0317 87.9321 87.8754 87.8506 87.8494 87.8652 87.8929 121.481 110.587 99.7699 92.096 86.5433 82.6526 80.8913 83.3396 88.8043 93.4094 95.9184 96.664 96.2842 95.3046 94.068 92.7865 91.5919 90.5609 89.7259 89.0839 88.61 88.2722 88.0389 87.8838 87.7866 87.732 87.7089 87.7091 87.7263 87.7554 121.722 110.554 99.6611 92.0015 86.4524 82.4866 80.4639 82.899 88.7457 93.6035 96.1954 96.9252 96.4904 95.4489 94.1502 92.8063 91.5506 90.4659 89.5906 88.9231 88.4364 88.0945 87.8621 87.71 87.616 87.564 87.5427 87.5442 87.5626 87.593 122.008 110.503 99.5353 91.8932 86.3497 82.3042 79.9618 82.3641 88.6795 93.8324 96.5187 97.2275 96.7268 95.6131 94.2434 92.8282 91.5017 90.3535 89.4305 88.7333 88.2325 87.8872 87.6572 87.5098 87.4204 87.3719 87.3527 87.3552 87.3742 87.4058 122.341 110.428 99.3918 91.7713 86.2357 82.1096 79.3804 81.7192 88.607 94.0999 96.8917 97.5729 96.994 95.7971 94.3477 92.8526 91.4448 90.2218 89.2426 88.5112 87.9952 87.6477 87.4225 87.2824 87.1999 87.1567 87.1404 87.1436 87.1617 87.1926 122.73 110.322 99.2299 91.6357 86.1108 81.9082 78.7142 80.9435 88.5304 94.4098 97.318 97.9639 97.2926 96.0012 94.4631 92.8795 91.3792 90.0686 89.0232 88.2525 87.7206 87.3731 87.1561 87.0268 86.9545 86.919 86.9074 86.9119 86.9274 86.9518 123.191 110.176 99.0484 91.4868 85.9752 81.7068 77.9572 80.0097 88.4527 94.7666 97.8016 98.403 97.6232 96.225 94.5896 92.9092 91.3049 89.8911 88.768 87.952 87.4036 87.0594 86.8554 86.7418 86.6838 86.6594 86.6549 86.6619 86.6762 86.6984 123.745 109.975 98.8455 91.3246 85.8286 81.5137 77.1037 78.8815 88.3781 95.1753 98.347 98.8932 97.9866 96.4684 94.7267 92.9419 91.2218 89.6862 88.4718 87.6032 87.0383 86.702 86.5175 86.4256 86.3869 86.3774 86.383 86.3951 86.4092 86.4322 124.406 109.711 98.6188 91.1496 85.6705 81.3395 76.1484 77.5113 88.3121 95.6414 98.9599 99.4381 98.383 96.7306 94.8738 92.9777 91.1307 89.4503 88.1285 87.1976 86.6167 86.2954 86.1389 86.0763 86.0624 86.0715 86.0896 86.1095 86.1283 86.1515 125.195 109.388 98.3653 90.9621 85.4994 81.1974 75.0846 75.8386 88.2616 96.1709 99.6458 100.042 98.8128 97.0107 95.0297 93.0157 91.0324 89.1791 87.7313 86.7245 86.1285 85.8324 85.7157 85.692 85.7093 85.7397 85.7709 85.7984 85.8223 85.8446 126.137 109.01 98.0805 90.7623 85.3127 81.1036 73.9032 73.7926 88.2348 96.7716 100.41 100.708 99.2758 97.3068 95.1927 93.0531 90.9267 88.8667 87.2718 86.1693 85.5604 85.3048 85.244 85.2718 85.3281 85.3832 85.427 85.4601 85.4862 85.5092 127.259 108.587 97.7586 90.5504 85.1065 81.0781 72.5999 71.2749 88.2406 97.4524 101.26 101.442 99.7712 97.6163 95.3606 93.0838 90.8037 88.4982 86.7392 85.5116 84.8938 84.7033 84.7206 84.8159 84.9221 85.0065 85.0635 85.1005 85.1266 85.1483 128.598 108.139 97.3918 90.3259 84.8746 81.1469 71.1999 68.1327 88.2978 98.2181 102.201 102.249 100.297 97.9346 95.5301 93.0976 90.6208 88.0635 86.1206 84.7221 84.1026 84.0181 84.1443 84.3263 84.4972 84.6193 84.6916 84.7324 84.7574 84.7761 130.243 107.694 96.9695 90.0873 84.6076 81.3441 69.8362 64.2382 88.4469 99.0624 103.239 103.135 100.848 98.2541 95.6958 93.0832 90.3267 87.6466 85.411 83.7573 83.148 83.244 83.5215 83.8094 84.0644 84.2386 84.3309 84.3745 84.3955 84.4079 132.29 107.271 96.4779 89.8308 84.2927 81.7048 68.8128 59.67 88.723 99.9854 104.376 104.104 101.417 98.5616 95.8579 93.0437 89.9703 87.2974 84.6154 82.558 81.975 82.3862 82.8752 83.2895 83.6482 83.8877 83.9997 84.0385 84.0467 84.0458 134.875 106.886 95.898 89.5458 83.9171 82.2665 68.6797 54.8195 89.1026 100.965 105.613 105.161 101.986 98.8396 96.0808 93.0129 89.6783 86.9889 83.7587 81.0478 80.5008 81.4365 82.2187 82.8107 83.2954 83.5918 83.7083 83.7256 83.7069 83.6836 138.18 106.553 95.203 89.2104 83.4738 83.0648 70.0868 51.9982 89.5222 101.968 106.946 106.308 102.519 99.0685 96.4413 93.0446 89.5302 86.7669 82.894 79.0375 78.3676 80.2985 81.4981 82.3726 83.035 83.3772 83.4676 83.4339 83.3637 83.3049 142.428 106.282 94.3524 88.792 82.8446 84.0598 55.7096 26.1322 89.9923 102.986 108.366 107.543 102.937 99.2175 96.856 93.2067 89.568 86.7005 82.1514 76.0618 74.4416 78.819 80.6871 81.9785 82.9176 83.2952 83.3031 83.1641 82.9948 82.8722 147.913 106.083 93.2975 88.3573 83.259 85.0366 -1.05968 -6.46621 90.6604 104.076 109.847 108.858 103.097 99.2146 97.3965 93.5802 89.8316 86.8223 81.7449 72.9156 68.9685 77.2849 79.4026 81.672 83.1079 83.4435 83.2419 82.9301 82.5574 82.2993 155.028 105.962 91.9922 88.0371 82.9289 85.8958 -0.434383 0.438045 92.8623 105.265 111.34 110.242 102.6 98.8902 98.3377 94.2009 90.3068 87.1096 82.2631 71.4831 64.3996 76.4404 76.0858 81.7308 84.0387 83.8959 83.2198 82.8586 81.9741 81.34 164.336 105.911 90.3774 87.8771 82.1244 -0.372517 -0.407096 0.673509 94.5762 106.369 112.809 111.677 101.14 98.3234 99.2291 95.0457 90.8569 87.4353 84.3219 63.586 0.403183 0.306499 0.277918 0.259534 0.250044 0.262514 0.249821 0.250422 0.249067 0.24651 176.693 105.908 88.3739 88.1341 -0.13382 -0.316199 -0.417923 -1.24598 96.4526 107.04 114.269 113.092 100.903 98.1875 100.321 96.1108 91.1443 87.3525 85.9615 0.217545 0.305094 0.288378 0.271843 0.26085 0.256419 0.25557 0.253597 0.251993 0.250517 0.249146 194.442 105.91 85.8334 36.7418 -0.135281 -0.267883 -0.43124 -1.67011 97.7877 108.704 115.746 114.272 102.062 100.032 101.347 97.3728 90.3936 85.8277 0.532967 0.319126 0.369169 0.250419 0.25628 0.257589 0.256997 0.256355 0.25511 0.252585 0.25162 0.252604 155.384 105.959 81.957 0.0418142 -0.146669 -0.239555 -0.445282 -1.34818 101.975 111.864 117.232 115.001 102.535 103.798 101.687 99.2007 88.3744 -0.0474456 0.232113 0.230757 0.200423 0.217656 0.236283 0.249003 0.254882 0.256516 0.256878 0.272882 0.247592 0.273137 -6.76306 106.309 -0.200964 0.0170946 -0.153532 -0.226479 -0.448128 -0.987516 105.628 114.231 117.59 115.478 101.417 106.718 100.964 101.982 55.1577 0.20089 0.228312 0.183603 0.18049 0.203471 0.221936 0.234651 0.249314 0.253882 0.254804 0.25515 0.250944 0.246985 88.2737 88.3292 88.407 88.5129 88.6538 88.8386 89.0779 89.3852 89.7767 90.2714 90.8886 91.6449 92.5474 93.584 94.7141 95.8609 96.8956 97.602 97.6469 96.5907 93.9738 89.8136 85.6842 84.0232 85.2444 88.6938 93.6334 99.0003 103.993 106.717 88.2409 88.2919 88.3639 88.4623 88.5939 88.7669 88.9917 89.2812 89.651 90.1197 90.7071 91.4312 92.3022 93.3138 94.4323 95.5904 96.6747 97.4947 97.7467 97.0132 94.8108 90.9353 86.5099 84.1049 84.7028 87.6655 92.3426 97.6676 102.834 106.392 88.1974 88.2486 88.3207 88.4191 88.5506 88.7233 88.948 89.2378 89.6086 90.0796 90.6711 91.4016 92.282 93.3057 94.438 95.6102 96.7085 97.5428 97.808 97.0814 94.8623 90.9251 86.4203 84.0218 84.6608 87.6424 92.335 97.6642 102.84 106.417 88.1315 88.1831 88.2553 88.3536 88.4846 88.657 88.8815 89.1717 89.5444 90.0191 90.6171 91.358 92.2537 93.2979 94.454 95.6498 96.7691 97.6215 97.9026 97.1813 94.9324 90.9008 86.2773 83.8921 84.5944 87.6058 92.324 97.6603 102.852 106.46 88.0431 88.0953 88.1678 88.2659 88.3965 88.5683 88.7926 89.0836 89.4588 89.9387 90.5458 91.301 92.2179 93.2907 94.4798 95.708 96.8547 97.7289 98.0285 97.3129 95.0248 90.8665 86.0802 83.7157 84.504 87.5556 92.3097 97.6558 102.87 106.521 87.9312 87.9842 88.0572 88.1554 88.2856 88.4568 88.6809 88.973 89.3515 89.8381 90.4566 91.2299 92.1739 93.2831 94.5135 95.781 96.9611 97.8625 98.1853 97.4775 95.1416 90.8222 85.8239 83.4917 84.3904 87.4916 92.2921 97.6506 102.894 106.601 87.7949 87.849 87.9228 88.0213 88.1513 88.322 88.546 88.8395 89.2218 89.7164 90.3485 91.1437 92.1207 93.2746 94.5543 95.8672 97.0866 98.0215 98.3735 97.6766 95.2844 90.7672 85.5019 83.2191 84.2543 87.4138 92.2715 97.6445 102.924 106.7 87.6341 87.6896 87.7643 87.8631 87.9929 88.1631 88.3871 88.682 89.0688 89.5724 90.2203 91.0408 92.0569 93.2649 94.6026 95.9665 97.2306 98.2056 98.5934 97.9117 95.4555 90.7009 85.1055 82.8971 84.097 87.322 92.2484 97.6371 102.958 106.818 87.4489 87.5058 87.5804 87.6797 87.8097 87.9794 88.2031 88.4996 88.8913 89.4048 90.0703 90.9195 91.9807 93.2537 94.6587 96.0788 97.3931 98.4147 98.8458 98.1848 95.6575 90.6229 84.6236 82.5248 83.9197 87.2161 92.2232 97.6283 102.998 106.955 87.2383 87.2976 87.368 87.4695 87.6007 87.7699 87.9932 88.291 88.6877 89.2121 89.8968 90.7775 91.8899 93.2408 94.723 96.2037 97.5741 98.6491 99.1314 98.4981 95.8937 90.5327 84.0413 82.1018 83.7242 87.0958 92.1965 97.6178 103.042 107.111 86.99 87.2451 87.1145 87.2316 87.365 87.5339 87.7563 88.0551 88.4568 88.9924 89.6977 90.6123 91.7811 93.2263 94.7961 96.3407 97.7733 98.9089 99.451 98.8541 96.1679 90.4298 83.3389 81.6279 83.5123 86.9606 92.1691 97.605 103.09 107.291 86.7328 86.8309 86.8585 86.9672 87.1027 87.271 87.4915 87.7905 88.1968 88.7438 89.4707 90.4213 91.6494 93.2103 94.8775 96.4879 97.9904 99.194 99.8055 99.2558 96.4846 90.314 82.4886 81.1038 83.2859 86.81 92.1417 97.5895 103.14 107.495 86.4737 86.5187 86.577 86.6773 86.8126 86.9797 87.1974 87.4961 87.9064 88.464 89.2134 90.2018 91.487 93.1927 94.9649 96.6427 98.2253 99.5046 100.196 99.7067 96.8492 90.1853 81.4509 80.531 83.0472 86.643 92.1152 97.5708 103.193 107.724 86.1706 86.2132 86.273 86.3639 86.4921 86.6561 86.8721 87.171 87.584 88.1506 88.9226 89.952 91.2816 93.1706 95.0503 96.801 98.4781 99.8409 100.623 100.21 97.2685 90.0438 80.1659 79.9126 82.7982 86.4584 92.0904 97.5482 103.248 107.979 85.8688 85.9029 85.9524 86.0256 86.1382 86.3005 86.5157 86.8153 87.2284 87.8 88.5943 89.6711 91.0111 93.1229 95.1128 96.9574 98.7492 100.203 101.088 100.771 97.7512 89.8901 78.5487 79.2545 82.5401 86.254 92.068 97.5209 103.303 108.259 85.5336 85.5653 85.6044 85.6601 85.7427 85.9172 86.1319 86.4303 86.8382 87.4077 88.2221 89.358 90.6533 92.9556 95.1047 97.1065 99.0406 100.591 101.592 101.395 98.3093 89.7251 76.531 78.5707 82.2727 86.0265 92.0484 97.4879 103.357 108.566 85.1712 85.2035 85.2704 92.5189 85.4395 85.5197 85.7263 86.0179 86.4121 86.9676 87.7963 89.0064 90.3027 92.4839 94.9337 97.2459 99.3555 101.006 102.134 102.087 98.9599 89.5519 74.0357 77.8975 81.9955 85.77 92.0312 97.4481 103.41 108.901 84.7943 84.8171 84.8463 84.9491 84.8531 85.0886 85.2998 85.5796 85.9487 86.4703 87.302 88.6073 90.1314 91.8609 94.5108 97.3827 99.6993 101.445 102.716 102.855 99.7204 89.3853 70.8326 77.3085 81.7096 85.4747 92.0154 97.4002 103.457 109.263 84.4185 84.4315 84.4509 84.4855 84.5211 84.6624 84.8542 85.1186 85.4482 85.9035 86.7167 88.1445 90.013 91.261 93.9076 97.539 100.08 101.909 103.335 103.705 100.59 89.26 66.6592 76.8755 81.4065 85.1232 91.9995 97.3424 103.498 109.654 84.0441 84.0443 84.0476 84.0587 84.1021 84.2372 84.3833 84.6441 84.9153 85.2488 86.0065 87.5962 89.8346 90.7032 93.44 97.7526 100.507 102.395 103.99 104.647 101.552 89.2285 61.4798 76.7183 81.0721 84.6866 91.9816 97.2724 103.527 110.074 83.6654 83.6515 83.6369 83.6207 83.6369 83.8847 83.921 84.1712 84.3555 84.4747 85.1144 86.9501 89.6004 90.4127 93.4707 98.0628 100.991 102.897 104.675 105.692 102.613 89.3621 55.4449 76.9929 80.6935 84.129 91.9589 97.1878 103.543 110.521 83.2685 83.2492 83.2296 83.193 83.171 83.2428 83.5452 83.7134 83.7655 83.5238 83.9271 86.1978 89.35 90.5797 94.0955 98.486 101.545 103.408 105.381 106.851 103.835 89.7555 49.0146 77.9595 80.2393 83.4253 91.9258 97.0861 103.538 110.994 82.821 82.8268 82.8284 82.7532 82.6737 82.7905 83.1293 83.2942 83.17 82.235 82.157 85.3577 89.1076 91.0867 95.0508 98.9987 102.182 103.917 106.093 108.138 105.222 90.5422 31.5506 79.6972 79.5778 82.5744 91.8779 96.9652 103.506 111.483 82.25 82.3929 82.5038 82.281 81.9912 82.1719 82.8101 82.9548 82.6796 80.0944 79.5591 84.4435 88.8815 91.7134 95.9674 99.5634 102.921 104.408 106.783 109.555 106.762 91.809 27.8877 1.28454 78.2733 81.5764 91.8155 96.823 103.435 111.976 81.3026 82.001 82.6469 81.832 80.8707 81.3069 82.6091 82.6045 82.55 77.3747 77.176 83.7421 88.657 92.3139 96.6074 100.203 103.791 104.846 107.403 111.077 108.416 93.1833 -0.638322 0.234358 13.9849 80.8082 91.7837 96.6579 103.332 112.449 0.260742 2.00857 5.06095 8.03663 13.5907 27.1903 53.9472 74.8171 83.16 74.8418 74.6672 83.5166 88.4516 92.8844 97.2804 101.057 104.827 105.179 107.86 112.636 110.126 93.7302 -0.24249 0.252302 0.0164287 78.7148 91.7963 96.4709 103.189 112.858 0.246733 0.241141 0.234275 0.231054 0.234204 0.234008 0.237268 0.213049 0.211591 0.257523 2.45359 83.3533 88.2772 93.5122 98.1967 102.177 106.066 105.335 108.008 114.147 111.637 95.6801 -0.213926 0.206123 0.0146539 -0.458625 91.7829 96.2926 102.928 113.127 0.25774 0.253387 0.243135 0.236165 0.22841 0.235187 0.228224 0.219079 0.208795 0.217031 0.22281 -0.309053 87.8201 94.1726 99.0887 103.444 107.544 105.259 107.736 115.318 114.055 96.4233 0.0224264 0.144096 0.0121871 0.0856028 91.8405 96.2495 102.62 113.105 0.246765 0.243627 0.239186 0.232695 0.224872 0.218639 0.218672 0.214967 0.184596 0.151578 0.135559 0.0622125 48.4815 94.9406 99.6718 104.707 109.115 105.395 107.901 115.887 115.441 97.4078 0.136202 0.0963243 0.0106843 0.0780412 3.99827 96.5098 102.445 112.466 0.239559 0.240026 0.238774 0.229462 0.216768 0.201923 0.206091 0.201764 0.153797 0.105191 0.111901 0.0737106 0.0135265 94.4486 99.3712 105.866 110.164 106.228 109.81 115.578 113.961 62.4804 0.122299 0.0645193 0.0115758 0.0732959 0.132786 86.2119 102.28 111.563 -5.67472 107.184 0.697372 0.00398037 -0.154421 -0.219874 -0.442947 -0.815278 30.5523 116.846 115.952 116.147 100.776 107.335 97.7334 106.268 0.675881 0.118227 0.256036 0.117509 0.15912 0.171739 0.19813 0.220771 0.24228 0.250155 0.265615 0.249094 0.249008 0.270458 -0.379391 107.673 0.0210991 -0.00268356 -0.153376 -0.215994 -0.426654 -0.68646 39.038 121.831 117.105 117.057 100.443 107.194 94.0476 15.7877 0.797689 0.034038 0.478966 0.105057 0.146396 0.159656 0.183147 0.212161 0.23652 0.247181 0.25163 0.245814 0.216719 11.8867 -0.272345 95.8239 0.0267273 -0.0089616 -0.151109 -0.212024 -0.374431 -0.883439 7.00845 123.103 119.442 117.3 101.994 106.31 92.2989 0.433741 1.05096 0.0415113 0.517849 0.0896589 0.134986 0.147152 0.170123 0.202152 0.229269 0.239677 0.24505 0.244263 0.212729 13.1054 -0.254112 0.488107 0.0212789 -0.0146513 -0.14779 -0.207683 -0.40278 -0.739217 18.2637 122.186 120.393 117.803 104.008 106.226 0.411825 0.558673 1.27297 -0.0987474 0.455014 0.0953596 0.12562 0.13429 0.157596 0.190881 0.220417 0.234589 0.238758 0.23803 0.231227 0.280389 -0.237603 0.200283 0.0180261 -0.0198155 -0.143616 -0.202562 -0.348058 -0.377707 3.56833 124.685 120.889 119.559 105.914 105.996 0.353082 0.441281 5.19165 -0.131218 0.13492 0.0997438 0.119976 0.11863 0.155533 0.178658 0.209687 0.240613 0.23001 0.230801 0.229272 0.233825 -0.224742 0.0565512 0.015968 -0.024456 -0.138798 -0.196486 -0.308206 -0.243082 -0.93512 125.101 122.736 120.171 106.312 0.147839 0.306828 0.387672 1.5471 -0.0868202 0.0661124 0.0997021 0.208817 0.117358 0.155108 0.166972 0.198164 0.212802 0.218746 0.219532 0.21835 0.216429 -0.169811 0.049431 0.0142596 -0.0283912 -0.133463 -0.189143 -0.270394 -0.197177 -0.0726605 126.436 124.783 119.704 94.6318 0.285034 0.235133 0.288828 0.591854 0.0184031 0.0772114 0.101023 0.206617 0.109512 0.124575 0.156276 0.187547 0.19748 0.205343 0.206896 0.206251 0.203835 -0.137893 0.0498667 0.012733 -0.0314897 -0.127673 -0.180907 -0.229895 -0.176671 -0.364552 57.5162 127.315 123.372 2.98307 0.276173 0.238568 0.243489 0.240541 0.0913586 0.0937847 0.106191 0.151175 0.110644 0.123725 0.147964 0.174652 0.198114 0.192206 0.19344 0.192719 0.191374 -0.00568516 0.0501689 0.0114088 -0.0336642 -0.121433 -0.171434 -0.239684 -0.162006 -0.581112 0.133156 131.75 76.5901 1.12488 0.296514 0.205311 0.220606 0.709826 0.147182 0.108906 0.111313 0.113536 0.115569 0.125338 0.141739 0.161537 0.173293 0.177819 0.178663 0.178356 0.177938 -0.0375632 0.0500483 0.0103775 -0.0349073 -0.114739 -0.160717 -0.199554 -0.125334 -0.770706 0.193841 0.316931 -0.0474486 1.212 0.212086 0.216455 0.205368 0.398213 0.157544 0.121606 0.117651 0.117764 0.125593 0.129516 0.13931 0.149968 0.157276 0.160613 0.161695 0.162387 0.163182 -0.0213799 0.0497645 0.00965792 -0.0352927 -0.107595 -0.148698 -0.165962 -0.055835 -0.869011 0.0721223 0.157013 -0.0461345 1.11391 0.177004 0.22255 0.190953 0.146746 0.152094 0.132454 0.124349 0.123774 0.129723 0.133467 0.136934 0.140009 0.141668 0.14304 0.143725 0.145262 0.14724 -0.00702931 0.0484952 0.00917065 -0.0349555 -0.100032 -0.135511 -0.131128 0.00883539 -0.76414 0.00281809 0.135508 -0.0620203 0.0740629 0.171411 0.224981 0.178055 0.14674 0.183846 0.142815 0.131635 0.126435 0.138578 0.13192 0.133284 0.130668 0.132436 0.127457 0.150025 0.130097 0.132821 0.0124571 0.0465716 0.00877663 -0.0340566 -0.0921103 -0.121404 -0.0932767 0.0517023 -0.454795 -0.0304313 0.115541 -0.0582011 0.0519638 0.13465 0.196309 0.163336 0.147492 0.160981 0.150224 0.15273 0.139885 0.380914 0.130038 0.129215 0.121633 0.117106 0.113401 0.124497 0.118041 0.121211 0.0177693 0.0447195 0.00833504 -0.0327252 -0.0839079 -0.10678 -0.0679902 0.0872636 -0.137703 -0.0442563 -0.0334652 -0.0337344 0.0558744 0.157276 0.144313 0.152668 0.148018 0.160815 0.157126 0.470079 0.157069 0.145268 0.150358 0.129387 0.118066 0.109867 0.106048 0.105906 0.109084 0.113552 0.024201 0.0426533 0.00775395 -0.031042 -0.0755244 -0.0920181 -0.0384997 0.0875295 0.0365888 -0.0512998 0.241023 0.0117773 0.0319228 0.119931 0.122498 0.147227 0.143003 0.183588 0.161939 0.160762 0.164081 0.15414 0.14473 0.132171 0.119015 0.114252 0.106411 0.108352 0.118069 0.113117 0.0367078 0.040109 0.0070053 -0.029051 -0.067071 -0.0775726 -0.0263891 0.102353 0.077744 -0.123162 0.808126 0.00986409 0.0257045 0.0611963 0.0916301 0.109574 0.137052 0.203986 0.159227 0.158623 0.159314 0.154061 0.149013 0.132667 0.121057 0.113334 0.109833 0.109215 0.110738 0.114981 0.0915077 0.0368872 0.006115 -0.0267889 -0.0586682 -0.0638387 -0.0141065 0.0896239 0.0948401 -0.180154 1.09933 0.123125 0.0748771 0.125062 0.062835 0.0916097 0.118767 0.204568 0.148372 0.158172 0.149287 0.14636 0.139883 0.129932 0.120726 0.11517 0.113005 0.112248 0.11378 0.117748 0.0280554 0.0321951 0.00514065 -0.0243041 -0.0504451 -0.0511774 -0.00478358 0.0792192 0.0550255 -0.101602 0.454912 0.0416739 0.00919718 0.00315709 0.0291662 0.0715361 0.103945 0.189508 0.132456 0.142801 0.133999 0.133268 0.131583 0.124306 0.119004 0.129984 0.112397 0.109284 0.10705 0.103621 0.00109811 0.0279563 0.00414582 -0.0216591 -0.0425386 -0.0398503 0.00187755 0.0687398 0.00137705 0.417275 0.196908 0.0395152 -0.00954864 -0.0396456 -0.0157495 0.032802 0.07993 0.188535 0.109066 0.116221 0.11936 0.121027 0.120279 0.118569 0.117287 0.11211 0.109166 0.107368 0.106024 0.105081 0.058626 0.023251 0.00317662 -0.0189283 -0.0350882 -0.0300166 0.00691799 0.0583471 -0.00100561 1.1694 0.165486 0.024555 -0.0271998 -0.0765251 -0.0621745 -0.00748666 0.0511984 0.0776278 0.0918925 0.100714 0.1061 0.109865 0.112553 0.111379 0.110122 0.108348 0.107907 0.109704 0.108078 0.108176 0.0234183 0.0191633 0.00224792 -0.0161907 -0.0282301 -0.0218086 0.0102345 0.0485808 0.0412313 0.138378 0.0952284 -0.00324087 -0.037991 -0.0929723 -0.0927148 -0.0391238 0.0224019 0.0583947 0.0766388 0.0869671 0.0933701 0.0971974 0.161009 0.144331 0.101151 0.101353 0.10253 0.10441 0.107231 0.117779 0.0360229 0.0154951 0.00134908 -0.0135252 -0.0220852 -0.0152068 0.00974223 0.0398401 0.0442264 0.0979662 0.0802549 0.0290171 -0.0319744 -0.0870906 -0.0956579 -0.0474198 0.0114397 0.0474179 0.0713032 0.076719 0.0826701 0.0860868 0.0879079 0.0900077 0.0920621 0.0936862 0.0952625 0.096899 0.0985226 0.100123 0.0394649 0.011855 0.000466153 -0.0110056 -0.0167503 -0.0101351 0.00900504 0.0316946 0.0371649 0.0635163 0.0592338 0.0259504 -0.0183437 -0.0575555 -0.0662082 -0.0275701 0.0196639 0.0489298 0.0651552 0.0768756 0.0749551 0.0775255 0.0798598 0.0821124 0.0841583 0.0859301 0.0875271 0.0890502 0.0905482 0.0920209 0.0490755 0.00763818 -0.000382477 -0.00869059 -0.0122892 -0.00667037 0.00665543 0.0290144 0.0166358 0.0338562 0.0358305 0.017424 0.0360637 -0.0323651 0.0375275 0.00464224 0.0341612 0.0539511 0.0641145 0.0750764 0.0696276 0.068257 0.0696987 0.0714579 0.0733775 0.0752042 0.0768136 0.0781676 0.0792715 0.080144 0.0681966 0.00243431 -0.00109058 -0.00662182 -0.00871573 -0.00447243 0.00493552 0.0312205 -0.0254057 -0.00508889 0.0130903 0.00956373 -0.00203169 -0.00511061 0.00664214 0.0206072 0.0387578 0.0516679 0.0640384 0.087511 0.0820163 0.0572151 0.0547071 0.055134 0.0562105 0.0605661 0.059832 0.061169 0.0621275 0.0626804 -0.00167026 -0.000752843 -0.00144949 -0.00482506 -0.00598836 -0.00341057 -0.0023926 0.00966399 -0.0732052 -0.0273037 -0.00719889 0.00327262 0.00280843 0.00435483 0.013331 0.0220318 0.0372318 0.048434 0.0445478 0.0412601 0.0399623 0.0373157 0.0346159 0.0328373 0.0338873 0.0363913 0.0348594 0.0361139 0.0429501 0.0371868 0.00121144 -0.00116118 -0.00132596 -0.00330759 -0.00398568 -0.00313222 -0.00225381 0.00737849 -0.121148 -0.0926955 -0.0210963 -0.0011998 0.00405501 0.182508 0.0141743 0.0175014 0.0739145 0.0305755 0.0237839 0.115322 0.0329092 0.0254697 0.0139989 0.00804091 0.00902465 0.00517778 0.00650215 0.00828132 0.0103533 0.0159376 0.00204401 -0.000131496 -0.000910014 -0.00206177 -0.00251682 -0.00286974 -0.00779539 -0.0278158 -0.0653954 -0.0677029 -0.0244359 -0.00571265 0.001352 0.00574645 0.0150552 0.00958386 0.00968544 0.0307693 0.0143931 0.0190009 0.0164022 0.103246 -0.00893679 -0.0165594 -0.0127878 -0.00869409 -0.00577966 -0.00102336 0.0103511 0.0559357 0.0015856 0.000380443 -0.000477543 -0.00107228 -0.00137392 -0.00217571 -0.00612012 -0.0163941 -0.0104527 -0.0329602 -0.0223054 -0.012035 -0.00562316 -0.00109388 0.00162 0.00224734 0.0021639 0.000817626 0.0301214 0.00113341 -0.00108517 -0.000282016 0.00672473 -0.00328115 -0.0024259 -0.0049818 -0.00553565 -0.00656118 -0.00716527 -0.00343924 0.000661613 0.000263995 -0.000140264 -0.000320831 -0.000425401 -0.00089952 -0.00253933 -0.00776217 0.00860828 -0.0182758 -0.0242707 -0.021581 -0.0160246 -0.0109351 -0.00746652 -0.00588251 -0.00606965 -0.00723497 -0.00808673 -0.00738343 -0.00570467 -0.00342185 -0.0017772 -2.81677e-05 0.00114659 0.00140458 0.00668916 0.00749221 0.00228234 0.00191191 0.220719 0.238356 0.359347 0.226803 0.229307 0.273723 0.19426 0.190097 0.138441 0.0840623 0.0808296 0.0769943 0.0754597 -0.768511 96.122 106.684 110.36 106.534 112.05 114.526 114.478 2.94609 0.0196919 0.0471583 0.01359 0.0702269 0.106945 -0.0790285 102.224 111.222 0.214541 0.240412 0.26181 0.235903 0.228667 0.642338 0.18831 0.18351 0.132101 0.0732787 0.0429535 0.0570494 0.184344 0.155873 91.7392 106.904 110.788 105.893 113.485 113.492 117.856 1.69409 -0.0363865 0.0393631 0.0152932 0.0685023 0.0896627 -0.0672029 9.00997 110.197 0.205272 0.236461 0.261337 0.197212 0.216955 0.227231 0.185831 0.177296 0.125956 0.0692692 0.0487519 0.062462 0.192453 0.183352 -0.880008 107.805 111.122 104.878 115.912 112.274 120.88 -0.351075 -0.0670346 0.032821 0.0170533 0.0666255 0.073113 -0.0583653 -0.0601351 107.989 0.216774 0.218793 2.00769 0.965878 0.201524 0.201399 0.183752 0.171438 0.126659 0.0729867 0.0526776 0.0707393 0.109743 0.158197 0.429739 108.582 112.477 103.892 117.648 112.451 122.273 -0.139225 0.0435236 0.0275157 0.0187871 0.0644763 0.0586467 -0.0514585 -0.0455068 -1.25977 0.218379 0.206523 0.24056 0.130462 0.190775 0.199082 0.179614 0.166193 0.130347 0.0829894 0.0634555 0.0776914 0.109926 0.0757085 0.402876 -0.566003 115.466 106.666 116.931 114.92 123.476 -0.038762 0.092982 0.0231945 0.0203738 0.0620034 0.0466032 -0.0469208 -0.0363237 2.74198 0.21006 0.202393 0.194541 0.180786 0.18618 0.214087 0.172838 0.162328 0.135702 0.0980398 0.0785807 0.0847933 0.105522 0.0908979 0.125184 -0.11949 117.253 109.103 118.442 117.146 118.943 0.19522 0.0139798 0.0198118 0.0217413 0.0592071 0.0367423 -0.0427104 -0.0285031 0.0603755 0.200161 0.195525 0.190164 0.183977 0.183589 0.182864 0.167969 0.159979 0.141455 0.114027 0.0951674 0.0927007 0.102558 0.103874 0.145518 -0.0538826 0.276386 85.5695 120.656 118.978 3.44121 -0.041113 -0.0117888 0.0167393 0.0228136 0.0560357 0.0284953 -0.0385358 -0.0276821 0.0284106 0.190049 0.185424 0.1827 0.179554 0.177243 0.172853 0.166587 0.158352 0.144975 0.125171 0.11079 0.0994325 0.102709 0.0887562 0.145184 0.0205478 0.398611 -0.0735189 37.5815 78.1883 -0.319865 -0.142814 -0.0503992 0.0145867 0.0235255 0.0525238 0.0217648 -0.034358 -0.0205786 0.0140254 0.177066 0.189809 0.186678 0.172588 0.169227 0.165284 0.159005 0.160619 0.14523 0.131344 0.122834 0.104518 0.0943296 0.0797622 0.0757274 0.0323782 0.132642 -0.0704902 -0.17551 -0.2539 -0.346899 -0.127012 -0.0708314 0.0117284 0.0238257 0.0487255 0.0166112 -0.0302531 -0.0186707 0.00555981 0.163939 0.165214 0.17476 0.160763 0.160873 0.158578 0.154343 0.150322 0.15342 0.132171 0.129149 0.117754 0.091517 0.0735376 0.136083 0.0326979 0.0777262 -0.0764772 -0.177356 -0.23638 -0.366947 -0.188366 -0.0684606 0.00965839 0.023687 0.0447093 0.012799 -0.0258108 -0.0135132 0.000332615 0.149093 0.15083 0.151611 0.151657 0.152905 0.152654 0.149726 0.146137 0.141418 0.137372 0.164204 0.11304 0.0886933 0.0692984 0.0770758 0.0270941 -0.00452236 -0.0870912 -0.162572 -0.240077 -0.367343 -0.259766 -0.0456406 0.00803755 0.0231119 0.0405518 0.0100895 -0.0212293 -0.00949391 -0.00217505 0.136118 0.138812 0.141904 0.14447 0.150571 0.156805 0.145556 0.142181 0.137083 0.129174 0.117725 0.111369 0.085821 0.103802 0.106581 0.0272227 -0.0026672 0.276284 -0.109879 -0.244868 -0.450247 -0.243349 -0.0225173 0.00680818 0.0221338 0.0363422 0.00820831 -0.0172107 -0.00641825 -0.00273048 0.12514 0.129365 0.133631 0.138328 0.143801 0.166019 0.139427 0.141628 0.137745 0.126868 0.116283 0.118693 0.0813709 0.062536 0.0426633 0.00938746 -0.00533953 -0.00195324 -0.0605275 -0.0941863 -0.482886 -0.235666 -0.0314811 0.00591065 0.0208114 0.0321767 0.00688973 -0.013879 -0.0042487 -0.00209105 0.117996 0.122987 0.129433 0.133967 0.137008 0.139415 0.13781 0.137329 0.132707 0.124983 0.109515 0.134227 0.0789365 0.0602359 0.0326413 -0.00167279 0.00329586 0.0565865 -0.0832711 -0.177717 -0.43267 -0.34816 -0.0349001 0.00529451 0.0192139 0.028148 0.00592724 -0.011112 -0.00281742 -0.00090706 0.117386 0.12445 0.127172 0.137187 0.136 0.137895 0.136442 0.138531 0.130759 0.120774 0.10745 0.101205 0.115949 0.065429 0.0200538 -0.0125927 -0.0197985 -0.0433274 -0.125819 -0.154796 -0.363491 -0.328474 -0.0111966 0.00474949 0.0174101 0.0243377 0.00519175 -0.00885166 -0.00188177 0.000252485 0.119441 0.131599 0.130428 0.134319 0.135392 0.135181 0.134847 0.153283 0.126653 0.113404 0.103375 0.089219 0.0865689 0.118571 0.0162432 -0.0209415 -0.048438 -0.0589075 -0.177712 -0.136464 -0.263092 -0.156206 -0.00881046 0.00407618 0.0154581 0.0208011 0.00462611 -0.00704831 -0.00121741 0.0010878 0.124611 0.133476 0.141804 0.135521 0.141936 0.138532 0.146814 2.81264 0.108163 0.107257 0.100044 0.0859807 0.0991914 0.0577525 0.0148356 -0.0221422 -0.0583918 -0.0179445 -0.156333 -0.114652 -0.141831 -0.0415607 -0.0108428 0.00321085 0.0134049 0.0175637 0.00420587 -0.00562014 -0.000708655 0.00148965 0.0953686 0.0789053 0.0693124 0.0861079 0.113952 0.368909 0.133003 0.12388 0.112678 0.108094 0.0997894 0.0853991 0.0628156 0.0447738 0.00975126 -0.0360815 -0.0654687 -0.00472581 -0.105464 -0.0432056 -0.191726 -0.00679162 -0.0103291 0.00214019 0.0112881 0.0146254 0.00388958 -0.00444515 -0.000321297 0.0015375 0.104581 0.105381 0.109204 0.114322 0.117189 0.123777 0.12462 0.118387 0.124787 0.114144 0.102787 0.0856075 0.0624751 0.0406405 0.0035569 -0.0369034 -0.0645441 0.200321 0.279985 0.354702 -0.207596 -0.0193218 -0.0100533 0.000820393 0.0091404 0.0119716 0.00360922 -0.00336277 -5.20053e-05 0.00136368 0.109772 0.112951 0.116856 0.120956 0.124782 0.12849 0.130451 0.129855 0.126145 0.118948 0.104518 0.0830168 0.0561467 0.0254762 -0.00437621 -0.0400412 -0.0632023 -0.00668685 -0.0134786 -0.0751093 -0.163124 -0.042977 -0.0115459 -0.000735106 0.00699597 0.00958192 0.00331232 -0.0023454 0.00013332 0.00107432 0.121746 0.114604 0.117915 0.121771 0.12582 0.133514 0.134116 0.132899 0.128195 0.117233 0.098918 0.0729706 0.0414945 0.00702584 -0.024564 -0.0459536 -0.0679691 -0.104674 0.0449145 -0.0616248 -0.116027 -0.0420269 -0.0140443 -0.00247525 0.00489525 0.00743833 0.00297236 -0.00148501 0.000264522 0.000772406 0.102746 0.105955 0.109378 0.113155 0.117221 0.12158 0.131443 0.122836 0.116261 0.101488 0.0796477 0.0513529 0.0120703 -0.0251886 -0.050874 -0.0658907 -0.0709636 -0.0851423 0.498636 -0.0732426 -0.0749847 -0.0428022 -0.0165006 -0.00430967 0.00288621 0.00552925 0.0025805 -0.000797715 0.000363948 0.000522657 0.0935404 0.0952446 0.0971749 0.0992686 0.101246 0.102881 0.102623 0.0977081 0.0853825 0.063852 0.0348286 0.0295804 -0.00785707 -0.0882624 -0.099533 -0.0939101 -0.0854033 -0.0721894 0.0580686 0.0427672 -0.0604857 -0.0416662 -0.0183996 -0.0061046 0.00103178 0.00385211 0.00214234 -0.000287952 0.000438438 0.00035598 0.0808449 0.0814081 0.0817498 0.0816739 0.0807484 0.0779631 0.0713154 0.0589511 0.0362919 0.00172378 -0.0452694 -0.100088 -0.163419 -0.197133 -0.169593 -0.136438 -0.0920851 -0.0532817 -0.0174153 -0.0701117 -0.0536682 -0.03926 -0.019699 -0.00771577 -0.000599192 0.00241378 0.00167761 5.11239e-05 0.00048146 0.00026289 0.0628493 0.0625285 0.0613926 0.0588468 0.053913 0.0475195 0.0307664 0.012346 -0.0156823 -0.0699345 -0.152341 -0.240244 -0.314081 -0.343163 -0.299319 -0.193613 -0.0989854 -0.0362544 0.0893155 -0.0337085 -0.0461861 -0.0306867 -0.0206341 -0.00898356 -0.00191446 0.00122943 0.00121681 0.000236302 0.000479598 0.000216273 0.038064 0.0382523 0.0374448 0.0351411 0.0304486 0.0215627 0.0529016 -0.0235161 -0.0640406 -0.127425 -0.0936274 -0.310327 -0.401524 -0.434492 -0.343182 -0.229366 -0.0856904 -0.0216359 -0.00901462 0.172107 -0.0497194 -0.0155261 0.000773222 -0.00968268 -0.00281024 0.000319665 0.000791887 0.000296228 0.000428827 0.000187548 0.0117108 0.0120469 0.0113607 0.00895462 0.00375797 -0.00585945 -0.022021 -0.0439074 -0.0775915 -0.133138 -0.211017 -0.221099 -0.384283 -0.388978 -0.327517 -0.20787 -0.0816144 -0.00740043 0.0170758 0.487814 -0.104747 -0.0416433 -0.0230198 -0.00941044 -0.00317625 -0.00029461 0.000428847 0.00025864 0.000342431 0.000158609 0.00506862 0.00453701 0.00308494 0.000478413 -0.00383495 -0.0105935 -0.0208017 -0.0361078 -0.0592386 -0.0937415 -0.140839 -0.196907 -0.236961 -0.239493 -0.202964 -0.13044 -0.0463064 -0.0015398 -0.000170743 -0.0662163 -0.0460762 -0.0315928 -0.0198448 -0.00776231 -0.00294219 -0.000601256 0.000146023 0.000162062 0.000234564 0.000124028 -0.0019258 -7.60079e-05 -0.00137656 -0.00281624 -0.00932374 -0.00835201 -0.0106431 -0.016225 -0.0273263 -0.0449033 -0.068445 -0.0927177 -0.108225 -0.10356 -0.0751246 0.0936607 -0.00491931 0.0104531 0.00531704 -0.00215857 -0.0155495 0.0209466 -0.0120087 -0.00492553 -0.00214047 -0.000620209 -5.15998e-05 3.37371e-05 0.000111839 8.1448e-05 -0.00115916 -0.00143346 0.00321461 0.0323238 0.0344547 -0.00396238 -0.00211859 -0.00359314 -0.00853614 -0.0153773 -0.0306946 -0.0425318 -0.0403353 0.0179088 -0.0200705 0.0162148 0.0177609 0.0119601 0.00733055 0.0105491 0.00602575 -0.00537545 -0.003625 -0.00151135 -0.000961926 -0.000419746 -0.000180376 -0.000114153 -2.63768e-05 2.90767e-05 121.959 113.008 102.448 94.0671 88.0245 83.885 82.035 83.5827 87.8031 92.0126 94.704 95.8279 95.8135 95.1199 94.1049 93.0047 91.9592 91.041 90.2784 89.6717 89.2054 88.8573 88.6048 88.4278 88.3096 88.2369 88.1989 88.187 88.1945 88.2158 122.962 113.012 102.432 94.0509 88.0103 83.8639 81.9841 83.5267 87.7972 92.048 94.7499 95.868 95.8437 95.1403 94.1156 93.0059 91.9513 91.0253 90.2568 89.6461 89.1775 88.8284 88.5758 88.399 88.2813 88.2091 88.1715 88.1601 88.1679 88.1896 123.039 113.027 102.402 94.0205 87.9825 83.8209 81.8786 83.3987 87.7591 92.0967 94.8338 95.95 95.9088 95.1857 94.1419 93.0129 91.9399 90.9979 90.2171 89.5982 89.1249 88.7736 88.5204 88.3441 88.2272 88.156 88.1194 88.1089 88.1175 88.1398 123.166 113.053 102.357 93.9756 87.9413 83.7575 81.7216 83.2044 87.6962 92.1623 94.9541 96.0719 96.0089 95.2588 94.1867 93.0287 91.9274 90.9607 90.161 89.5295 89.0487 88.694 88.4399 88.2641 88.1485 88.0789 88.0439 88.0347 88.0444 88.0675 123.342 113.09 102.298 93.9159 87.8868 83.6746 81.5124 82.9407 87.6106 92.2475 95.1111 96.2323 96.1422 95.3572 94.2478 93.0513 91.9126 90.9131 90.0881 89.4396 88.949 88.5898 88.3346 88.1597 88.0457 87.9779 87.9447 87.9371 87.9481 87.9723 123.568 113.142 102.222 93.8416 87.8189 83.5736 81.2498 82.6014 87.5011 92.3544 95.3065 96.4314 96.3074 95.4785 94.3228 93.079 91.894 90.8536 89.997 89.3272 88.8247 88.4602 88.204 88.0302 87.9183 87.8526 87.8211 87.8151 87.8275 87.853 123.846 113.208 102.13 93.7525 87.738 83.4563 80.9326 82.1786 87.3669 92.4848 95.5425 96.6707 96.5044 95.6218 94.4109 93.111 91.871 90.7813 89.8862 89.1909 88.6743 88.304 88.0472 87.8753 87.7659 87.7025 87.6729 87.6683 87.682 87.7089 124.175 113.292 102.02 93.6486 87.6441 83.3252 80.5597 81.6622 87.2068 92.6413 95.8218 96.9522 96.7339 95.7871 94.5119 93.1475 91.8433 90.695 89.754 89.0284 88.4956 88.1195 87.8629 87.694 87.5882 87.5278 87.5002 87.4969 87.5118 87.54 124.557 113.396 101.891 93.5299 87.5373 83.183 80.1298 81.0389 87.0197 92.8268 96.1473 97.2775 96.9966 95.9748 94.6261 93.1885 91.8106 90.5933 89.5979 88.8369 88.286 87.9044 87.6497 87.4857 87.3852 87.329 87.3041 87.302 87.3172 87.3461 124.993 113.523 101.744 93.3963 87.4177 83.0335 79.6421 80.291 86.805 93.0451 96.5225 97.6492 97.2934 96.1848 94.7535 93.2341 91.7725 90.4745 89.4149 88.6128 88.0421 87.656 87.4055 87.2493 87.1568 87.1069 87.0859 87.0852 87.0995 87.1263 125.483 113.683 101.577 93.2479 87.2853 82.8808 79.0962 79.3954 86.5624 93.3 96.9514 98.0701 97.6253 96.4173 94.8941 93.2847 91.7289 90.3367 89.2016 88.3518 87.7595 87.3707 87.128 86.9835 86.9025 86.8619 86.847 86.8487 86.8615 86.8824 126.027 113.873 101.391 93.0848 87.1397 82.7299 78.4929 78.3207 86.2927 93.5964 97.4385 98.5435 97.9935 96.6722 95.0477 93.3402 91.68 90.1779 88.9538 88.0485 87.4328 87.0442 86.8142 86.6867 86.6218 86.5941 86.5881 86.5941 86.6069 86.6263 126.62 114.085 101.187 92.9072 86.9802 82.587 77.8316 77.0218 85.9977 93.9396 97.9888 99.0732 98.3991 96.9492 95.2139 93.4008 91.6264 89.9955 88.6665 87.6962 87.0553 86.6711 86.4607 86.3566 86.3134 86.3029 86.3089 86.3221 86.3369 86.3581 127.261 114.297 100.965 92.7157 86.8059 82.4591 77.1198 75.4304 85.681 94.3352 98.6076 99.6633 98.8432 97.2475 95.3919 93.4658 91.5689 89.7869 88.3343 87.2863 86.6182 86.2449 86.0632 85.9912 85.9758 85.9864 86.0068 86.029 86.0496 86.0703 127.943 114.477 100.728 92.5111 86.6149 82.3543 76.3671 73.4575 85.3475 94.7893 99.3005 100.318 99.3268 97.566 95.5805 93.5343 91.5079 89.5482 87.9514 86.8076 86.1098 85.7572 85.6171 85.5882 85.6083 85.6437 85.679 85.7095 85.7351 85.758 128.661 114.591 100.477 92.2947 86.4045 82.2823 75.5985 71.0483 84.9989 95.3081 100.073 101.044 99.8511 97.9028 95.7776 93.6041 91.4397 89.2707 87.5118 86.2456 85.5146 85.1979 85.1176 85.1462 85.2117 85.2765 85.3273 85.3642 85.392 85.4153 129.405 114.608 100.215 92.069 86.1705 82.2545 74.8237 68.0268 84.6345 95.8997 100.931 101.845 100.417 98.2545 95.98 93.6725 91.3464 88.9255 87.0073 85.5801 84.8105 84.5549 84.5605 84.6652 84.789 84.8902 84.9581 85.0006 85.0287 85.0505 130.163 114.5 99.9447 91.8376 85.9066 82.2843 74.0578 63.9858 84.2819 96.5759 101.88 102.728 101.023 98.6158 96.1812 93.7391 91.1764 88.5037 86.43 84.7836 83.965 83.8147 83.9447 84.147 84.346 84.4952 84.5845 84.633 84.6606 84.6793 130.914 114.233 99.6718 91.6061 85.6034 82.3875 73.294 58.4535 84.013 97.3498 102.924 103.698 101.668 98.9773 96.3667 93.8097 90.8773 88.14 85.7862 83.8169 82.9283 82.9657 83.2793 83.6007 83.8941 84.1094 84.227 84.2806 84.3037 84.3149 131.629 113.778 99.4038 91.3829 85.2487 82.5844 72.4499 50.8366 83.8926 98.2145 104.066 104.759 102.346 99.3231 96.5254 93.8968 90.4928 87.9001 85.0979 82.6327 81.6296 82.0036 82.5882 83.057 83.465 83.7585 83.904 83.9537 83.9619 83.9571 132.267 113.102 99.1541 91.1798 84.8381 82.908 71.3752 39.7528 83.9148 99.1262 105.31 105.914 103.047 99.6264 96.7378 94.0214 90.1532 87.7222 84.4084 81.1931 79.9473 80.8904 81.8632 82.5451 83.1071 83.4732 83.6278 83.6542 83.6305 83.5985 132.769 112.179 98.946 91.0139 84.3489 83.4145 69.7225 -6.68535 84.1457 99.9721 106.661 107.159 103.747 99.8417 97.1341 94.1861 89.9813 87.6262 83.7942 79.3762 77.2818 79.4212 81.0427 82.0401 82.8423 83.2849 83.4159 83.3837 83.2976 83.2188 133.065 110.987 98.8196 90.9119 84.5381 84.1969 64.1808 1.11881 85.116 100.763 108.132 108.485 104.404 99.8837 97.6734 94.4321 90.0585 87.6583 83.3995 76.9652 72.4282 77.335 80.0981 81.5486 82.7285 83.2639 83.3051 83.152 82.943 82.7754 133.073 109.527 98.8244 90.8856 84.3925 85.2938 -4.83075 0.176214 86.2861 101.487 109.737 109.872 104.915 99.5534 98.3309 94.8608 90.421 87.8305 83.3569 75.0598 66.8726 75.4744 78.4232 81.0209 82.9448 83.5632 83.3151 82.9874 82.5403 82.1682 132.708 107.903 98.9909 90.9191 84.6866 86.3883 -0.342313 0.0604629 88.5388 101.905 111.473 111.284 105.003 98.3892 99.1286 95.511 91.046 88.1074 84.053 75.1781 62.9243 72.6857 72.0239 81.2557 83.8735 84.5161 83.2242 83.1011 82.0654 81.123 131.905 106.509 99.3241 90.9712 85.5702 -0.221854 -0.355205 -0.157643 90.0665 102.171 113.279 112.664 104.595 96.4631 100.284 96.3256 91.8103 88.5444 85.323 68.9285 0.356539 0.325256 0.285871 0.265262 0.254206 0.253746 0.253196 0.250505 0.249934 0.248981 130.661 105.489 99.8162 90.9957 -0.0245873 -0.307179 -0.362874 -0.758049 87.2041 102.319 115.022 113.922 104.784 96.2993 101.525 97.1996 92.5695 89.7132 84.0101 0.323791 0.562264 0.280022 0.271028 0.262214 0.257349 0.256009 0.254464 0.252772 0.251142 0.249738 129.154 104.509 100.329 62.5331 -0.125438 -0.263744 -0.359615 -0.759222 75.0357 103.067 116.748 114.951 105.261 99.275 102.74 98.2022 93.7349 91.2082 -0.0120096 0.288247 0.691724 0.238504 0.249723 0.255295 0.256701 0.256641 0.255856 0.253355 0.249969 0.249835 127.623 103.727 100.521 0.0338554 -0.150948 -0.236335 -0.354344 -0.810276 68.2689 101.873 118.03 115.722 104.374 104.404 103.217 99.6016 98.1472 -0.0566906 0.193532 0.199832 0.206812 0.207048 0.226005 0.242705 0.252558 0.255895 0.256749 0.263933 0.249439 0.244567 125.421 102.17 86.529 0.0240577 -0.162339 -0.220279 -0.343757 -0.81103 10.5809 102.759 117.475 116.416 102.158 108.228 102.951 101.157 103.871 0.297276 0.215006 0.14153 0.172041 0.179381 0.211102 0.2238 0.244417 0.25222 0.252209 0.252369 0.250987 0.251316 88.2482 88.2945 88.3607 88.4519 88.5745 88.7363 88.9472 89.2191 89.5669 90.0084 90.563 91.2495 92.0805 93.0549 94.1471 95.2989 96.4106 97.3145 97.737 97.288 95.493 92.02 87.5482 84.4426 84.3251 86.7439 91.0834 96.3436 101.651 105.84 88.2222 88.2687 88.335 88.4263 88.5488 88.7106 88.9214 89.1933 89.5416 89.9841 90.5407 91.2304 92.0661 93.0467 94.146 95.3054 96.425 97.3378 97.7697 97.3295 95.5352 92.0375 87.515 84.3916 84.2977 86.7292 91.077 96.3399 101.651 105.85 88.1729 88.2197 88.2862 88.3774 88.4998 88.6613 88.8719 89.144 89.4932 89.938 90.4986 91.195 92.0407 93.0347 94.1499 95.3257 96.4613 97.3897 97.8364 97.4058 95.5999 92.0456 87.4289 84.2842 84.241 86.6982 91.0657 96.3357 101.654 105.875 88.1013 88.1486 88.2153 88.3065 88.4285 88.5894 88.7997 89.0721 89.4229 89.8712 90.4382 91.1447 92.0058 93.021 94.1618 95.3641 96.5233 97.4714 97.9353 97.5144 95.6889 92.0515 87.2978 84.1239 84.1563 86.6512 91.0495 96.3306 101.662 105.917 88.007 88.0549 88.122 88.2132 88.3349 88.4952 88.7051 88.9781 89.3311 89.7841 90.3596 91.0799 91.9616 93.0055 94.1808 95.418 96.6078 97.5801 98.0645 97.6554 95.8047 92.0584 87.1202 83.9087 84.0441 86.588 91.0281 96.3243 101.673 105.975 87.8887 87.9376 88.0054 88.0969 88.2183 88.3781 88.5877 88.8614 89.2171 89.6761 90.2622 90.9996 91.9073 92.9874 94.2054 95.4847 96.7111 97.7134 98.2236 97.8297 95.9492 92.0669 86.8915 83.6356 83.9057 86.5089 91.0019 96.3168 101.688 106.051 87.746 87.7962 87.8649 87.9568 88.0781 88.2375 88.4468 88.7214 89.0804 89.5464 90.145 90.9027 91.8416 92.966 94.2355 95.563 96.8316 97.8702 98.4127 98.0386 96.1244 92.0775 86.6053 83.3009 83.7424 86.4137 90.9709 96.3077 101.707 106.145 87.5787 87.6304 87.7 87.7924 87.9137 88.0726 88.2816 88.5572 88.9199 89.3938 90.0067 90.7877 91.7632 92.9407 94.2712 95.6532 96.9692 98.0504 98.6319 98.2834 96.3323 92.091 86.2536 82.9004 83.5561 86.3026 90.9354 96.2971 101.728 106.256 87.3867 87.4403 87.5096 87.6022 87.7242 87.8827 88.0912 88.3677 88.7343 89.2169 89.8456 90.6527 91.6699 92.9108 94.3132 95.7552 97.1238 98.2541 98.8819 98.5658 96.5759 92.1086 85.8259 82.4289 83.3494 86.1754 90.8958 96.2846 101.751 106.385 87.1676 87.228 87.2893 87.3842 87.5084 87.6667 87.8747 88.1518 88.5223 89.0142 89.66 90.4956 91.5591 92.8753 94.362 95.8686 97.2952 98.4812 99.163 98.8878 96.8584 92.1317 85.3081 81.8808 83.1256 86.0322 90.8522 96.2698 101.775 106.534 86.9098 87.1738 87.0862 87.138 87.2658 87.4243 87.6311 87.9084 88.2825 88.7839 89.4477 90.3141 91.4275 92.8328 94.4187 95.9925 97.4829 98.7318 99.4759 99.2516 97.1835 92.1622 84.6816 81.2503 82.8885 85.8726 90.805 96.2525 101.8 106.699 86.665 86.7222 86.7762 86.8678 86.9963 87.1551 87.3596 87.636 88.0135 88.5241 89.2067 90.1055 91.27 92.7813 94.4836 96.1249 97.6865 99.006 99.8211 99.6592 97.5555 92.2024 83.9215 80.5308 82.6435 85.6961 90.7544 96.2323 101.826 106.882 86.453 86.4224 86.4833 86.5726 86.6989 86.8566 87.0583 87.3338 87.7138 88.2327 88.9343 89.8676 91.0809 92.7154 94.5555 96.2616 97.9052 99.3039 100.199 100.114 97.9792 92.2555 82.9938 79.7156 82.3967 85.5021 90.7008 96.2086 101.849 107.084 86.0905 86.1263 86.1783 86.2569 86.3724 86.5254 86.7253 87.0008 87.3823 87.9073 88.627 89.5984 90.853 92.6186 94.6264 96.3962 98.1388 99.6258 100.61 100.619 98.4591 92.3248 81.852 78.7957 82.1562 85.2896 90.6445 96.1811 101.871 107.303 85.7816 85.8119 85.855 85.9151 86.0092 86.162 86.3611 86.6376 87.0184 87.5448 88.2803 89.2955 90.5793 92.4254 94.6687 96.519 98.3875 99.9724 101.055 101.179 98.9994 92.414 80.434 77.7639 81.9317 85.0573 90.5856 96.1491 101.889 107.535 85.4387 85.4679 85.5047 85.5225 85.543 85.7766 85.9719 86.2466 86.6214 87.1412 87.8874 88.9548 90.2653 91.967 94.6012 96.6187 98.6532 100.344 101.533 101.796 99.6018 92.5268 78.6723 76.6579 81.7349 84.804 90.5243 96.1124 101.902 107.783 85.0718 85.0995 85.1507 87.7978 86.9152 85.3731 85.5626 85.8301 86.191 86.6911 87.4377 88.5656 89.9729 91.361 94.2533 96.6878 98.94 100.742 102.044 102.477 100.269 92.6637 76.516 75.5052 81.5838 84.5285 90.4602 96.0706 101.908 108.045 84.6957 84.7145 84.7395 84.7601 84.7016 84.9342 85.1331 85.39 85.7271 86.1871 86.9157 88.1136 89.7464 91.1214 93.4937 96.735 99.2553 101.168 102.585 103.225 101.014 92.8206 73.9333 74.165 81.4977 84.231 90.392 96.0233 101.907 108.323 84.323 84.3323 84.3466 84.3714 84.4054 84.5158 84.687 84.9295 85.233 85.6199 86.298 87.5811 89.4964 91.0258 92.5144 96.799 99.6097 101.622 103.154 104.046 101.849 93.013 70.9342 72.5736 81.4951 83.915 90.3162 95.97 101.897 108.616 83.9513 83.9473 83.9452 83.9469 83.972 84.0857 84.2096 84.4587 84.7172 84.9772 85.548 86.9425 89.1787 90.8418 91.8474 96.9472 100.017 102.105 103.743 104.946 102.773 93.3034 67.6622 70.77 81.6203 83.5919 90.2236 95.9094 101.875 108.924 83.5736 83.5561 83.5395 83.5176 83.5097 83.5973 83.9811 83.9991 84.1867 84.2372 84.5927 86.1663 88.8325 90.6716 91.9444 97.2415 100.49 102.616 104.341 105.93 103.767 93.7761 64.3131 68.9987 81.9185 83.2918 90.0955 95.8392 101.841 109.247 83.1705 83.1488 83.1349 83.0985 83.0582 83.0936 83.3867 83.569 83.6406 83.3613 83.2656 85.2247 88.4825 90.6907 92.7757 97.6876 101.044 103.156 104.929 107 104.831 94.4525 61.5543 67.4826 82.4272 83.0769 89.9114 95.7549 101.792 109.587 82.6992 82.7083 82.7376 82.6711 82.5405 82.588 82.9393 83.2041 83.1104 82.2298 81.245 84.0829 88.1342 90.8925 93.9436 98.2119 101.689 103.721 105.476 108.151 105.939 95.3256 61.62 32.5785 83.0403 83.0248 89.6784 95.649 101.724 109.949 82.05 82.2158 82.4562 82.2825 81.8247 81.8678 82.5438 82.9978 82.661 80.5944 78.4549 82.7592 87.8017 91.1856 94.9851 98.7274 102.446 104.311 105.932 109.362 107.059 96.5447 75.565 1.16037 83.5497 83.1611 89.4387 95.5086 101.635 110.342 80.8466 81.5327 82.7868 82.2301 80.5347 80.8157 82.2006 83.2475 82.292 79.1287 75.5729 81.8898 87.5174 91.4614 95.756 99.2941 103.344 104.929 106.221 110.593 108.085 98.44 -6.62827 0.849291 -0.119187 83.3005 89.4368 95.3142 101.53 110.781 0.249131 0.243435 0.235542 0.230114 0.237189 0.237789 0.245319 7.37796 31.2879 59.8495 69.8884 81.665 87.4104 91.7015 96.5331 100.163 104.411 105.594 106.22 111.782 108.995 101.008 7.1027 0.561392 -0.0621261 5.57725 89.7452 95.0422 101.439 111.289 0.247125 0.24249 0.240639 0.236617 0.234349 0.234821 0.22997 0.217776 0.217521 0.235968 0.234812 82.6285 87.5411 91.8907 97.4666 101.335 105.648 106.371 105.768 112.834 110.16 104.254 2.89379 0.281184 -0.0134506 0.0913831 90.3888 94.6996 101.391 111.896 0.259661 0.254628 0.240588 0.236973 0.228841 0.244692 0.225326 0.221164 0.20959 0.197151 0.198589 0.34529 87.3364 92 98.5802 102.43 107.025 107.387 104.942 113.643 110.951 106.419 0.258492 0.106753 0.0107222 0.0770234 52.7095 94.3916 101.424 112.618 0.244845 0.243474 0.240262 0.233864 0.225317 0.217573 0.21528 0.215204 0.188741 0.144639 0.117182 0.106712 0.474521 93.2516 100.461 103.103 108.439 108.6 105.067 113.447 111.232 105.416 0.24967 0.0811984 0.0214366 0.064624 0.0285318 94.3178 101.623 113.321 0.236846 0.238219 0.240527 0.241462 0.219505 0.200648 0.200221 0.202508 0.164001 0.112885 0.1113 0.0597874 0.0922968 75.2303 102.499 103.908 109.759 108.981 106.468 113.465 110.491 103.062 0.209173 0.0811893 0.0258506 0.0581489 0.0815085 -0.14532 102.099 114.252 118.965 103.7 16.8395 0.0176501 -0.163023 -0.2121 -0.333997 -0.60526 56.5294 107.061 116.766 117.07 101.699 108.707 103 100.789 0.6106 0.321222 0.180741 0.0759586 0.152018 0.164016 0.185723 0.211373 0.236883 0.248386 0.264389 0.249488 0.245071 0.290065 116.252 83.0556 -0.16638 0.0154218 -0.160646 -0.206376 -0.334207 -0.773823 66.0777 110.843 117.259 118.06 102.35 107.235 102.961 58.5068 0.666866 0.495085 0.125952 0.0860598 0.138494 0.152227 0.173098 0.201793 0.230091 0.243835 0.264471 0.246086 0.243541 13.1287 111.735 19.6792 -0.0356541 0.00841036 -0.156285 -0.200635 -0.314104 -0.754613 2.42582 111.984 117.714 118.841 104.531 103.935 103.77 0.376334 0.660936 1.25357 0.104823 0.0553599 0.127101 0.140112 0.159878 0.190653 0.221835 0.237188 0.245262 0.243017 0.23092 2.30505 113.253 0.312459 -0.0284426 0.00416758 -0.150234 -0.194688 -0.369201 -0.719036 3.7103 111.634 118.867 118.832 107.902 99.8194 18.656 0.471802 0.593824 1.15702 0.0475786 0.0924402 0.117844 0.128148 0.146617 0.178355 0.212039 0.230783 0.236067 0.237062 0.233401 0.256298 112.654 0.451455 -0.020906 0.000107418 -0.142945 -0.188359 -0.358563 -0.338122 2.43111 113.546 120.659 120.035 111.358 96.6388 0.210049 0.520759 0.733824 2.60429 0.0466074 0.0926685 0.109406 0.117622 0.162876 0.165451 0.200881 0.238454 0.226578 0.228453 0.227057 0.22896 78.7264 0.0729626 -0.0129112 -0.00356954 -0.134881 -0.181524 -0.298645 -0.104799 1.17376 123.224 124.217 122.105 114.806 -0.709471 0.203949 0.443823 -0.0302097 -0.0547043 0.0577037 0.0972186 0.206057 0.117747 0.155986 0.153559 0.189424 0.206335 0.214572 0.216558 0.215688 0.213921 -0.0256834 0.0601239 -0.00552119 -0.00676948 -0.126479 -0.174054 -0.311862 -0.292568 0.443496 98.5344 124.936 125.092 115.933 0.240002 0.19928 0.27921 0.0411979 0.0302134 0.072807 0.0989374 0.200796 0.124526 0.120643 0.145245 0.177809 0.238055 0.200601 0.203571 0.203026 0.201473 -0.0285927 0.0604116 0.000690023 -0.00954011 -0.11807 -0.165866 -0.279483 -0.133073 0.0646514 -0.353442 125.488 125.809 3.44437 0.219784 0.204754 0.22825 0.139335 0.210154 0.0955731 0.104972 0.113565 0.109448 0.120053 0.140069 0.167349 0.223327 0.188559 0.189882 0.189497 0.188399 -0.026664 0.0538879 0.00551152 -0.0119613 -0.109854 -0.156888 -0.245477 0.314408 -0.215591 -0.0520803 63.225 74.1519 0.809718 0.198483 0.204691 0.211614 0.153061 0.142807 0.114046 0.112244 0.114576 0.116109 0.123192 0.137117 0.153608 0.166528 0.173096 0.174557 0.174582 0.174458 -0.0243056 0.0534149 0.00892812 -0.0140958 -0.101926 -0.147082 -0.214073 -0.0668697 -0.348735 -0.00264457 0.228672 -0.0138242 1.00296 0.185732 0.195531 0.201458 0.132635 0.150865 0.127243 0.120343 0.118567 0.121885 0.128816 0.136458 0.145294 0.15216 0.155663 0.157108 0.157894 0.158977 -0.0220803 0.0515344 0.0110788 -0.0159512 -0.0942814 -0.136441 -0.181089 -0.00732094 -0.390089 -0.135426 0.152152 0.0127093 0.798368 0.145452 0.228891 0.193293 0.147735 0.15603 0.138287 0.127738 0.125074 0.127159 0.132933 0.156113 0.137345 0.137967 0.138327 0.139055 0.140481 0.14283 -0.0199185 0.0492581 0.0121885 -0.0174535 -0.0868656 -0.125033 -0.144265 0.0426589 -0.350139 -0.123111 0.108911 -0.0240721 0.0415506 0.126614 0.19577 0.184574 0.148011 0.176697 0.147363 0.134946 0.129963 0.362487 0.131589 0.132405 0.129126 0.128774 0.123841 0.140185 0.129729 0.129019 -0.0178149 0.0460841 0.0125095 -0.0185081 -0.0795899 -0.11299 -0.113401 0.0653254 -0.199397 -0.111054 0.248505 -0.0277294 0.0265392 0.108731 0.163059 0.167169 0.14509 0.161042 0.154637 0.147387 0.152167 0.3989 0.131289 0.130277 0.122247 0.115348 0.111476 0.1104 0.114132 0.117805 -0.0157421 0.0516742 0.0122721 -0.0190495 -0.0723761 -0.100497 -0.0807993 0.0752181 0.0571372 -0.105625 0.0441327 -0.0043106 0.0566756 0.128531 0.139316 0.191481 0.143108 0.161316 0.159444 0.228121 0.161105 0.150856 0.151779 0.133033 0.120838 0.110959 0.106024 0.10487 0.106878 0.111613 -0.0134887 0.0458554 0.0116633 -0.0190667 -0.0651958 -0.0878068 -0.062285 0.0895082 0.128317 -0.0571261 0.657858 0.0713325 0.0214533 0.0736759 0.110576 0.121655 0.140023 0.232061 0.161689 0.161353 0.161384 0.157435 0.147783 0.136112 0.122511 0.116759 0.107602 0.107364 0.118395 0.112798 -0.011001 0.042069 0.0108151 -0.0186017 -0.0580493 -0.0752086 -0.0471433 0.0902279 0.144387 -0.108404 0.361007 0.02834 0.0193254 0.0436572 0.0771561 0.10059 0.126151 0.206982 0.157571 0.162954 0.158065 0.15835 0.150208 0.135434 0.123736 0.115614 0.111417 0.110263 0.111399 0.11494 -0.00861879 0.0383519 0.00979793 -0.0177223 -0.0509791 -0.0630218 -0.0315083 0.074732 0.148281 -0.138942 0.769079 0.0464004 0.0711922 0.0851992 0.0480644 0.0786316 0.108128 0.173078 0.144388 0.153792 0.146579 0.144455 0.139873 0.129818 0.12197 0.115092 0.113841 0.112141 0.112531 0.115276 -0.00668599 0.0337298 0.00862798 -0.0165056 -0.044056 -0.051549 -0.0197197 0.0648106 0.0994832 -0.0974875 0.333909 0.0756184 0.0123529 -0.0061208 0.0107365 0.0496912 0.0922258 0.170861 0.125376 0.129993 0.134908 0.130344 0.128716 0.125684 0.119955 0.127855 0.126896 0.109016 0.106562 0.103726 -0.00514545 0.0297558 0.00728751 -0.0150317 -0.0373738 -0.0410515 -0.0108804 0.0553534 0.0732031 0.888614 0.0903183 0.203292 0.00472348 -0.0474601 -0.0374284 0.00922071 0.0650378 0.0866359 0.100367 0.110889 0.11516 0.117787 0.1183 0.116523 0.115136 0.113511 0.110035 0.107902 0.106855 0.106302 -0.00281772 0.0252839 0.00575525 -0.0133827 -0.0310389 -0.0317342 -0.0042064 0.0463699 0.0548397 0.435803 0.118253 0.569883 -0.0127914 -0.0753467 -0.0799383 -0.0324794 0.0284476 0.0663084 0.0849199 0.0951908 0.101632 0.106109 0.112972 0.209862 0.109323 0.107166 0.106842 0.108923 0.10864 0.110877 0.000435903 0.0206612 0.00404014 -0.011639 -0.0251644 -0.0237515 0.00129903 0.0388613 0.0516844 0.109477 0.100106 0.0857875 -0.0204119 -0.083362 -0.102067 -0.0600516 0.00466218 0.0477008 0.0696334 0.0817966 0.0890955 0.0933362 0.0941686 0.103499 0.0978416 0.0990258 0.100357 0.102183 0.104657 0.108292 0.00376311 0.0146364 0.00219883 -0.00987552 -0.0198532 -0.0171407 0.00263907 0.0321989 0.0466301 0.0790812 0.0810038 0.0460506 -0.0135543 -0.0684364 -0.0950288 -0.0594759 -0.000604362 0.0401333 0.0691029 0.0732092 0.0793332 0.0831808 0.0855168 0.0876386 0.0897538 0.0914712 0.093052 0.0946633 0.0963347 0.0980796 0.00757095 0.00469503 0.000368523 -0.00815868 -0.0151924 -0.0119292 0.00345911 0.0254702 0.0331105 0.0503038 0.0567982 0.0325844 0.0288613 -0.0455816 -0.059757 -0.0303871 0.0136188 0.0455071 0.0619909 0.0738869 0.0728806 0.074807 0.0770344 0.0792475 0.081352 0.0832158 0.0848615 0.0863647 0.0877772 0.0891136 0.0117751 -0.0168443 -0.00115931 -0.0065403 -0.0112439 -0.00812263 0.00474693 0.0325545 0.0102061 0.0198947 0.0310657 0.0201035 0.0363318 -0.0235306 0.0732065 0.0059478 0.0306776 0.0515111 0.0621493 0.0698847 0.0671332 0.0656466 0.0662619 0.0675999 0.0693765 0.071219 0.072908 0.074319 0.0754251 0.0762422 0.0151868 -0.0539371 -0.00189622 -0.00505525 -0.00802765 -0.00549875 0.00152161 0.0263493 -0.0300404 -0.0289119 0.00465183 0.00891179 0.0015838 -0.00455313 0.00571878 0.019651 0.0380417 0.0463146 0.0539462 0.0561222 0.0762145 0.0595104 0.0498505 0.0500203 0.0505587 0.0522033 0.0539747 0.0552891 0.0563687 0.0570479 0.0121098 -0.0145408 -0.00163056 -0.00372303 -0.00551275 -0.00396077 -0.00284485 -0.00465053 -0.0815411 -0.066576 -0.0210549 0.000570294 0.00333527 0.0258829 0.0130566 0.0191954 0.0312544 0.0909503 0.041263 0.0359941 0.0364278 0.0344129 0.0301434 0.0270469 0.0283768 0.0323453 0.027259 0.0287351 0.0311957 0.0294821 0.00590883 0.00187115 -0.000984698 -0.00255362 -0.00360796 -0.00312042 -0.00506926 -0.0187378 -0.0944408 -0.109446 -0.0348153 -0.00504932 0.00281605 0.0189178 0.0105725 0.0160101 0.03797 0.0232679 0.022703 0.151944 0.0953931 0.0366086 0.0105469 0.00115266 0.00184979 -0.00134485 0.000487796 0.00270036 0.00440309 0.00995416 0.00220452 0.00529334 -0.000421635 -0.00156115 -0.00217279 -0.00244256 -0.00559689 -0.0186883 0.00210779 -0.0166854 -0.0320253 -0.00983673 -0.00143418 0.00344051 0.00706768 0.014645 0.00760592 0.0104768 0.0131135 0.0155911 0.00640609 -0.00775237 -0.0139653 -0.00840995 -0.0130869 -0.00894897 -0.0062892 0.00723993 0.0230794 0.0598847 0.000650094 0.00398949 -7.12933e-05 -0.000759718 -0.00106368 -0.00156477 -0.00408743 -0.012831 0.0173975 -0.00895374 -0.0244248 -0.0158174 -0.00930258 -0.00433503 -0.00108353 0.000155458 0.00495856 -0.00201378 -0.00619921 -0.00316381 0.000706982 -0.000466058 0.0110897 -0.001427 0.000473443 -0.00347347 -0.00355202 -0.00331355 -0.00340095 -0.00153928 0.00012469 0.000395069 2.33968e-05 -2.82222e-05 -2.95901e-05 -7.46446e-05 -0.000336751 -0.00115836 -0.00155459 -0.0128812 -0.0276129 -0.0293435 -0.0241058 -0.0179721 -0.0130803 -0.00992997 -0.00859769 -0.0091288 -0.0108033 -0.0118088 -0.0111684 -0.00941208 -0.00728047 -0.00522879 -0.00364808 -0.00247724 -0.00169456 -0.00102899 -6.92098e-05 0.000285115 0.204949 0.235183 0.248952 0.311127 0.226641 0.696201 0.188896 0.193645 0.151617 0.09656 0.0715145 0.0566494 0.0424282 0.237444 102.83 105.747 109.995 108.071 106.572 113.899 113.962 61.4957 0.0422773 0.0695742 0.0272232 0.0556212 0.0906739 -0.106305 36.1272 115.468 0.329114 0.239764 0.254646 0.257445 0.222114 0.674783 0.181582 0.187611 0.144514 0.0901409 0.0550753 0.0586275 0.0631581 0.235302 25.4878 107.085 110.013 107.912 105.808 114.515 118.772 36.0586 0.0248554 0.0582748 0.0278123 0.0540553 0.0901863 -0.0761628 -0.133138 115.97 0.162563 0.229345 0.250194 0.246665 0.205457 0.223237 0.183477 0.181605 0.141574 0.0804489 0.0516304 0.0609952 0.0705526 0.175604 -0.204376 109.665 108.979 108.875 105.921 114.742 120.328 1.84986 0.0190893 0.0467457 0.0280762 0.052523 0.0850191 -0.0550442 -0.116598 33.4898 0.223924 0.215721 0.173785 4.03271 0.192903 0.207896 0.18469 0.175335 0.140952 0.0859582 0.0566046 0.0692432 0.0838734 0.134374 0.192298 23.1764 107.492 108.336 106.182 114.801 120.876 0.882404 0.027444 0.0360968 0.0280235 0.0509267 0.0769833 -0.0437792 -0.105583 0.112411 0.2196 0.208277 0.191142 0.159497 0.183979 0.200958 0.181475 0.16949 0.142406 0.0964023 0.0686346 0.0729965 0.0924114 0.106198 0.00487352 -0.32066 105.975 110.656 109.02 114.2 120.647 0.0995959 0.00211282 0.0264085 0.0276692 0.0491753 0.067763 -0.0368469 -0.0959756 0.104001 0.209243 0.202763 0.195945 0.186814 0.182182 0.212755 0.172023 0.164934 0.145277 0.110153 0.0856592 0.0844384 0.0974701 0.114231 0.003151 -0.281984 1.55829 112.943 110.427 114.441 119.434 -0.0605802 -0.0524296 0.017771 0.0270237 0.0472304 0.0585389 -0.0325599 -0.0849384 0.0895832 0.198444 0.194378 0.189722 0.184504 0.18188 0.182154 0.1695 0.16199 0.148068 0.123479 0.102588 0.0942597 0.108941 0.108358 0.194019 -0.122188 0.740883 10.7379 111.68 115.402 53.3875 -0.136421 -0.0809885 0.0118377 0.0261151 0.0450654 0.0499731 -0.0295086 -0.0743156 0.0840576 0.186911 0.18376 0.183572 0.179092 0.175813 0.172695 0.167093 0.159794 0.149562 0.131595 0.117156 0.10322 0.103546 0.0931458 0.0475856 -0.0317132 0.63176 -0.0560641 -0.15357 14.8122 -0.418086 -0.124472 -0.102727 0.00699418 0.0249898 0.0426847 0.0423235 -0.0268825 -0.062104 0.0718073 0.174197 0.173604 0.184995 0.171529 0.16775 0.164727 0.159285 0.165866 0.149759 0.134498 0.126761 0.1092 0.0965795 0.0840963 0.0493001 0.0194414 0.500861 -0.0445251 -0.146718 -0.214954 -0.354926 -0.272425 -0.0894562 0.00391472 0.0237035 0.0401157 0.0355949 -0.0246103 -0.0512751 0.0596035 0.159984 0.161104 0.161456 0.157394 0.15888 0.15778 0.154212 0.150308 0.146103 0.135024 0.127606 0.174638 0.0948459 0.0782941 0.0565671 0.078309 0.147972 -0.0294185 -0.156133 -0.19136 -0.335881 -0.232179 -0.062801 0.00290632 0.0223071 0.0373916 0.0297993 -0.0229286 -0.0411814 0.0481286 0.144986 0.147116 0.148827 0.149499 0.159606 0.152258 0.149336 0.146075 0.141608 0.134156 0.123056 0.138006 0.0938906 0.073078 0.0580741 0.0330455 0.0121719 -0.0114629 -0.150644 -0.203307 -0.316005 -0.377257 -0.0297 0.00201927 0.020837 0.0345482 0.0248828 -0.0214453 -0.0325009 0.0379158 0.132185 0.135491 0.138822 0.14217 0.144922 0.170432 0.14615 0.142015 0.137946 0.130864 0.121743 0.114974 0.0920463 0.068226 0.0392272 0.0205897 0.00507826 0.511097 -0.0949899 -0.197938 -0.345943 -0.427016 -0.00266657 0.00186093 0.0193131 0.0316215 0.0207923 -0.019754 -0.0252191 0.0292429 0.121733 0.126589 0.130863 0.135618 0.13949 0.155561 0.159913 0.145533 0.139449 0.12754 0.11757 0.137149 0.114853 0.0673155 0.0399199 0.0136422 -0.00382756 0.476381 -0.0203543 -0.119806 -0.340781 -0.482245 -0.0110438 0.00146454 0.0177392 0.028641 0.0174522 -0.0175858 -0.0191491 0.0222169 0.116092 0.121024 0.126937 0.133104 0.135821 0.137377 0.13735 0.137529 0.134036 0.125345 0.112889 0.14018 0.120641 0.0673189 0.0282298 0.00368667 -0.00669047 0.460681 -0.108754 -0.163592 -0.310822 -0.42788 -0.0328408 0.000827532 0.0161084 0.0256323 0.0147534 -0.014983 -0.0140421 0.0167694 0.116524 0.123138 0.125866 0.13071 0.134941 0.135027 0.135768 0.13811 0.13393 0.12275 0.109304 0.0992657 0.115379 0.0695498 0.0871715 -0.00704051 -0.023644 0.522851 -0.133394 -0.166322 -0.236821 -0.308202 -0.0490102 0.000288299 0.0144127 0.0226294 0.0125609 -0.0121753 -0.00985339 0.0127108 0.119536 0.124658 0.130929 0.135498 0.141113 0.136458 0.135161 0.116675 0.114609 0.114438 0.104931 0.0921945 0.0808748 0.126386 0.0276063 -0.0155464 -0.0443734 0.11116 -0.135943 -0.123664 -0.198606 -0.212428 -0.0392151 -0.000141252 0.0126438 0.0196695 0.010734 -0.00937264 -0.0065593 0.00974287 0.12159 0.137169 0.298973 0.649521 0.155201 0.137154 0.137874 0.1503 0.0634341 0.107127 0.102147 0.0895813 0.0673307 0.0569676 0.0259223 -0.0233959 -0.0555298 0.0240813 -0.158564 -0.049459 -0.117615 -0.0856107 -0.0176498 -0.000562879 0.0108005 0.0167966 0.00916742 -0.00677424 -0.00411277 0.0075695 0.0987755 0.0911782 0.0874224 0.0966089 0.11176 0.423933 0.168777 0.189912 0.116164 0.110477 0.103249 0.0895837 0.0714113 0.0469626 0.0237665 -0.0266333 -0.0587297 -0.0241545 0.545636 0.254159 -0.179977 -0.0245801 -0.0116721 -0.00117928 0.0088873 0.0140522 0.00779714 -0.00456733 -0.00235899 0.00594075 0.106437 0.107548 0.110776 0.115356 0.118902 0.123368 0.12591 0.122199 0.130656 0.117556 0.107235 0.0904141 0.0680236 0.0410253 0.0131032 -0.0288235 -0.0584934 -0.0465694 0.171679 0.286297 -0.196166 -0.026349 -0.011696 -0.00217091 0.00691693 0.0114707 0.00657577 -0.00284703 -0.00119707 0.00466853 0.112507 0.113504 0.11704 0.120962 0.12486 0.129111 0.131666 0.131754 0.128647 0.121997 0.108477 0.0876089 0.0609454 0.029778 -0.00218883 -0.0347823 -0.0593908 -0.0569511 0.295031 -0.0458236 -0.14918 0.0113728 -0.0151625 -0.00359621 0.00491433 0.00907665 0.005469 -0.00157419 -0.000454918 0.00364085 0.119531 0.112939 0.115763 0.119442 0.123557 0.128052 0.131675 0.132696 0.128442 0.118572 0.101245 0.0768037 0.0443881 0.00915562 -0.0229045 -0.0441342 -0.0626452 -0.0775193 0.227491 -0.0525332 -0.106312 -0.0489298 -0.0186715 -0.00533531 0.00292094 0.00688759 0.00445709 -0.000677009 4.40866e-06 0.00279087 0.100154 0.102752 0.105753 0.109124 0.112644 0.11877 0.121487 0.118913 0.113205 0.0991624 0.0769487 0.0501634 0.0110264 -0.0290733 -0.0560535 -0.0694319 -0.0767429 -0.0835549 0.215635 -0.0352193 -0.0779225 -0.0475347 -0.0213246 -0.00719618 0.000992438 0.0049171 0.00353193 -8.73076e-05 0.000265248 0.00208282 0.0904108 0.0917817 0.0932835 0.0948498 0.0963109 0.0972398 0.0963736 0.0911883 0.0788196 0.0569334 0.026519 0.0190452 -0.027389 -0.105147 -0.117994 -0.107589 -0.0906451 -0.0823142 0.0187467 -0.0178175 -0.0741373 -0.0439874 -0.0231691 -0.00898736 -0.000796635 0.00318081 0.00269101 0.000259084 0.000387742 0.00150259 0.0768165 0.0771773 0.0772316 0.0767625 0.0753835 0.0723148 0.0648781 0.0525466 0.0480161 -0.00572025 -0.0524333 -0.119853 -0.185039 -0.228014 -0.217397 -0.156325 -0.106873 -0.0576882 -0.00227541 -0.0435005 -0.0532215 -0.0431275 -0.0245495 -0.0105446 -0.00234557 0.00170159 0.00193571 0.00041885 0.000419972 0.00104595 0.0573245 0.0571307 0.0561635 0.0538396 0.0490243 0.0390555 0.0747362 0.00870342 0.000730971 -0.0722948 -0.159095 -0.24901 -0.330598 -0.375907 -0.347458 -0.237557 -0.112725 -0.0473291 -0.042885 0.0117706 -0.0415465 -0.0288142 -0.0238065 -0.0117059 -0.00353894 0.000511773 0.00127467 0.000445366 0.000400536 0.000708637 0.0309196 0.0314137 0.0309225 0.0290019 0.0248543 0.0170854 0.00582144 -0.0192991 -0.0612941 -0.108779 -0.0753273 -0.199392 -0.384234 -0.435397 -0.396236 -0.23194 -0.125311 -0.0305994 0.011462 0.496045 -0.0565492 -0.0448359 -0.00348974 -0.0122533 -0.00423638 -0.000355705 0.000723364 0.000384159 0.000352184 0.000475138 0.00663918 0.00709677 0.00684955 0.00522656 0.0012643 -0.00626992 -0.0190176 -0.0381058 -0.0661254 -0.11194 -0.178997 -0.27328 -0.345589 -0.363245 -0.321576 -0.221655 -0.10052 -0.00714674 0.0130795 0.309687 1.13428 -0.0505048 -0.0288734 -0.011562 -0.00429017 -0.000868104 0.000298017 0.000273144 0.000277635 0.00031685 0.0425604 0.00486325 0.00269264 0.000191718 -0.00346981 -0.00872131 -0.0164064 -0.0279924 -0.0457388 -0.0724267 -0.109907 -0.154404 -0.193124 -0.203624 -0.179585 -0.125787 -0.0505734 0.00851303 0.00479955 -0.0155929 0.498533 -0.0305924 -0.0218192 -0.00890922 -0.00362012 -0.00101243 7.92861e-06 0.000135876 0.000176872 0.000201957 0.00144035 0.00251005 -0.00217428 -0.00459447 0.00613697 -0.00779821 -0.00676083 -0.00946468 -0.0174798 -0.0311201 -0.0501905 -0.0712113 -0.0846808 -0.0840367 -0.0585944 0.0474049 -0.000407247 0.023689 0.00915106 0.0102859 0.00306078 -0.00336359 -0.0120209 -0.00496855 -0.00232573 -0.000825988 -0.000155312 -1.20567e-05 5.34732e-05 0.000105056 0.000389812 1.6709e-05 0.00250905 -0.00176715 -0.00408225 -0.00412423 -0.00161757 -0.00263115 -0.00485651 -0.000818971 -0.0119215 0.00347559 -0.0165487 0.0166579 -0.00439972 0.0226702 0.00231868 0.00519856 0.00311986 0.00199801 0.00224126 -0.00267908 -0.000485982 0.000636791 -0.000295856 -0.000289551 -0.000237925 -0.000207155 -0.000131897 -1.7939e-05 118.224 107.495 97.8592 90.7563 85.6891 82.5843 82.3498 85.5455 90.0828 93.5973 95.4536 95.9384 95.5258 94.631 93.5487 92.462 91.4738 90.6317 89.9485 89.4149 89.011 88.714 88.502 88.3567 88.2632 88.2093 88.1856 88.1843 88.1995 88.2262 118.268 107.475 97.838 90.7382 85.6698 82.5407 82.2698 85.4966 90.1002 93.6484 95.5082 95.9833 95.5582 94.6513 93.5568 92.4583 91.4594 90.6088 89.9194 89.382 88.9761 88.6784 88.4665 88.3217 88.2287 88.1754 88.1523 88.1515 88.1671 88.1941 118.35 107.443 97.8014 90.7067 85.6352 82.4623 82.1211 85.3929 90.1116 93.7284 95.6045 96.0672 95.6213 94.6928 93.5767 92.4567 91.438 90.5712 89.8702 89.3256 88.9159 88.6168 88.4049 88.2608 88.1689 88.1168 88.0948 88.095 88.1113 88.1389 118.471 107.401 97.7489 90.6618 85.5859 82.3508 81.9058 85.2402 90.1233 93.8378 95.7401 96.1887 95.7156 94.7572 93.61 92.4586 91.4109 90.5203 89.8023 89.2469 88.8316 88.5304 88.3184 88.1754 88.0851 88.0346 88.0141 88.0157 88.033 88.0615 118.633 107.348 97.6802 90.6033 85.5224 82.2068 81.6203 85.0361 90.1376 93.9785 95.9148 96.3462 95.8386 94.8417 93.6542 92.4622 91.3767 90.4551 89.7148 89.1454 88.7229 88.419 88.2071 88.0656 87.9771 87.9286 87.9097 87.9127 87.9313 87.9608 118.836 107.286 97.5948 90.5313 85.4453 82.0317 81.2597 84.7761 90.1556 94.1526 96.1299 96.5396 95.9887 94.9442 93.7075 92.4661 91.3343 90.3743 89.6062 89.0199 88.5888 88.282 88.0705 87.9309 87.8446 87.798 87.7808 87.7852 87.8052 87.8359 119.083 107.215 97.4921 90.4459 85.3557 81.8272 80.818 84.4546 90.1787 94.3623 96.3874 96.7698 96.1656 95.0639 93.7694 92.4699 91.283 90.2766 89.4751 88.8685 88.4277 88.1182 87.9079 87.7708 87.6872 87.6428 87.6271 87.6329 87.6542 87.6863 119.375 107.136 97.3712 90.347 85.2546 81.5957 80.2875 84.0645 90.2084 94.6107 96.6897 97.0378 96.3697 95.201 93.84 92.4736 91.222 90.1603 89.3191 88.689 88.2376 87.926 87.7181 87.5849 87.505 87.4632 87.4492 87.456 87.4784 87.512 119.716 107.05 97.2313 90.2346 85.1432 81.3404 79.6589 83.597 90.2471 94.9008 97.0396 97.3451 96.6013 95.3557 93.9195 92.4771 91.1503 90.0234 89.1355 88.4783 88.0158 87.7034 87.4999 87.3727 87.2982 87.2602 87.2482 87.2555 87.2779 87.3124 120.109 106.96 97.0711 90.1087 85.0229 81.0658 78.9211 83.041 90.2978 95.2363 97.4401 97.6934 96.8608 95.5279 94.0079 92.4806 91.0672 89.8633 88.9206 88.2328 87.7589 87.4479 87.2518 87.1337 87.0671 87.0349 87.0259 87.0333 87.0532 87.0847 120.54 106.866 96.889 89.969 84.8951 80.7773 78.0608 82.3833 90.364 95.6215 97.895 98.0847 97.1486 95.7176 94.1054 92.4843 90.9717 89.6771 88.6703 87.9474 87.4629 87.1564 86.9719 86.8669 86.8119 86.7881 86.7839 86.7921 86.8087 86.8317 120.993 106.771 96.6832 89.8154 84.761 80.4824 77.0637 81.6079 90.4503 96.0609 98.4091 98.5213 97.4649 95.9246 94.2117 92.4886 90.8632 89.4614 88.3794 87.6167 87.1224 86.825 86.6578 86.5711 86.5319 86.5201 86.5231 86.5338 86.549 86.5735 121.458 106.679 96.4509 89.6472 84.6218 80.1901 75.9144 80.6966 90.5623 96.5593 98.9864 99.0057 97.8097 96.1483 94.3264 92.4938 90.7412 89.2122 88.0417 87.233 86.7309 86.4491 86.3066 86.2446 86.2262 86.2298 86.2431 86.2593 86.2749 86.385 121.923 106.593 96.1892 89.4635 84.4784 79.9121 74.5997 79.6307 90.707 97.1216 99.632 99.5407 98.1829 96.3879 94.4487 92.5001 90.6061 88.925 87.6496 86.7866 86.2801 86.0232 85.9151 85.8859 85.8934 85.915 85.9399 85.9632 85.9844 86.0058 122.376 106.526 95.8943 89.2629 84.3308 79.6629 73.1193 78.3909 90.8935 97.7523 100.352 100.13 98.5836 96.6422 94.5772 92.5056 90.4581 88.5953 87.1937 86.2647 85.7591 85.5406 85.4802 85.4937 85.533 85.5746 85.6103 85.6393 85.6637 85.6864 122.803 106.486 95.5618 89.0434 84.1777 79.4587 71.4997 76.9469 91.1353 98.456 101.151 100.776 99.0102 96.909 94.7106 92.5043 90.2945 88.2183 86.662 85.6494 85.1539 84.9941 84.9993 85.0684 85.1473 85.2116 85.2574 85.2897 85.3146 85.3368 123.199 106.47 95.1864 88.8018 84.0158 79.3172 69.7331 75.2577 91.4528 99.2427 102.037 101.484 99.4599 97.1849 94.8488 92.4803 90.0876 87.7855 86.0384 84.915 84.4455 84.3764 84.4707 84.6119 84.7415 84.833 84.8894 84.9238 84.9476 84.9675 123.515 106.464 94.762 88.5341 83.8381 79.2569 67.7179 73.2952 91.8783 100.116 103.013 102.259 99.9268 97.4635 94.9973 92.4037 89.779 87.314 85.307 84.0231 83.6086 83.6833 83.8966 84.1286 84.3252 84.453 84.5222 84.5584 84.5794 84.5947 123.695 106.46 94.2812 88.2341 83.6321 79.2924 65.2938 71.0353 92.4652 101.08 104.083 103.103 100.4 97.7333 95.1711 92.251 89.4356 86.8465 84.4548 82.9162 82.6096 82.9217 83.2911 83.6312 83.9158 84.0927 84.1759 84.2093 84.2218 84.2276 123.661 106.458 93.7341 87.8919 83.3778 79.4254 62.4628 68.4951 93.2741 102.125 105.249 104.023 100.861 97.9805 95.4059 92.0504 89.2127 86.392 83.4754 81.5156 81.4052 82.1065 82.6834 83.1611 83.5466 83.7738 83.862 83.8803 83.8735 83.8627 123.299 106.462 93.1082 87.4933 83.0499 79.6328 59.2019 65.6716 94.3333 103.259 106.509 105.019 101.271 98.2115 95.7414 91.89 89.1144 85.997 82.3896 79.6761 79.8769 81.2003 82.0646 82.7522 83.2578 83.5165 83.5866 83.5685 83.5261 83.4901 122.46 106.466 92.387 87.4135 82.6114 79.851 42.1526 63.9132 95.5888 104.498 107.853 106.093 101.572 98.4567 96.0474 91.8778 89.1209 85.7418 81.2343 76.8197 77.4181 80.1228 81.3864 82.4055 83.0841 83.3509 83.3616 83.2676 83.1589 83.0838 120.935 106.469 91.5488 86.4317 82.343 79.9192 -0.104093 67.7033 97.068 105.882 109.265 107.243 101.631 98.7356 96.3467 92.1062 89.2505 85.7079 80.1636 72.4471 73.3769 78.84 80.5844 82.1739 83.1234 83.3392 83.2122 82.9743 82.7324 82.5876 118.41 106.474 90.5637 86.1876 81.7746 79.098 -0.0770221 18.1622 98.7552 107.44 110.713 108.457 101.102 99.0418 96.8932 92.6112 89.5059 85.9019 79.8381 69.0987 69.4987 77.4235 79.0133 82.1534 83.6532 83.5237 83.1562 82.7137 82.1624 81.8479 114.421 106.499 89.3857 86.3533 81.4428 0.186463 -0.274799 8.42285 100.366 109.124 112.16 109.692 99.326 99.4868 97.6554 93.3267 89.8383 86.2674 81.2369 66.2019 37.1222 28.8883 38.3974 64.6818 78.2888 80.3321 81.9044 82.0778 80.8989 80.2572 108.701 106.579 87.9095 87.2073 10.2099 -0.30032 -0.498644 8.0757 101.413 110.778 113.554 110.858 97.7314 99.7566 98.543 94.0962 90.3276 86.5993 84.4837 0.546222 0.338354 0.296223 0.272129 0.25819 0.254856 0.255464 0.252103 0.250698 0.249648 0.24877 100.696 106.765 85.8099 71.6595 -0.155337 -0.278843 -0.662661 -1.57952 101.809 111.902 114.836 111.799 98.6251 100.807 99.4998 95.0376 91.2689 87.0274 0.304535 0.557218 0.257584 0.268465 0.263437 0.258894 0.256715 0.255589 0.253975 0.252115 0.250542 0.24925 91.867 107.193 82.6294 -0.129654 -0.169345 -0.2603 -0.538618 -1.41953 103.092 113.214 115.922 112.45 101.075 103.182 99.9195 96.243 91.8374 -0.173223 0.286313 0.269731 0.223157 0.237457 0.249085 0.254941 0.256514 0.25656 0.255388 0.250408 0.2485 0.26572 12.879 108.042 -1.70652 -0.121255 -0.174098 -0.251955 -0.542155 -1.34637 105.216 114.744 116.603 112.528 103.452 105.808 99.638 98.2778 83.7491 0.213566 0.199952 0.202187 0.19441 0.210289 0.230543 0.246029 0.253825 0.255879 0.257546 0.261753 0.248262 0.24422 9.87832 109.707 0.0057119 -0.113158 -0.173543 -0.247963 -0.609766 -1.60497 106.955 114.959 117.655 112.464 104.58 106.705 97.4801 102.878 0.637806 0.164891 0.174341 0.155682 0.169167 0.184765 0.224868 0.232349 0.247905 0.251823 0.251693 0.250379 0.255647 0.243995 88.2646 88.3202 88.3979 88.5037 88.6446 88.8293 89.0686 89.376 89.7677 90.2628 90.8807 91.6381 92.5421 93.5806 94.7128 95.8617 96.8988 97.6083 97.6579 96.6074 93.9934 89.8242 85.6778 84.0144 85.2401 88.6911 93.6306 98.9968 103.991 106.715 88.2328 88.2885 88.3665 88.4723 88.6131 88.7976 89.0368 89.3445 89.7371 90.2341 90.8552 91.6176 92.5285 93.5756 94.7173 95.8759 96.9234 97.644 97.7043 96.6592 94.0301 89.8091 85.611 83.9637 85.2149 88.6778 93.6263 98.9941 103.998 106.728 88.178 88.2341 88.3121 88.4178 88.5582 88.7424 88.9816 89.2898 89.6842 90.1846 90.8118 91.5834 92.5077 93.5718 94.7325 95.9097 96.9745 97.7113 97.7855 96.7414 94.077 89.7644 85.4845 83.8719 85.1682 88.6538 93.6202 98.9921 104.015 106.761 88.1011 88.1576 88.2357 88.3411 88.4811 88.6648 88.9039 89.2131 89.6102 90.1158 90.7517 91.537 92.4811 93.5712 94.7607 95.9655 97.0532 97.8092 97.8991 96.8537 94.1391 89.6975 85.3012 83.7403 85.1003 88.6192 93.6122 98.9904 104.043 106.814 88.0013 88.0584 88.1368 88.2421 88.3816 88.5647 88.8038 89.1143 89.5149 90.0274 90.6748 91.4782 92.4486 93.5727 94.7997 96.0394 97.156 97.9353 98.0443 96.9976 94.2192 89.6085 85.0573 83.5688 85.0115 88.5738 93.6023 98.989 104.081 106.887 87.8775 87.9355 88.0145 88.1198 88.2589 88.4415 88.6807 88.9929 89.3979 89.9188 90.5804 91.406 92.4091 93.5756 94.8477 96.1286 97.2799 98.0885 98.2215 97.1746 94.3188 89.4956 84.7468 83.3579 84.9025 88.5175 93.5906 98.9874 104.129 106.981 87.7293 87.7885 87.8682 87.9738 88.1125 88.2947 88.5341 88.8483 89.2584 89.7891 90.4673 91.3192 92.3617 93.5798 94.9046 96.2321 97.424 98.2684 98.4315 97.3865 94.4398 89.3563 84.3621 83.1081 84.7737 88.4503 93.5772 98.9854 104.188 107.098 87.5568 87.6171 87.6973 87.8032 87.9417 88.1234 88.3629 88.6793 89.095 89.6368 90.3339 91.216 92.305 93.5851 94.9706 96.3499 97.5882 98.475 98.6751 97.6353 94.5844 89.1881 83.8935 82.8207 84.626 88.3721 93.5623 98.9825 104.257 107.236 87.3598 87.4207 87.4998 87.6069 87.7456 87.9267 88.1662 88.4847 88.9066 89.4605 90.1785 91.0944 92.2373 93.5918 95.046 96.4818 97.7723 98.7087 98.9536 97.9234 94.7553 88.9875 83.3283 82.4976 84.4599 88.2826 93.5462 98.9782 104.336 107.398 87.1386 87.1992 87.2715 87.3836 87.5234 87.7038 87.943 88.2634 88.6916 89.2584 89.999 90.9517 92.1561 93.6005 95.1309 96.6274 97.9765 98.9694 99.2682 98.2535 94.9558 88.7506 82.65 82.1419 84.2761 88.1815 93.5292 98.9719 104.425 107.583 87.1223 87.1484 87.012 87.1331 87.2745 87.4541 87.6921 88.0141 88.4484 89.0286 89.7933 90.7853 92.0575 93.6122 95.2248 96.7856 98.2006 99.2573 99.6199 98.629 95.1899 88.4725 81.8371 81.7581 84.075 88.0681 93.5118 98.9629 104.523 107.791 86.6213 86.68 86.7441 86.8559 86.9988 87.1767 87.4126 87.7353 88.1754 88.7689 89.559 90.5918 91.9348 93.6285 95.3255 96.9549 98.4444 99.5727 100.01 99.0533 95.4621 88.1473 80.8606 81.3525 83.8567 87.9414 93.4943 98.9503 104.631 108.024 86.3312 86.3759 86.4464 86.5526 86.6933 86.869 87.1027 87.4261 87.8708 88.4768 89.2935 90.3685 91.7755 93.6511 95.4276 97.1329 98.7083 99.9157 100.44 99.5306 95.7776 87.768 79.6779 80.9335 83.6203 87.8002 93.4777 98.9332 104.746 108.281 86.0311 86.0722 86.1328 86.2245 86.3556 86.5283 86.7617 87.0858 87.5329 88.1489 88.9933 90.1143 91.5509 93.6765 95.5187 97.3169 98.9926 100.286 100.912 100.065 96.1423 87.3255 78.2216 80.5125 83.3636 87.6422 93.4632 98.9105 104.87 108.564 85.7122 85.7475 85.7941 85.8662 85.9829 86.1569 86.3912 86.7148 87.1598 87.7809 88.6538 89.8307 91.1937 93.6735 95.574 97.5043 99.2987 100.684 101.428 100.662 96.5609 86.8076 76.3967 80.107 83.0821 87.4647 93.4524 98.8811 105.001 108.872 85.3619 85.3961 85.4248 85.5456 85.5961 85.7652 85.9954 86.3142 86.7493 87.3666 88.2674 89.5192 90.6822 93.5107 95.5516 97.6943 99.6286 101.11 101.988 101.325 97.0346 86.1994 74.1188 79.7457 82.768 87.2635 93.4482 98.8435 105.141 109.207 84.9893 85.0224 85.1252 93.0612 85.1906 85.3514 85.5776 85.885 86.2986 86.8966 87.822 89.18 90.3835 92.9542 95.4017 97.8912 99.9859 101.561 102.596 102.064 97.5569 85.4928 71.2835 79.458 82.4077 87.0333 93.4546 98.7966 105.282 109.568 84.6098 84.6289 84.6538 84.7129 84.7408 84.9207 85.1388 85.4292 85.8051 86.3578 87.2998 88.806 90.3949 91.9805 95.123 98.1068 100.375 102.036 103.252 102.882 98.1273 84.7176 67.6266 79.2864 81.9782 86.7669 93.4774 98.7392 105.418 109.953 84.233 84.2411 84.2554 84.2816 84.3428 84.4858 84.6797 84.9526 85.2679 85.7305 86.6732 88.3653 90.4249 90.9074 94.8407 98.3627 100.804 102.53 103.957 103.788 98.7719 83.9861 62.8082 79.3005 81.4435 86.4549 93.5239 98.67 105.546 110.359 83.8538 83.8471 83.8411 83.8421 83.8976 84.0354 84.2072 84.4679 84.6888 84.9828 85.9004 87.8516 90.3556 90.2211 94.786 98.6851 101.278 103.037 104.714 104.793 99.5419 83.4878 56.6446 79.5989 80.7524 86.0855 93.6039 98.5879 105.662 110.783 83.4657 83.4484 83.4266 83.4003 83.4062 83.8848 83.7881 83.9851 84.0634 84.0535 84.9163 87.2756 90.1904 90.2896 95.1261 99.0954 101.808 103.542 105.522 105.91 100.487 83.3369 49.0741 80.2901 79.8323 85.6612 93.7302 98.4916 105.757 111.216 83.0486 83.0393 83.0187 82.9629 82.9418 83.1132 83.3828 83.5138 83.3847 82.8175 83.5987 86.6477 90.0078 91.0083 95.7999 99.599 102.405 104.023 106.385 107.159 101.601 83.7953 32.1634 81.2862 78.5736 85.2371 93.9168 98.3799 105.821 111.646 82.5644 82.6263 82.6303 82.4709 82.3626 82.5962 83.0515 83.0771 82.7153 80.8148 81.5817 86.0107 89.8496 91.9824 96.5456 100.188 103.083 104.439 107.307 108.56 102.9 84.5939 1.22887 81.928 76.7082 85.138 94.1757 98.2516 105.839 112.051 81.9039 82.2889 82.4347 81.8754 81.5064 81.9638 82.879 82.6045 82.2169 77.9096 79.3018 85.4389 89.688 92.8855 97.1109 100.869 103.867 104.726 108.294 110.123 104.465 87.2634 -0.920768 0.248581 73.7871 85.1922 94.516 98.107 105.783 112.4 80.517 82.4196 83.2847 80.8956 80.0752 80.9937 83.4671 81.3336 83.0151 74.7757 77.7536 85.0823 89.504 93.6525 97.6423 101.699 104.791 104.774 109.344 111.822 106.276 93.239 -1.2284 0.262618 1.96414 85.7847 94.9398 97.951 105.62 112.646 0.247853 0.239962 0.232041 0.233524 0.234818 0.2324 0.235711 0.198815 7.93142 22.0438 76.3381 84.9246 89.2026 94.4535 98.5099 102.748 105.911 104.389 110.427 113.608 108.1 96.1124 -0.774918 0.198021 0.0892352 86.8437 95.45 97.8053 105.334 112.717 0.2491 0.24986 0.257242 0.258645 0.241644 0.232044 0.225206 0.215417 0.213184 0.261951 0.228686 84.067 88.3129 95.508 99.5162 103.993 107.302 103.282 111.496 115.231 109.877 91.436 -0.43103 0.144923 0.0600659 2.0045 96.0817 97.7484 104.927 112.502 0.25718 0.243541 0.239204 0.232335 0.225417 0.239366 0.222616 0.215537 0.192161 0.184809 0.185575 -0.125187 84.6537 97.3022 100.026 105.357 109.059 101.772 112.661 116.537 112.794 60.0701 -0.186728 0.106902 0.0411323 0.181962 97.0911 97.9272 104.725 111.829 0.243053 0.241319 0.237193 0.228656 0.218866 0.21164 0.213696 0.203148 0.15604 0.115335 0.0943162 0.0840971 -1.09414 101.317 99.4791 106.776 110.751 102.075 114.26 117.088 115.153 19.7263 -0.0529557 0.0821865 0.0330389 0.144021 0.0107967 98.351 104.726 110.42 0.232528 0.239717 0.440023 0.225295 0.208791 0.185649 0.20046 0.186323 0.128685 0.0801059 0.0796321 0.0841115 0.178744 107.968 97.5889 108.142 111.804 104.49 114.929 116.714 113.879 0.899651 -0.028793 0.0651687 0.0302974 0.122217 -0.0903783 37.472 104.661 107.926 32.0748 111.177 0.0100292 -0.10852 -0.171638 -0.245601 -0.650814 -1.10865 113.226 115.062 118.659 113.032 105.208 106.711 93.3495 30.9829 0.798773 0.110644 0.385474 0.130012 0.155434 0.170764 0.196645 0.223953 0.243004 0.250297 0.250944 0.245934 0.247628 0.256242 1.19443 105.038 0.011356 -0.103578 -0.169201 -0.243094 -0.611386 -1.56234 117.536 114.942 119.908 114.508 104.824 105.226 92.22 0.403324 0.889586 0.0709644 0.493265 0.117269 0.143231 0.158278 0.183996 0.215398 0.237126 0.248278 0.246094 0.245696 0.276653 6.56505 0.958447 1.20506 0.00921112 -0.0980485 -0.166059 -0.240079 -0.676034 -1.26027 126.768 114.106 121.118 116.751 105.392 104.555 -3.68148 0.383748 0.955706 0.0263504 0.493647 0.108955 0.131757 0.146475 0.170932 0.205435 0.229772 0.251054 0.242174 0.238512 0.243619 0.259701 0.845593 0.10232 0.0070699 -0.0921034 -0.162179 -0.236296 -0.488435 -0.596618 111.163 115.282 122.411 119.746 106.381 103.074 0.484812 0.479632 4.6639 -0.173699 0.512705 0.106817 0.121763 0.135959 0.157615 0.19427 0.220478 0.229642 0.235277 0.234334 0.232292 0.243817 0.542092 0.0896574 0.00551577 -0.0859057 -0.15753 -0.230383 -0.596503 -0.401933 103.668 117.607 124.216 122.785 108.488 -0.346076 0.371618 0.425 5.44847 -0.0263646 0.098402 0.104971 0.16879 0.127625 0.152149 0.182548 0.208805 0.222429 0.225325 0.225146 0.224274 0.222247 0.4291 0.0791077 0.00455088 -0.0798332 -0.152121 -0.219497 -0.561983 -0.236456 -0.904841 118.019 126.84 125.303 100.16 0.202671 0.346337 0.271949 2.0017 0.00527444 0.0837948 0.0986081 0.210982 0.119159 0.135208 0.171019 0.197452 0.208421 0.212946 0.213153 0.21237 0.209011 0.357379 0.0707522 0.00401352 -0.0741494 -0.145994 -0.211425 -0.435768 -0.187158 -0.245311 118.038 130.281 129.325 0.219055 0.227441 0.255047 0.220533 0.209284 0.0631371 0.091579 0.107009 0.213016 0.113456 0.128889 0.160196 0.195998 0.1911 0.199478 0.200256 0.199215 0.197302 0.300984 0.0630304 0.00372962 -0.069017 -0.139201 -0.199685 -0.404377 -0.176659 -0.171808 34.6105 134.252 131.504 0.379097 0.214282 0.219574 0.203881 0.419193 0.109509 0.103044 0.109292 0.112518 0.114758 0.128801 0.152703 0.170056 0.184371 0.185972 0.18646 0.18558 0.184481 0.22963 0.0563357 0.0034495 -0.0644811 -0.131799 -0.184877 -0.352794 -0.152297 -0.321743 0.339521 88.1812 -0.0695022 0.59722 0.201631 0.201653 0.187795 0.468522 0.132302 0.114773 0.11454 0.116146 0.120551 0.130211 0.143907 0.157988 0.166911 0.169915 0.170569 0.17072 0.170892 0.18248 0.0505349 0.00297491 -0.0604759 -0.123848 -0.169628 -0.242475 -0.0817582 -0.467633 0.183591 0.105856 -0.065312 0.205128 0.185681 0.224761 0.169977 0.160484 0.146936 0.124924 0.120193 0.120499 0.127021 0.133407 0.139515 0.146378 0.150232 0.152254 0.153023 0.154277 0.15565 0.161386 0.0454239 0.00222938 -0.0568407 -0.115396 -0.151396 -0.162481 -0.00852363 -0.514851 0.11247 0.165398 -0.0893682 0.0635557 0.165477 0.205719 0.168444 0.152385 0.149381 0.135076 0.125574 0.124284 0.13497 0.152709 0.135596 0.135274 0.135832 0.134965 0.135042 0.137846 0.140321 0.13086 0.0408498 0.00127018 -0.0533824 -0.106506 -0.134523 -0.104325 0.020919 -0.438247 0.0488104 0.109573 -0.0497188 0.0675272 0.153412 0.186274 0.158287 0.164387 0.155932 0.143345 0.137599 0.169592 0.127936 0.13056 0.129494 0.125863 0.121598 0.120638 0.13986 0.124872 0.127578 0.0891549 0.0366935 0.000228813 -0.0499216 -0.0972412 -0.11634 -0.048471 0.057739 -0.292024 0.0215959 0.117276 -0.0334547 0.05332 0.166148 0.193671 0.148252 0.153409 0.15961 0.150302 0.45668 0.152989 0.138264 0.13189 0.126183 0.116876 0.111188 0.108487 0.109822 0.113637 0.117668 0.0786114 0.0328759 -0.000755021 -0.0463428 -0.0876797 -0.0986862 -0.0186094 0.0828236 -0.108708 0.00642982 0.0289152 0.0054374 0.0458757 0.161637 0.137037 0.136035 0.151905 0.160153 0.160498 0.479988 0.156866 0.147968 0.13943 0.127458 0.11525 0.107916 0.104945 0.104419 0.109136 0.113651 0.0713775 0.02932 -0.00159088 -0.0426063 -0.0779418 -0.0816807 0.00495226 0.112208 0.0501025 -0.0845274 0.049287 0.00361061 0.0374505 0.112552 0.111009 0.12146 0.143534 0.161831 0.161644 0.160403 0.16614 0.15351 0.142642 0.129328 0.117412 0.109975 0.107693 0.110427 0.112652 0.114852 0.0737945 0.0259685 -0.00224748 -0.0387145 -0.0681703 -0.0658407 0.0145238 0.116503 0.0128094 -0.30237 0.860631 0.0406028 0.0513425 0.0533077 0.0840061 0.105804 0.129173 0.160291 0.153407 0.155683 0.154879 0.150072 0.143189 0.128331 0.119366 0.113806 0.111432 0.111552 0.113992 0.118286 0.0589847 0.0227407 -0.00273316 -0.0347015 -0.0585459 -0.0515544 0.0196127 0.109024 0.00162226 -0.234764 0.358348 0.0437406 0.0512703 0.0253282 0.0553604 0.092055 0.119907 0.1664 0.142169 0.150193 0.141712 0.140877 0.133094 0.124896 0.117349 0.116749 0.112772 0.11125 0.111495 0.113119 0.0737498 0.019578 -0.00307676 -0.0306181 -0.0492637 -0.0390442 0.0188774 0.0946365 -0.0191007 -0.135561 0.217596 0.0305966 -0.00845698 -0.0136606 0.0180437 0.0648808 0.0998459 0.189913 0.122363 0.137041 0.126805 0.12686 0.125786 0.122476 0.118834 0.12767 0.109388 0.107071 0.10493 0.102147 0.071913 0.0164248 -0.00330523 -0.0265309 -0.0405208 -0.0285118 0.0207387 0.0763183 -0.0484805 0.0523241 0.357213 0.0310709 -0.0336182 -0.0599859 -0.0279291 0.0270247 0.0704388 0.0897662 0.102741 0.10967 0.11357 0.115845 0.115097 0.114305 0.112326 0.111899 0.110373 0.107719 0.107234 0.107395 0.0713365 0.0131107 -0.00343996 -0.0225202 -0.0324913 -0.0198601 0.0203901 0.0597951 -0.00193618 0.0720358 0.893735 -0.00567565 -0.0525198 -0.0914575 -0.0690894 -0.00831309 0.0445012 0.0731236 0.0869961 0.095452 0.100902 0.104601 0.213969 0.156662 0.105721 0.105282 0.105866 0.109579 0.109973 0.121342 0.0764403 0.00940801 -0.00349664 -0.0186755 -0.0253259 -0.0120648 0.0190828 0.0484858 0.0392416 0.0994991 0.0766836 0.00954459 -0.0495302 -0.101392 -0.0890929 -0.0297594 0.0276663 0.0574035 0.073872 0.0832451 0.0888376 0.0914523 0.0911597 0.0942626 0.0963468 0.0977783 0.099383 0.101157 0.102525 0.135338 0.0894101 0.00505715 -0.00347553 -0.0150866 -0.0191339 -0.00813248 0.0167982 0.0391617 0.0485732 0.0832312 0.0636999 0.0158109 -0.0407142 -0.0839278 -0.0769921 -0.0257506 0.0241891 0.0554637 0.0736034 0.0748067 0.0795015 0.0824077 0.0846642 0.0868882 0.0887995 0.0904459 0.0920246 0.0936401 0.095326 0.0970902 0.0789658 -4.80583e-05 -0.00335633 -0.0118339 -0.0139848 -0.00483373 0.0131644 0.0273675 0.031232 0.0522979 0.0432282 0.0574387 -0.0250825 -0.0482501 -0.0365248 -0.00124288 0.0350336 0.0559896 0.0671594 0.0761084 0.0714234 0.0736602 0.0757474 0.0778605 0.0798476 0.0816117 0.0831691 0.0845632 0.0858226 0.0869528 0.0771205 -0.00523382 -0.00309916 -0.00897728 -0.00989639 -0.00215517 0.00728528 0.0151168 -0.000300085 0.0210926 0.022878 0.0100864 -0.011784 -0.0200392 0.189714 0.0215055 0.0468223 0.0601628 0.0637792 0.0667232 0.0626936 0.0627417 0.0632679 0.0646435 0.0664033 0.0681691 0.0697565 0.071001 0.071899 0.0724732 1.11503 -0.00685618 -0.00267172 -0.00654995 -0.0068196 -0.00249265 0.000262348 -0.00982648 -0.0514454 -0.0181335 0.00516823 0.0049843 -0.000293818 0.000323605 0.0137555 0.0271402 0.0388243 0.0482757 0.0523021 0.0502785 0.0518408 0.045596 0.0448362 0.0446528 0.045657 0.0484817 0.0485356 0.0498803 0.0507826 0.0513227 0.052045 -0.00365553 -0.00210629 -0.00455329 -0.00463909 -0.00290989 -0.00640166 -0.023383 -0.095397 -0.0609814 -0.00837394 0.00216033 0.00372919 0.146979 0.0166026 0.0229472 0.0778078 0.0395438 0.0315198 0.0315069 0.0330412 0.0284073 0.0232536 0.0201886 0.0252871 0.0193504 0.0206888 0.0221898 0.0322026 0.0245222 0.0368721 -0.000625174 -0.00148718 -0.0029539 -0.00312084 -0.00338037 -0.00696034 -0.0102888 -0.114931 -0.0669115 -0.0155464 -0.00097118 0.00442775 0.00719918 0.0188249 0.012521 0.0156916 0.0180259 0.0152675 0.0963463 0.14151 0.0738838 -0.00348517 -0.00758631 -0.00763151 -0.00579448 -0.00412343 -0.00312825 0.00403677 -0.000580017 0.0203613 0.000713134 -0.000888683 -0.00169928 -0.00197291 -0.00318792 -0.0101303 -0.0254251 -0.0284226 -0.0463452 -0.0182141 -0.006384 -0.000339507 0.00384161 0.00618043 0.00945265 0.00657318 0.0308373 0.00784409 0.00703187 0.0023295 -0.00339863 -0.00453809 -0.010308 -0.00849119 -0.00675714 0.000288118 0.00270932 0.0607935 0.0312084 0.00896834 0.000776844 -0.000389433 -0.000736493 -0.000964758 -0.00207058 -0.00590628 0.0507868 -0.0110934 -0.0247244 -0.0207093 -0.0146552 -0.00902593 -0.0047682 -0.00237279 -0.00195766 -0.00197232 -0.00537596 -0.00634231 -0.00400769 -0.00206749 -0.000318506 0.0163223 -0.00127673 -0.000961469 -0.00127032 -0.00113085 -0.000873612 0.00049402 0.00256766 0.000396668 0.000170787 -7.08102e-05 -0.000167146 -0.000218308 -0.000513547 -0.00150476 -0.00455604 0.00946211 -0.0174103 -0.026358 -0.0247652 -0.0191594 -0.0137102 -0.00980125 -0.00772859 -0.00742887 -0.00828544 -0.00942879 -0.00931843 -0.00805879 -0.00612443 -0.00401417 -0.0021259 -0.000567121 0.000907294 0.00105197 0.00125678 0.0013026 0.000370063 0.22299 0.242335 0.385186 0.228225 0.347512 0.171148 0.193782 0.178111 0.127265 0.0677017 0.0561645 0.0969075 0.151137 2.08965 95.7573 109.432 112.811 105.982 115.373 115.487 114.657 -0.172932 -0.0423177 0.0576606 0.0300063 0.112906 -0.102593 0.104548 104.662 106.082 0.250617 0.243848 0.273096 0.217996 0.240677 0.148506 0.189226 0.171632 0.113585 0.0619179 0.0510812 0.0754868 0.246601 0.986711 91.8266 108.695 113.16 107.041 116.437 115.071 118.251 -0.265517 -0.0526818 0.0513513 0.0300206 0.104991 -0.107189 0.089586 19.5272 106.236 0.214845 0.23167 0.901739 0.178663 0.215703 0.182773 0.185069 0.166212 0.111302 0.061703 0.0525452 0.0746226 0.218439 0.908246 -0.656364 107.526 115.199 109.329 117.359 115.049 118.376 0.16531 -0.0533554 0.0453928 0.0301953 0.0972048 -0.103969 0.0707744 0.0341916 107.779 0.218724 0.206079 4.17249 0.181217 0.202165 0.192918 0.180013 0.161853 0.114899 0.0684793 0.0588844 0.0785953 0.152346 0.797833 0.330322 102.584 115.3 110.993 118.544 114.942 118.471 0.153443 -0.0454592 0.0397607 0.030376 0.0894632 -0.0946679 0.0552128 0.0389577 99.6428 0.212113 0.20118 0.185368 0.173816 0.215122 0.192316 0.174117 0.15879 0.122331 0.0823033 0.0704948 0.0853004 0.110093 0.145904 0.196826 0.0928282 118.259 110.359 118.946 116.532 51.8169 0.132115 -0.0310444 0.0345023 0.0304483 0.0817011 -0.0820995 0.0411266 0.0349533 6.58296 0.20394 0.198019 0.19152 0.182946 0.190833 0.21271 0.168395 0.157186 0.132941 0.0994929 0.0851621 0.0902933 0.110077 0.11969 0.232929 0.373578 85.5824 110.706 120.822 121.353 -1.09842 0.173262 -0.0379261 0.0296807 0.0303256 0.0740206 -0.0686116 0.0285073 0.0323234 -0.271721 0.193947 0.189806 0.185679 0.181385 0.181124 0.174233 0.165017 0.15643 0.137986 0.114891 0.100405 0.0965549 0.114754 0.100245 0.0533719 0.209197 -0.252723 5.7521 122.479 123.262 -0.0666177 0.101955 -0.0549913 0.0254043 0.0299545 0.0665055 -0.0555979 0.0178355 0.0132456 -0.209871 0.182458 0.195611 0.180105 0.175503 0.17271 0.1671 0.164465 0.155696 0.141414 0.125681 0.113781 0.100718 0.0927779 0.0789782 0.0693675 0.109481 -0.154757 -0.12074 0.21967 -0.299023 -0.200592 0.0209697 -0.0463453 0.0216272 0.0293211 0.0592401 -0.0440685 0.00925322 0.00971752 -0.15174 0.17102 0.176352 0.182594 0.166516 0.164531 0.160674 0.155198 0.158884 0.141182 0.130468 0.123114 0.100532 0.0891943 0.0770032 0.197541 0.0612878 -0.0854896 -0.135356 -0.156304 -0.275324 -0.27129 -0.105793 -0.0368973 0.0185217 0.0284323 0.052324 -0.0344447 0.00262909 0.0086315 -0.104165 0.156888 0.158018 0.156354 0.156378 0.156885 0.154762 0.151145 0.146987 0.142363 0.129873 0.174316 0.10302 0.085315 0.0692005 0.228628 0.0320363 -0.0351922 -0.183049 -0.179997 -0.275754 -0.310407 -0.143406 -0.026157 0.0159569 0.0273116 0.0458451 -0.0267004 -0.00258453 0.00766524 -0.0676671 0.142693 0.145132 0.147042 0.150584 0.15112 0.149152 0.146771 0.143132 0.13725 0.128665 0.179602 0.106089 0.0818971 0.0711803 0.12159 0.0224344 -0.00945541 -0.254173 -0.161606 -0.275376 -0.399302 -0.154407 -0.0127699 0.0138491 0.0259677 0.0398755 -0.0205194 -0.00619101 0.0068769 -0.0411726 0.131127 0.134664 0.138574 0.142217 0.144675 0.169777 0.142527 0.139813 0.133816 0.126838 0.117198 0.105269 0.0785043 0.0632801 0.0338776 0.0112034 0.0063378 -0.142165 -0.131512 -0.256991 -0.50942 -0.136239 -0.00664688 0.0120788 0.0244039 0.034455 -0.0154924 -0.00826032 0.00621917 -0.023022 0.121943 0.126751 0.13243 0.136854 0.144766 0.168793 0.138923 0.141522 0.132576 0.122053 0.111782 0.131689 0.0743944 0.0554006 0.028806 -0.000642309 -0.0245347 -0.11353 -0.0926499 -0.233704 -0.538629 -0.162701 -0.00725527 0.0105544 0.0226304 0.0295937 -0.0112972 -0.00909779 0.00562643 -0.0114044 0.118403 0.123972 0.129753 0.133896 0.136011 0.13699 0.137407 0.136829 0.129295 0.120553 0.104734 0.108277 0.0792904 0.0491638 0.0219786 -0.0123707 -0.0127779 -0.0996121 -0.149274 -0.196452 -0.504039 -0.120066 -0.00706678 0.00920448 0.0206664 0.0252692 -0.0077953 -0.00895713 0.00505297 -0.00456827 0.119212 0.126128 0.128815 0.13815 0.13515 0.136102 0.136125 0.141818 0.127261 0.113877 0.102899 0.12523 0.0821576 0.120868 0.0113386 -0.0200986 -0.0545431 -0.108979 -0.175975 -0.127131 -0.354427 -0.142956 -0.00911967 0.00794914 0.0185453 0.0214382 -0.0049146 -0.00813958 0.00449932 -0.000995477 0.123818 0.130252 0.137353 0.137666 0.139175 0.155477 0.138683 1.46439 0.115595 0.108206 0.0985073 0.0839758 0.139311 0.0520462 0.0048564 -0.0283906 -0.0655873 -0.104745 -0.175593 -0.13432 -0.251567 -0.0588531 -0.0090514 0.00670043 0.0163081 0.0180448 -0.00262423 -0.00686593 0.00401273 0.000614777 0.115398 0.53358 0.743752 0.783475 0.135172 0.13256 0.132664 0.0998635 0.114181 0.105663 0.0964911 0.0810609 0.104052 0.0437731 0.000240764 -0.0346475 -0.0671761 0.0366249 -0.155011 -0.113931 -0.182833 0.00192563 -0.00779078 0.00538317 0.0140022 0.0150403 -0.000924708 -0.00539475 0.00353582 0.00116601 0.0984092 0.096147 0.100533 0.108996 0.134025 0.426039 0.167833 0.121021 0.117131 0.109101 0.0977073 0.0813403 0.0571897 0.038658 -0.00428127 -0.0457615 -0.0667446 0.98094 -0.137205 -0.113216 -0.160128 0.00447086 -0.00736513 0.00393882 0.0116755 0.0123814 0.000240252 -0.00391416 0.00306818 0.00120338 0.108554 0.110937 0.114915 0.119032 0.122593 0.126399 0.12636 0.124621 0.122046 0.114565 0.0999749 0.0794238 0.0533528 0.0255657 -0.0109297 -0.0414809 -0.0655462 1.08147 0.0118714 -0.136421 -0.0385446 -0.00948482 -0.00798123 0.0023352 0.00937468 0.0100309 0.000974184 -0.00265575 0.00263106 0.0010698 0.113772 0.116078 0.119551 0.123444 0.127386 0.131857 0.139758 0.131851 0.126812 0.116016 0.0977753 0.0727725 0.042458 0.00948508 -0.0190879 -0.0497784 -0.0693976 0.502553 -0.0467107 -0.0921295 -0.111268 -0.0246632 -0.00959387 0.000584672 0.00714242 0.00795635 0.00137152 -0.0016587 0.00221601 0.000877482 0.110114 0.112135 0.115523 0.119569 0.124064 0.127944 0.132556 0.129048 0.121927 0.107546 0.0854431 0.0607818 0.0202434 -0.014368 -0.0415617 -0.0569761 -0.0730563 -0.0644853 -0.0535825 -0.0620215 -0.0862924 -0.031162 -0.0116794 -0.00125582 0.0050211 0.00613068 0.001515 -0.000892376 0.00182063 0.00067758 0.0991262 0.101567 0.104404 0.10762 0.112881 0.114057 0.114724 0.111139 0.100103 0.0802738 0.0580136 0.0257713 -0.020935 -0.0577038 -0.073726 -0.0788159 -0.0815845 0.0456193 0.531226 -0.0467653 -0.0559517 -0.0333076 -0.0137435 -0.00309359 0.00305551 0.00453214 0.00147584 -0.000350827 0.00145021 0.000500955 0.0880429 0.0891758 0.090301 0.0912822 0.091774 0.0909132 0.0866039 0.0760371 0.0558959 0.0273939 -0.0130622 -0.0266521 -0.0957712 -0.140477 -0.128376 -0.107403 -0.0843235 0.134995 -0.0315253 -0.0566666 -0.049826 -0.0340072 -0.0155089 -0.00481107 0.00130034 0.00314813 0.00131505 -1.63759e-06 0.00111704 0.000349891 0.0727737 0.0727359 0.0721469 0.0706625 0.0676561 0.0611538 0.0495953 0.0360748 -0.00372801 -0.0450517 -0.112094 -0.188327 -0.246733 -0.265397 -0.22044 -0.135531 -0.0814087 -0.0220704 -0.028747 -0.0502823 -0.0470649 -0.0349203 -0.0168916 -0.00626743 -0.000179173 0.00197672 0.00108196 0.000192096 0.000839043 0.000227706 0.0514792 0.0510498 0.0496194 0.0465228 0.0408323 0.0481452 0.0442456 -0.0143258 -0.053012 -0.127503 -0.231656 -0.314407 -0.387066 -0.40023 -0.306786 -0.18543 -0.078511 -0.0259462 0.406814 -0.0253343 -0.0473774 -0.0122081 -0.0178726 -0.00728758 -0.00132888 0.00102609 0.00081387 0.00027018 0.000624279 0.00013801 0.0248602 0.0246992 0.0234526 0.0203339 0.0139933 0.00142642 -0.0111348 -0.0476574 -0.0908539 -0.151674 -0.142145 -0.26179 -0.414597 -0.420592 -0.331267 -0.192055 -0.0517941 -0.000499709 0.0251051 -0.0169132 -0.0594115 -0.0168912 -0.0165747 -0.00763661 -0.00204701 0.000310274 0.000541363 0.000269249 0.000460143 7.99421e-05 0.00236131 0.0036259 0.00331593 0.000961736 -0.00419601 -0.013198 -0.027441 -0.0486714 -0.0810326 -0.13196 -0.203489 -0.287957 -0.325387 -0.314866 -0.250021 -0.14602 -0.0472756 0.00238559 0.0087188 0.00737855 -0.104917 -0.0349012 -0.0180659 -0.00700359 -0.00226965 -0.000157785 0.000290129 0.000210236 0.000323735 4.89033e-05 -0.00162205 -0.000551238 -0.000797506 -0.00268479 -0.00596379 -0.0107633 -0.018271 -0.0302012 -0.0486408 -0.0756182 -0.110584 -0.146876 -0.167995 -0.160454 -0.125477 -0.0680763 -0.0153881 0.00553582 0.00080839 0.0240533 -0.0306223 -0.019797 -0.0119839 -0.00527661 -0.00198664 -0.000379569 7.91263e-05 0.000108132 0.00019675 3.44498e-05 0.0082389 0.031402 0.0682893 0.0217722 0.0334467 -0.000604395 -0.00397275 -0.00893333 -0.0176623 -0.0319363 -0.0502482 -0.0639028 -0.0695333 -0.0556016 -0.0289754 0.0731794 0.0152665 0.0126767 0.00766332 0.0235554 -0.00259667 -0.0113476 -0.006039 -0.00277923 -0.00127276 -0.000388441 -8.66376e-05 -2.30967e-05 6.81637e-05 2.42672e-05 -0.000581361 -0.00162904 -0.000355417 -0.0040601 -0.0028202 -0.00217595 -1.22204e-05 -0.00113616 -0.00630587 -0.0106489 -0.0217794 -0.0292518 -0.0270208 0.0180694 -0.00988507 0.00478627 0.0215584 0.00862385 0.00518651 0.00658593 0.00375248 -0.00319232 -0.00209575 -0.000969806 -0.000641181 -0.000348198 -0.000205966 -0.000154175 -6.4176e-05 1.38248e-05 122.941 113.009 102.452 94.0702 88.0262 83.8866 82.0383 83.5817 87.794 92.0014 94.696 95.8234 95.8113 95.119 94.1049 93.0058 91.9615 91.0444 90.2827 89.6767 89.2108 88.8629 88.6104 88.4333 88.315 88.2421 88.204 88.192 88.1994 88.2207 122.994 116.199 104.897 95.8563 89.3117 84.7075 82.1936 82.8596 86.6728 91.1166 94.2228 95.693 95.9073 95.3377 94.3714 93.2725 92.2015 91.2453 90.4415 89.7962 89.2966 88.9213 88.6474 88.4537 88.3228 88.2403 88.1949 88.1775 88.1809 88.1995 123.096 116.206 104.883 95.8315 89.2908 84.6807 82.1273 82.7612 86.6299 91.1467 94.2857 95.7566 95.9584 95.3738 94.393 93.2795 92.1945 91.2259 90.4125 89.7604 89.2568 88.8796 88.6052 88.4117 88.2813 88.1995 88.1548 88.1381 88.1422 88.1612 123.247 116.222 104.863 95.7913 89.2568 84.6364 82.0177 82.5934 86.5466 91.1829 94.3818 95.8616 96.0466 95.4389 94.4343 93.2968 92.188 91.1982 90.3678 89.7041 89.1935 88.8128 88.5371 88.3439 88.2145 88.134 88.0906 88.0751 88.0802 88.0999 123.449 116.247 104.834 95.7355 89.2096 84.5754 81.8657 82.3567 86.4272 91.2297 94.5118 96.0058 96.1705 95.5328 94.4958 93.3246 92.1824 91.1624 90.3082 89.6279 89.1072 88.7216 88.4443 88.2515 88.1234 88.0446 88.0029 87.989 87.9953 88.0162 123.701 116.277 104.798 95.6637 89.149 84.4986 81.6713 82.0463 86.2704 91.2895 94.677 96.1893 96.3286 95.6527 94.5744 93.3604 92.1757 91.1173 90.2324 89.5308 88.9974 88.6056 88.3265 88.1343 88.0079 87.931 87.8912 87.8789 87.8867 87.9087 124.004 116.31 104.754 95.5758 89.0752 84.4073 81.4348 81.6558 86.0734 91.3635 94.8795 96.4131 96.5206 95.7971 94.6684 93.4029 92.1669 91.0617 90.1391 89.4114 88.8626 88.4637 88.1829 87.9917 87.8674 87.7928 87.7549 87.7441 87.7533 87.7767 124.36 116.341 104.701 95.4713 88.9881 84.3031 81.1571 81.177 85.8331 91.4539 95.1217 96.6791 96.7472 95.9659 94.7775 93.4518 92.1559 90.9948 90.0268 89.2678 88.7011 88.2944 88.0122 87.823 87.7017 87.6298 87.594 87.5847 87.5951 87.6199 124.768 116.365 104.638 95.35 88.8877 84.188 80.8391 80.5997 85.5456 91.563 95.4066 96.9895 97.0093 96.1593 94.9018 93.5073 92.1423 90.9155 89.8936 89.0976 88.5103 88.0955 87.813 87.6272 87.5104 87.4423 87.409 87.4011 87.4124 87.4382 125.231 116.375 104.564 95.2115 88.7738 84.0644 80.483 79.9105 85.2067 91.6939 95.7375 97.3471 97.308 96.3776 95.0414 93.5696 92.126 90.8226 89.737 88.8977 88.2871 87.8644 87.5834 87.4034 87.2932 87.2307 87.201 87.1949 87.2062 87.2315 125.748 116.361 104.478 95.0551 88.6461 83.9351 80.0913 79.092 84.8118 91.8503 96.1182 97.7548 97.6448 96.621 95.1964 93.6388 92.1071 90.7148 89.5541 88.6642 88.0276 87.5978 87.3209 87.15 87.0496 86.9954 86.9714 86.9678 86.9784 87 126.317 116.325 104.377 94.8805 88.5041 83.8032 79.6681 78.1215 84.3558 92.0367 96.5529 98.216 98.0211 96.8896 95.3665 93.7149 92.0858 90.5906 89.3413 88.3925 87.7269 87.2914 87.0226 86.8654 86.7791 86.7367 86.7211 86.7218 86.7325 86.7505 126.935 116.281 104.261 94.687 88.3471 83.6723 79.2188 76.9688 83.8336 92.2581 97.0465 98.7348 98.4387 97.1833 95.5516 93.7979 92.0624 90.4487 89.0946 88.0767 87.3788 86.9401 86.6849 86.5473 86.4804 86.4541 86.4501 86.4576 86.4702 86.486 127.597 116.243 104.129 94.4741 88.1741 83.5462 78.7508 75.5926 83.2404 92.5208 97.6043 99.3153 98.8993 97.5019 95.751 93.8875 92.0378 90.2875 88.8094 87.7099 86.9754 86.5375 86.3035 86.1933 86.1521 86.1463 86.1571 86.1742 86.1919 86.208 128.298 116.221 103.979 94.2412 87.9836 83.4288 78.2738 73.9282 82.5708 92.8317 98.2319 99.9626 99.4051 97.8445 95.9638 93.9826 92.012 90.1058 88.4807 87.2829 86.5064 86.0753 85.8731 85.8006 85.7927 85.8119 85.8393 85.8665 85.8907 85.9127 129.031 116.219 103.81 93.9878 87.774 83.3244 77.8 71.8728 81.8161 93.1996 98.9359 100.682 99.9583 98.2099 96.1885 94.0819 91.9831 89.9008 88.104 86.7841 85.9579 85.5432 85.3882 85.3667 85.4018 85.4512 85.4962 85.5322 85.5606 85.5846 129.784 116.234 103.622 93.7133 87.5428 83.2367 77.3431 69.2996 80.9698 93.6339 99.7209 101.479 100.561 98.5956 96.4226 94.184 91.9417 89.6587 87.6748 86.1982 85.3106 84.9281 84.8428 84.8902 84.9807 85.0673 85.1319 85.1757 85.206 85.2295 130.541 116.264 103.412 93.4169 87.2869 83.1693 76.9228 66.085 80.063 94.1436 100.589 102.36 101.216 98.9976 96.6619 94.2903 91.8588 89.3314 87.1872 85.5052 84.5364 84.2135 84.2321 84.3708 84.5329 84.6672 84.7554 84.8071 84.8382 84.8599 131.278 116.295 103.177 93.0976 87.0016 83.1249 76.5673 62.1627 79.1695 94.7272 101.551 103.33 101.926 99.4086 96.8973 94.4113 91.6804 88.9395 86.6482 84.6813 83.5925 83.3794 83.5569 83.8127 84.0647 84.2635 84.3833 84.4445 84.4752 84.4926 131.961 116.301 102.914 92.7541 86.6789 83.1043 76.3179 57.6657 78.4218 95.3534 102.603 104.393 102.691 99.8159 97.1123 94.5747 91.3822 88.6604 86.0775 83.6968 82.4148 82.4061 82.8323 83.2344 83.5942 83.8775 84.0374 84.1054 84.1287 84.1349 132.539 116.242 102.614 92.3851 86.3064 83.104 76.2579 53.0949 78.1096 95.9632 103.744 105.551 103.511 100.197 97.3054 94.8095 91.0396 88.5173 85.51 82.5292 80.9162 81.2662 82.0734 82.6691 83.1692 83.5422 83.7354 83.7967 83.7986 83.7829 132.948 116.051 102.281 91.9895 85.8648 83.1111 76.5692 49.7299 78.7257 96.5591 104.978 106.804 104.382 100.512 97.5468 95.0727 90.7897 88.4548 85.0071 81.1789 78.8548 79.8098 81.2283 82.103 82.8204 83.2925 83.4937 83.5219 83.479 83.4246 133.11 115.635 101.925 91.5657 85.4785 83.0941 77.5003 -0.0480461 80.3689 97.2313 106.315 108.142 105.291 100.676 97.9212 95.3022 90.7572 88.4787 84.6677 79.5768 75.2205 77.5389 80.2576 81.5058 82.563 83.1714 83.3444 83.2909 83.1582 83.0326 132.942 114.79 101.549 91.1122 85.212 83.0664 78.1667 0.233227 82.8119 97.9455 107.719 109.55 106.206 100.521 98.4243 95.6101 91.0259 88.6099 84.6062 77.9432 69.8625 74.4899 79.0229 80.8176 82.4903 83.3022 83.3383 83.1252 82.8243 82.5505 132.363 113.221 101.156 90.627 85.1866 82.7225 2.34157 0.0116688 82.693 98.5979 109.16 111.002 107.048 99.6234 99.0309 96.1487 91.6335 88.8458 84.9113 77.6781 66.3073 72.1951 76.8596 79.7497 82.7818 83.9947 83.4347 83.074 82.4925 81.8405 131.334 110.482 100.776 90.0746 85.1653 80.8948 -0.280957 -0.219092 71.1314 99.0125 110.591 112.462 107.65 97.4171 99.8483 96.8854 92.5551 89.1403 85.5481 79.1943 35.7167 0.393736 0.31056 0.276242 9.74923 22.5492 28.3331 34.4902 37.8771 40.4258 129.917 106.324 100.468 89.2707 86.0609 -0.220243 -0.294155 -0.443915 44.9805 99.0252 112.007 113.887 108.072 95.9844 101.004 97.7787 93.4844 89.2553 85.6458 20.2813 0.368414 0.310751 0.284688 0.267031 0.257207 0.255705 0.254443 0.252224 0.250882 0.249577 128.418 99.3423 100.286 87.8845 -0.14188 -0.217665 -0.294603 -0.655491 13.3838 100.116 113.579 115.228 108.601 97.3959 102.372 98.7819 94.2586 88.7602 62.0987 0.310809 0.612955 0.252359 0.26093 0.259941 0.257858 0.256605 0.255528 0.253799 0.251633 0.250949 127.242 89.3823 100.369 18.2042 -0.144626 -0.214304 -0.292731 -0.678759 10.145 101.575 115.555 116.441 108.7 101.451 104.027 99.5976 95.1919 89.1692 0.162536 0.242515 0.293238 0.218427 0.234206 0.247457 0.254316 0.256404 0.256627 0.255431 0.248952 0.248016 122.119 96.85 101.017 0.0651511 -0.143568 -0.206908 -0.288284 -0.780002 -3.41158 103.415 116.908 117.512 107.549 106.088 105.024 100.142 94.6425 0.133606 0.207577 0.157262 0.198318 0.190914 0.21139 0.229243 0.246334 0.253713 0.255231 0.268373 0.252395 0.248543 88.253 88.2993 88.3655 88.4567 88.5794 88.7413 88.9523 89.2241 89.5719 90.0132 90.5675 91.2536 92.0841 93.0578 94.1489 95.2998 96.4104 97.3131 97.7335 97.2811 95.4821 92.0085 87.5435 84.4452 84.3274 86.7449 91.0848 96.346 101.653 105.842 88.229 88.271 88.3317 88.4159 88.5297 88.6806 88.8779 89.1328 89.4597 89.8757 90.4 91.0522 91.8471 92.7882 93.8568 95.0037 96.1412 97.123 97.7057 97.5275 96.1266 93.0771 88.6729 84.9481 84.07 85.9073 89.8236 94.9476 100.298 104.931 88.191 88.2333 88.2942 88.3786 88.4924 88.6431 88.8402 89.0951 89.4225 89.8398 90.3668 91.0234 91.8249 92.7751 93.8546 95.0133 96.1627 97.157 97.7524 97.5851 96.1842 93.1046 88.6294 84.8635 84.0187 85.8806 89.8107 94.9432 100.297 104.943 88.1304 88.1731 88.2343 88.3186 88.4322 88.5825 88.7793 89.0343 89.3626 89.7823 90.3138 90.9779 91.7909 92.7572 93.8569 95.0372 96.207 97.2196 97.8315 97.6767 96.2688 93.1354 88.5479 84.7211 83.9335 85.8352 89.79 94.9375 100.299 104.967 88.0474 88.0908 88.1523 88.2367 88.3499 88.4997 88.696 88.9511 89.2809 89.7041 90.242 90.9168 91.7461 92.7357 93.8646 95.0761 96.2744 97.31 97.9413 97.8006 96.3821 93.1752 88.4327 84.5208 83.8151 85.771 89.7611 94.9302 100.302 105.002 87.941 87.9852 88.0474 88.132 88.2451 88.3943 88.5901 88.8455 89.1772 89.6049 90.1512 90.8397 91.6902 92.7099 93.8764 95.127 96.3606 97.4248 98.0799 97.9568 96.5258 93.2262 88.2813 84.2586 83.6641 85.6883 89.7241 94.9215 100.307 105.049 87.8103 87.8556 87.9187 88.0038 88.1168 88.2656 88.461 88.7169 89.051 89.4841 90.0405 90.7456 91.6219 92.6789 93.8915 95.1885 96.4631 97.5619 98.2469 98.1463 96.7018 93.2895 88.09 83.9292 83.4816 85.5872 89.679 94.9115 100.313 105.108 87.6549 87.7017 87.7658 87.8516 87.9647 88.1131 88.3081 88.5645 88.9013 89.3407 89.9088 90.6333 91.54 92.642 93.9101 95.2602 96.5812 97.7207 98.4424 98.3701 96.9119 93.3665 87.8539 83.526 83.2692 85.4678 89.6258 94.9002 100.321 105.179 87.4748 87.5234 87.5884 87.6744 87.7879 87.936 88.1304 88.3873 88.727 89.1735 89.7547 90.5011 91.4427 92.5979 93.9324 95.3426 96.715 97.9013 98.6664 98.6295 97.1585 93.4592 87.5671 83.0402 83.029 85.3303 89.5647 94.8879 100.329 105.261 87.2691 87.3212 87.3848 87.4701 87.5851 87.7333 87.9271 88.1844 88.527 88.981 89.5764 90.347 91.3276 92.5453 93.959 95.4355 96.8641 98.1035 98.9193 98.9254 97.4445 93.57 87.2216 82.4603 82.7642 85.1749 89.4959 94.875 100.338 105.354 87.0328 87.1039 87.1536 87.2358 87.3556 87.5043 87.6973 87.9544 88.2999 88.7616 89.3723 90.169 91.192 92.4819 93.9908 95.5386 97.0281 98.3274 99.2014 99.2596 97.773 93.7017 86.8076 81.7716 82.4791 85.0015 89.4195 94.8616 100.346 105.457 86.7745 87.0129 86.9417 86.9758 87.0991 87.2488 87.4404 87.6965 88.0443 88.5136 89.1401 89.9647 91.0323 92.4044 94.0293 95.6506 97.2064 98.5729 99.5131 99.6344 98.1477 93.858 86.3119 80.9548 82.1792 84.81 89.3357 94.8482 100.354 105.57 86.5129 86.5622 86.617 86.6957 86.8155 86.9659 87.155 87.4093 87.7589 88.2353 88.8777 89.7317 90.8445 92.306 94.0759 95.7684 97.3976 98.8403 99.8544 100.052 98.5731 94.043 85.7178 79.9853 81.8724 84.6 89.2447 94.8354 100.361 105.692 86.3047 86.2647 86.3155 86.3918 86.5047 86.6519 86.8385 87.0916 87.4425 87.9245 88.582 89.4674 90.6251 92.1702 94.1301 95.8856 97.6004 99.1297 100.226 100.514 99.0541 94.262 85.0038 78.8327 81.5685 84.3709 89.1468 94.8235 100.365 105.82 85.9346 85.9628 86.006 86.0693 86.1659 86.3051 86.4895 86.7432 87.0946 87.5792 88.2494 89.1689 90.372 91.9503 94.1812 95.9904 97.8137 99.4418 100.627 101.023 99.5965 94.5218 84.142 77.4625 81.2795 84.1219 89.0421 94.8131 100.367 105.96 85.6076 85.6349 85.672 85.7172 85.7907 85.9269 86.1117 86.366 86.7153 87.1965 87.8744 88.8317 90.0884 91.5283 94.1791 96.0643 98.0373 99.7777 101.058 101.582 100.208 94.8328 83.1 75.8427 81.0207 83.8518 88.9309 94.8048 100.364 106.108 85.2515 85.278 85.3178 85.3311 88.4804 85.5429 85.7139 85.9634 86.3048 86.7731 87.4494 88.4476 89.7866 90.8943 93.9619 96.0838 98.2732 100.139 101.519 102.195 100.898 95.214 81.8525 73.956 80.823 83.559 88.8133 94.7988 100.354 106.26 84.8787 84.9004 84.9323 84.9049 85.9484 85.0922 85.2944 85.5377 85.8636 86.3044 86.9627 88.0028 89.4882 90.6318 93.2916 96.0342 98.5277 100.529 102.007 102.864 101.668 95.6969 80.4002 71.7376 80.7172 83.2421 88.6887 94.7951 100.337 106.42 84.5056 84.5192 84.5373 84.5647 84.5986 84.6839 84.8605 85.0907 85.3939 85.7853 86.397 87.4799 89.1698 90.75 92.1518 95.9417 98.8122 100.95 102.519 103.593 102.521 96.3178 78.7849 69.038 80.7119 82.8998 88.5555 94.7935 100.31 106.587 84.1368 84.1394 84.1449 84.1565 84.1824 84.2659 84.4143 84.6257 84.9029 85.2113 85.7262 86.8524 88.7818 90.8374 90.9992 95.9005 99.1432 101.406 103.05 104.385 103.472 97.0942 77.1568 65.7594 80.8132 82.5288 88.4101 94.7941 100.269 106.754 83.7673 83.7554 83.7452 83.734 83.7338 83.815 84.2053 84.1598 84.4027 84.576 84.9049 86.0796 88.3449 90.7486 90.499 96.0389 99.5391 101.902 103.592 105.244 104.522 98.0283 75.7612 62.1155 81.0245 82.118 88.2498 94.797 100.211 106.916 83.3847 83.3603 83.3426 83.3163 83.2884 83.293 83.5907 83.7302 83.8974 83.8639 83.833 85.1058 87.8852 90.6011 90.9301 96.4251 100.015 102.444 104.132 106.17 105.679 99.103 74.7015 58.6546 81.3118 81.6389 88.0921 94.803 100.132 107.063 82.9578 82.9338 82.9354 82.904 82.8293 82.8307 83.0735 83.3384 83.3947 83.0581 82.3095 83.8406 87.4113 90.5249 91.9993 96.9903 100.581 103.04 104.648 107.163 106.957 100.299 73.9957 37.7103 81.4803 81.0345 88.0345 94.8158 100.026 107.183 82.4177 82.4438 82.5527 82.515 82.2702 82.2043 82.5873 83.0645 82.9253 82.1548 79.8491 82.0827 86.9568 90.5132 93.1831 97.5565 101.243 103.703 105.106 108.21 108.369 101.734 76.3203 -0.0476349 81.164 80.2052 88.257 94.8418 99.8835 107.257 81.5544 81.7787 82.3822 82.3677 81.4707 81.2748 82.0403 83.0646 82.3141 81.3098 76.8768 80.37 86.5661 90.5122 94.1548 98.0121 102.023 104.457 105.43 109.29 109.891 103.374 75.8424 2.78446 1.38735 79.1123 89.0495 94.8896 99.6934 107.255 43.8075 48.9414 58.7928 65.7536 67.4912 74.0111 80.371 84.6426 80.4711 81.9807 73.1931 79.4453 86.348 90.4702 94.9682 98.6176 102.958 105.342 105.487 110.365 111.417 104.972 71.1561 0.504609 0.0436171 10.8071 90.8628 94.9719 99.4386 107.127 0.248431 0.244886 0.238736 0.231372 0.234067 0.234946 0.232914 0.221544 0.218593 0.229134 0.859604 77.9064 86.3561 90.3041 95.8493 99.6351 104.073 106.44 105.072 111.379 112.796 106.471 52.1049 0.267631 0.0429287 0.134987 93.6249 95.0895 99.109 106.839 0.251071 0.257288 0.262009 0.251179 0.238879 0.240213 0.229313 0.222579 0.215966 0.214075 0.245471 0.2058 86.6536 89.7557 96.9362 100.618 105.359 107.917 103.968 112.204 114.15 106.638 17.2883 0.187971 0.0616193 0.0889262 30.7565 95.1814 98.6876 106.636 0.268693 0.246715 0.241835 0.236894 0.229491 0.223167 0.220424 0.220606 0.208068 0.176149 0.161827 0.170074 0.095904 88.4688 99.0841 101.034 106.81 109.886 103.017 112.524 115.217 106.384 2.37577 0.153051 0.0615776 0.0603179 0.141506 95.0969 98.0623 106.91 0.243269 0.241245 0.24028 0.235204 0.225056 0.212196 0.207612 0.210697 0.189025 0.135274 0.0949567 0.0784131 0.131739 72.1164 103.488 100.844 108.408 111.35 104.329 112.683 115.88 106.267 -0.634371 0.124889 0.054386 0.0466305 0.14456 3.64177 97.017 106.622 117.555 92.8086 99.9152 0.0626888 -0.139702 -0.198617 -0.280326 -0.861014 -6.45618 104.255 116.384 118.38 105.924 108.341 105.509 99.9714 102.672 0.462782 0.173004 0.0562147 0.153727 0.167036 0.186957 0.211893 0.235285 0.248497 0.250708 0.252125 0.248561 0.263437 114.363 119.252 73.0561 0.0604675 -0.136189 -0.193796 -0.273678 -0.841505 0.236841 108.087 116.542 118.915 105.698 108.587 105.867 99.0666 0.628333 0.480854 0.13737 0.169498 0.138373 0.155289 0.173887 0.199205 0.228374 0.244378 0.250467 0.248923 0.242446 0.431865 111.404 30.061 0.126816 0.0536819 -0.13168 -0.18868 -0.26765 -0.899782 0.260156 112.999 117.665 120.058 106.459 106.72 105.786 43.0085 0.503173 1.18086 0.120332 0.167111 0.126341 0.143318 0.160918 0.188349 0.220202 0.238434 0.262667 0.244913 0.243179 12.8408 113.525 0.207265 -0.00543194 0.0478834 -0.12628 -0.183264 -0.242318 -0.884353 -0.116755 115.786 118.463 121.206 108.733 105.092 107.953 0.467525 0.475509 3.48826 0.0672576 0.170113 0.118076 0.131682 0.148301 0.175896 0.210584 0.231325 0.23957 0.240541 0.235976 0.39391 102.337 0.228288 0.00306531 0.0411068 -0.120294 -0.177494 -0.265005 -0.195942 -0.000469058 119.867 118.606 120.711 111.943 104.911 14.7883 0.431086 0.159233 5.19964 0.0249604 0.12089 0.112704 0.121562 0.163858 0.162298 0.199678 0.222119 0.229683 0.233272 0.231907 0.234903 -0.036552 0.0868948 0.00964856 0.0338549 -0.113975 -0.171313 -0.259045 0.231968 0.0714877 110.656 118.194 120.234 115.635 109.225 0.116534 0.459179 0.226652 1.32392 0.0270518 0.087094 0.110177 0.146169 0.1481 0.150729 0.188159 0.209633 0.220062 0.222708 0.221955 0.221106 -0.0282984 0.095112 0.0147441 0.0263256 -0.107542 -0.164661 -0.233043 -0.179294 0.0205887 51.0495 121.992 123.186 119.088 -0.348307 0.187729 0.396659 0.0979256 0.260793 0.0414957 0.0896897 0.142593 0.21009 0.121146 0.137953 0.176658 0.19669 0.206227 0.210052 0.209679 0.208437 -0.0278292 0.0871274 0.0185329 0.0189632 -0.101123 -0.157506 -0.222818 -0.138945 0.0134454 -0.15927 117.403 124.133 120.295 0.10943 0.204907 0.26365 0.158659 0.17422 0.0768122 0.0982383 0.113842 0.161135 0.116524 0.135447 0.164712 0.22443 0.192406 0.196649 0.1967 0.195457 -0.02548 0.0896036 0.0212216 0.0121027 -0.0947401 -0.149786 -0.206342 0.0466898 -0.0162773 0.0910318 81.5935 124.927 3.58569 0.0663418 0.205267 0.21243 0.199246 0.420939 0.107901 0.107154 0.112642 0.112382 0.118259 0.133512 0.163485 0.183774 0.180694 0.182449 0.182638 0.181833 -0.0231912 0.106409 0.0230224 0.00610785 -0.0883999 -0.141447 -0.182011 -0.0809696 -0.0741521 0.0268089 0.205504 0.0263847 -0.480565 0.112755 0.198021 0.207357 0.179405 0.120726 0.126218 0.11663 0.116152 0.118245 0.123814 0.133759 0.146391 0.157543 0.163794 0.165938 0.166425 0.166916 -0.0210058 0.103709 0.0243285 0.00122442 -0.0821157 -0.132452 -0.17261 -0.0639025 -0.14639 0.0999965 0.159538 0.0396505 -0.312385 0.0859292 0.18836 0.200778 0.147502 0.16725 0.135573 0.12546 0.121036 0.122828 0.129936 0.136911 0.140077 0.144334 0.146551 0.147751 0.148821 0.150468 -0.0188698 0.0996609 0.0251649 -0.0025152 -0.0759152 -0.122796 -0.151189 -0.0383114 -0.0588263 0.0571153 0.128789 0.101711 -0.167753 0.0951165 0.196896 0.199826 0.155258 0.167916 0.146514 0.134229 0.126443 0.126275 0.134074 0.154481 0.13378 0.132499 0.130322 0.131534 0.131287 0.134873 -0.0167975 0.0891281 0.0255372 -0.00521514 -0.0698378 -0.112542 -0.129909 -0.0154018 0.00464168 -0.182439 0.0990685 0.0689064 -0.05803 0.0859659 0.165851 0.181498 0.148811 0.163297 0.154342 0.142006 0.137648 0.403098 0.128582 0.130721 0.126719 0.125114 0.117739 0.124483 0.126016 0.122589 -0.0146617 0.0753259 0.0254152 -0.00707089 -0.063888 -0.101798 -0.107213 0.00740224 0.154055 -0.136126 0.0450852 0.0209575 -0.00769575 0.080983 0.154364 0.192608 0.144122 0.158324 0.158657 0.146296 0.271015 0.145073 0.144647 0.13292 0.123577 0.114042 0.108581 0.106764 0.108742 0.112743 -0.0122851 0.120064 0.0247896 -0.00826394 -0.0580513 -0.0907245 -0.0883014 0.0275057 0.130148 -0.0730769 0.0554602 0.0212688 0.0195705 0.0578728 0.136041 0.135106 0.136969 0.154275 0.160402 0.161759 0.15542 0.156446 0.147859 0.138002 0.124645 0.117551 0.107186 0.105336 0.120359 0.110852 -0.00975553 0.106084 0.0236576 -0.00892868 -0.0523031 -0.079526 -0.0698569 0.0427511 0.124501 -0.0739281 -0.0345119 0.194606 0.0126155 0.0441844 0.126525 0.108211 0.156511 0.17998 0.160545 0.160223 0.160366 0.160702 0.155108 0.139438 0.12627 0.115829 0.110013 0.108313 0.109741 0.11204 -0.00760913 0.0955294 0.0220262 -0.00916708 -0.0466254 -0.0684311 -0.0529382 0.0466056 0.109071 -0.0603734 0.473379 0.213932 0.0735759 0.0915733 0.0552261 0.0838128 0.108717 0.131187 0.15154 0.160079 0.1534 0.151386 0.145904 0.140615 0.125314 0.117681 0.113621 0.111955 0.112601 0.115585 -0.00591394 0.0656579 0.0199172 -0.00906185 -0.0410236 -0.0576851 -0.0386427 0.0403122 0.0929505 -0.0674466 -0.0772428 0.137892 0.0219171 0.0118818 0.024697 0.057036 0.0961331 0.122865 0.143446 0.138395 0.145776 0.137471 0.136965 0.129034 0.122361 0.134396 0.119265 0.111556 0.10964 0.108157 -0.00407779 0.0550475 0.0174595 -0.00868764 -0.0355339 -0.0475265 -0.0265494 0.0388448 0.0729 -0.00320165 0.234755 0.147413 0.0204606 -0.0229269 -0.0198434 0.0185469 0.0673456 0.0975886 0.160277 0.118668 0.121594 0.123754 0.123677 0.121554 0.120233 0.11492 0.120013 0.107756 0.106303 0.104672 -0.00118382 0.0345468 0.01482 -0.00811389 -0.0302173 -0.0381698 -0.0176751 0.0368377 0.0591057 -0.193334 0.128766 0.89355 0.0145502 -0.0546956 -0.0666283 -0.0260811 0.0311874 0.071273 0.0897868 0.100925 0.10727 0.111211 0.11392 0.110919 0.11253 0.110442 0.108664 0.109969 0.107753 0.107953 0.00182645 0.0306904 0.0121798 -0.00740785 -0.0251531 -0.0298003 -0.0103898 0.0317938 0.0544122 -0.00852167 0.115671 0.826849 -0.00526934 -0.069726 -0.0969639 -0.0634997 0.000631983 0.0483217 0.07319 0.085932 0.0937742 0.0987874 0.103015 0.214334 0.104718 0.10328 0.103672 0.104831 0.106947 0.110047 0.00542248 0.0281936 0.00961977 -0.0066298 -0.0204309 -0.0225508 -0.00443463 0.0274813 0.0500506 0.0569351 0.0976509 0.0719741 -0.00277614 -0.0635099 -0.103214 -0.0775449 -0.0153061 0.0351611 0.0620165 0.0743639 0.0824033 0.0871421 0.0892833 0.0902201 0.093007 0.0947837 0.0963171 0.0979352 0.0995132 0.100552 0.00954069 0.0269297 0.00710032 -0.00582662 -0.0161406 -0.0164916 -0.0021807 0.0227864 0.0389175 0.0525208 0.0764378 0.0516751 0.00461266 -0.048521 -0.0799024 -0.0590576 -0.00737211 0.0345453 0.0587226 0.0748504 0.0747339 0.0783134 0.0809051 0.083208 0.0853834 0.0872479 0.0888886 0.0904555 0.0920334 0.0936452 0.0137805 0.0271383 0.00453062 -0.00502504 -0.0123588 -0.0116702 -0.000501782 0.0166505 0.0237378 0.0306339 0.0453659 0.0326527 0.0457373 -0.0294004 -0.0414697 -0.0177714 0.0148721 0.04371 0.0599241 0.0682506 0.0760349 0.0698324 0.0716929 0.0735808 0.0755917 0.0775183 0.079239 0.0807334 0.0820202 0.0831208 0.0147115 0.0254229 0.00193571 -0.0042204 -0.00913674 -0.00804229 0.00204241 0.0119644 -0.00168581 -0.00824876 0.015853 0.0165851 0.00392292 -0.0107074 -0.0105836 0.0633719 0.029142 0.0488632 0.0591336 0.0686711 0.0659312 0.067677 0.0590338 0.0596436 0.0605903 0.0623671 0.0640959 0.0656585 0.0668086 0.0675686 0.00884534 -0.0260249 -6.97223e-05 -0.00338669 -0.00649153 -0.00550102 -0.00172635 -0.00204047 -0.037803 -0.0484063 -0.0172508 0.00339039 0.00356162 0.000619824 0.00594374 0.0161975 0.0291209 0.0457331 0.0473465 0.0477509 0.0452927 0.0426654 0.0407739 0.039318 0.0385837 0.0533888 0.0415967 0.0423924 0.0440157 0.0442676 0.00370146 -0.00608852 -0.000872264 -0.00252547 -0.00439412 -0.00386514 -0.00334207 -0.010459 -0.0682998 -0.125511 -0.0458339 -0.00583331 0.00254828 0.0415891 0.0992429 0.0185042 0.0223367 0.0581208 0.034014 0.0348196 0.02907 0.0301901 0.0231117 0.016225 0.0159096 0.0156827 0.0126515 0.0141761 0.0159291 0.0221796 0.00125531 0.000529902 -0.000651022 -0.00169313 -0.00277116 -0.0027677 -0.00425706 -0.0117663 -0.0417343 -0.097745 -0.0480403 -0.0111687 -0.00025285 0.00481166 0.00861661 0.0158542 0.0106974 0.0132641 0.0139343 0.0126174 0.0342936 0.140643 0.111783 -0.0101741 -0.0121832 -0.0103078 -0.00839799 -0.00811773 -0.0107677 -0.0188593 0.000309102 0.00159606 -0.000260618 -0.000958905 -0.00152512 -0.00183546 -0.00387144 -0.0124739 -0.0110643 0.034338 -0.0338367 -0.0152036 -0.00641615 -0.00101294 0.00269185 0.0043601 0.00785775 0.00427828 0.0274785 0.00576152 0.00260852 -0.000718294 0.00740347 0.000521293 -0.00789187 -0.006739 -0.00590282 -0.00729413 -0.0106777 -0.00592025 2.16775e-05 0.000976748 -4.62649e-05 -0.000368376 -0.000572436 -0.000837227 -0.00215436 -0.00596166 0.0409125 -0.0116652 -0.0229005 -0.0211883 -0.0158434 -0.010436 -0.00640575 -0.00425621 -0.00404042 -0.00406552 -0.00672438 -0.00681799 -0.0049129 -0.002739 -0.00103803 0.000810567 0.00120614 0.00060815 0.0010526 0.00382845 0.003557 0.00598958 0.223824 0.232609 0.241672 0.451518 0.224282 0.588502 0.190661 0.198652 0.171359 0.114011 0.0686127 0.0673298 0.0795473 -0.176926 112.37 100.339 109.715 111.116 107.101 112.924 115.866 105.332 -0.302224 0.0788817 0.046523 0.0409111 0.132326 -0.334436 42.6437 105.369 0.030061 0.23172 0.254552 0.271824 0.225203 0.637261 0.173166 0.192935 0.163882 0.106041 0.0592861 0.0479353 0.0636361 0.110706 42.243 100.164 109.951 112.903 108.507 113.304 116.328 106.674 -0.418649 0.0487986 0.0426771 0.039334 0.12478 -0.288945 0.102582 104.424 2.09615 0.239438 0.24763 0.296192 0.210771 0.235435 0.173899 0.1877 0.158141 0.0958041 0.0546781 0.0494431 0.0680226 0.17639 2.24747 99.4363 109.514 112.179 109.876 113.585 117.979 109.867 -0.365992 0.0213898 0.0389692 0.0383078 0.11586 -0.245016 0.0653203 83.6385 0.205653 0.219585 0.226986 4.26338 0.187379 0.215357 0.185234 0.182105 0.154417 0.0963259 0.056238 0.0546721 0.0784774 0.106829 0.685812 9.95293 109.14 113 111.153 114.538 120.128 44.9844 -0.0155794 0.00499538 0.0354887 0.0376717 0.105948 -0.208121 0.0491868 0.0478891 0.22988 0.214001 0.199141 4.10487 0.186005 0.203623 0.187899 0.175961 0.152371 0.103092 0.0652969 0.0627788 0.0844805 0.1471 0.197893 -0.0818749 109.93 113.394 111.508 115.017 121.437 3.01837 -0.0932834 1.75312e-05 0.0322855 0.0372585 0.0955316 -0.176492 0.0398975 0.0398496 0.216702 0.208047 0.19861 0.205332 0.179626 0.220946 0.187583 0.170088 0.151932 0.113874 0.0805143 0.0749317 0.0902393 0.110275 0.0386157 -0.0995182 0.869222 114.305 109.474 115.051 119.747 -0.269972 -0.021871 0.000645146 0.029389 0.0369074 0.085085 -0.148914 0.032851 0.0375162 0.205018 0.200323 0.194896 0.189159 0.182794 0.190095 0.178449 0.165629 0.152456 0.126357 0.0989252 0.0880406 0.0966234 0.110104 0.0483427 -0.0769395 0.396329 67.8083 110.11 115.974 119.415 -0.196246 0.0399176 -0.000854929 0.0267977 0.0364638 0.0749499 -0.124505 0.0264943 0.0347071 0.193853 0.190264 0.186266 0.183074 0.179576 0.178549 0.176656 0.16258 0.15306 0.133741 0.113897 0.101317 0.100652 0.101782 0.0736657 0.00246687 0.521165 -0.0621185 -0.134593 116.903 39.1215 -0.108047 0.0379236 -0.00454889 0.0244792 0.0358067 0.0653828 -0.10273 0.0203888 0.0310794 0.180887 0.178994 0.193127 0.178065 0.172744 0.169767 0.163704 0.164892 0.152965 0.138293 0.124975 0.111411 0.10019 0.0876593 0.0677385 0.105488 0.352735 -0.0341488 -0.144063 -0.201202 -0.314704 -0.145485 -0.0143401 -0.00992686 0.0223982 0.0348539 0.0565691 -0.0836029 0.014755 0.029352 0.167337 0.167957 0.17263 0.182894 0.163596 0.161954 0.157964 0.153659 0.157708 0.153266 0.129457 0.127335 0.0979498 0.0837202 0.0663055 0.175843 0.171772 -0.0261209 -0.148865 -0.186923 -0.271694 -0.292625 -0.0129298 -0.0115499 0.0204988 0.0335565 0.0486121 -0.0665818 0.00989585 0.0273441 0.152108 0.153589 0.154656 0.153836 0.154277 0.155132 0.15257 0.149159 0.144715 0.138507 0.127221 0.175971 0.0993638 0.0791354 0.0623352 0.0692946 0.0672453 -0.00483906 -0.152704 -0.203006 -0.31102 -0.348416 -0.0488548 -0.012202 0.0187341 0.0319037 0.0415273 -0.0516173 0.00586272 0.0251565 0.137484 0.140258 0.142971 0.145251 0.15478 0.152274 0.147409 0.144874 0.141044 0.134098 0.126172 0.118539 0.099741 0.0753292 0.067685 0.0275431 0.0122628 0.0125366 -0.152462 -0.18559 -0.28264 -0.427726 -0.0521393 -0.0121594 0.0170663 0.0299188 0.0352853 -0.0387482 0.00278303 0.0224733 0.125638 0.129573 0.13346 0.137728 0.141875 0.163031 0.167545 0.140455 0.138425 0.13098 0.123515 0.115563 0.0989627 0.0729802 0.0526401 0.0227386 0.00396149 0.0331702 -0.0877813 -0.17617 -0.251093 -0.513398 -0.0615645 -0.0122979 0.0154693 0.0276564 0.0298222 -0.0281604 0.000607178 0.0194654 0.117055 0.121569 0.126672 0.132914 0.136452 0.143191 0.146534 0.137723 0.139676 0.12916 0.118005 0.147007 0.12701 0.0714973 0.0465134 0.0177642 0.00161111 0.238108 -0.0810949 -0.145841 -0.230002 -0.453373 -0.084389 -0.0101383 0.0139186 0.0251896 0.0250714 -0.0199569 -0.000788947 0.0163566 0.114906 0.122019 0.124948 0.129708 0.13429 0.136321 0.136489 0.137428 0.136165 0.127279 0.114387 0.104269 0.0998741 0.0713981 0.0740728 0.00907674 -0.0179855 0.346562 -0.0844209 -0.204133 -0.151053 -0.419609 0.131355 -0.00680972 0.0123861 0.0225962 0.0209779 -0.0138937 -0.00158851 0.01334 0.116282 0.12124 0.126543 0.131029 0.13792 0.13554 0.135092 0.137596 0.147503 0.122435 0.109884 0.098451 0.118065 0.078081 0.0913081 -0.000402808 -0.0271285 0.0521004 -0.0788865 -0.20062 -0.130825 -0.368301 0.035231 -0.00425953 0.0108416 0.0199481 0.017484 -0.00950756 -0.00210006 0.0105662 0.120852 0.127953 0.134788 0.146179 0.141258 0.140233 0.152675 0.164241 2.68708 0.117673 0.105346 0.0945425 0.0784652 0.142566 0.0404237 -0.00949591 -0.0389187 -0.0345151 0.206283 -0.160787 -0.0938842 -0.209103 -0.0202358 -0.00357926 0.00925436 0.0173013 0.0145223 -0.00636177 -0.00234627 0.00812513 0.104237 0.087269 0.121191 0.270831 0.112308 0.12448 0.131111 0.127259 0.117242 0.108798 0.10435 0.0930794 0.076402 0.0501588 0.033942 -0.0136232 -0.0426783 -0.0686889 1.09229 -0.129558 -0.141685 -0.114589 -0.0254324 -0.00367894 0.00759773 0.0146991 0.0120134 -0.00408075 -0.00235932 0.00606752 0.102964 0.101407 0.102737 0.108402 0.113286 0.116375 0.12612 0.162412 0.119313 0.115248 0.108118 0.0944394 0.075871 0.0503596 0.0281321 -0.0167058 -0.0531761 -0.0842952 0.979062 0.223852 -0.156045 -0.0643997 -0.0171967 -0.00429371 0.00585427 0.0121768 0.00987721 -0.00240612 -0.00215844 0.00441782 0.108179 0.110506 0.113466 0.117558 0.121503 0.125276 0.128232 0.128256 0.136483 0.122232 0.112314 0.0951925 0.0721223 0.0440146 0.0145503 -0.0226682 -0.0490841 -0.0705973 0.880614 -0.0430014 -0.150063 0.0460439 -0.0185224 -0.00548032 0.00402369 0.00976356 0.00803966 -0.0011921 -0.00173406 0.00315565 0.121135 0.11402 0.116887 0.120494 0.124441 0.128438 0.132873 0.134753 0.131385 0.124516 0.111076 0.0899528 0.0623472 0.0298038 -0.00361494 -0.0302588 -0.0571379 -0.0744412 0.868637 -0.0441693 -0.0911337 -0.0726598 -0.0228325 -0.00716355 0.00212989 0.00748703 0.0064378 -0.000340831 -0.00123152 0.00223519 0.103927 0.106692 0.110258 0.114016 0.118172 0.123255 0.12854 0.127509 0.124657 0.115202 0.0977206 0.076826 0.0395503 0.00256646 -0.0298867 -0.052546 -0.0637557 -0.0766439 0.0513275 -0.0330479 -0.0496188 -0.069505 -0.0263016 -0.00909767 0.000220886 0.00537607 0.0050255 0.000218701 -0.000748397 0.00159651 0.0952977 0.0971435 0.0993248 0.101826 0.104625 0.111433 0.109161 0.108085 0.101871 0.0867879 0.0631094 0.0365391 0.0300752 -0.0467683 -0.0786715 -0.0859359 -0.0841865 -0.0839042 0.167099 0.659041 -0.0269414 -0.0559201 -0.0282501 -0.0110006 -0.00161894 0.00346327 0.00377656 0.000542189 -0.000337461 0.00117273 0.0840578 0.0849158 0.0857198 0.0863603 0.0866174 0.0859345 0.0830136 0.0756346 0.0614524 0.0344626 0.000378958 -0.0467512 -0.096522 -0.155444 -0.157745 -0.136016 -0.107251 -0.0768727 0.289715 -0.0337572 -0.0484716 -0.0498591 -0.0288932 -0.0126831 -0.00328854 0.00178686 0.00268237 0.00067818 -2.61482e-05 0.000895348 0.0679701 0.0680274 0.0675825 0.0663068 0.0636942 0.0590548 0.0495126 0.0348545 0.0275904 -0.0273299 -0.0821212 -0.163302 -0.241732 -0.297873 -0.295995 -0.226378 -0.128745 -0.0658883 -0.0106387 -0.0214651 -0.0413975 -0.0468212 -0.0297115 -0.0140612 -0.00466162 0.000393877 0.00174555 0.000672279 0.000175 0.000701802 0.044911 0.0451212 0.0446585 0.0430751 0.0396807 0.0333519 0.0679551 0.0361252 -0.0325264 -0.0860253 -0.135878 -0.264058 -0.351456 -0.417588 -0.406978 -0.277214 -0.157988 -0.0566416 -0.0196911 0.40906 -0.0183447 -0.0455268 -0.00799088 -0.0151209 -0.00557865 -0.000655976 0.000976813 0.000567595 0.000266643 0.0005471 0.017695 0.0181537 0.017918 0.0163451 0.0125212 0.00490473 -0.00932571 -0.0311846 -0.0574739 -0.105466 -0.168979 -0.170445 -0.281239 -0.412845 -0.391647 -0.290658 -0.150483 -0.0239624 0.010781 0.0393275 -0.00375965 -0.0580962 -0.0287616 -0.015399 -0.00584058 -0.00131918 0.000389272 0.000406442 0.00026568 0.000410682 0.00358352 0.00370016 0.0034223 0.00208968 -0.00106719 -0.00677962 -0.0159901 -0.0301369 -0.0514897 -0.0840911 -0.132242 -0.196467 -0.261195 -0.285903 -0.266305 -0.198547 -0.102943 -0.0116452 0.00497471 -0.00916995 3.12755 -0.0542941 -0.0292896 -0.0112339 -0.00525482 -0.00155475 -6.74008e-06 0.000226983 0.000200293 0.00028647 -0.00484914 -0.00148141 0.000744358 0.000108954 -0.00311032 -0.00691202 -0.0108731 -0.0170848 -0.0273463 -0.0447918 -0.0693029 -0.0991917 -0.126433 -0.136934 -0.120994 -0.0860915 -0.0323628 0.0141633 0.00759863 -0.0116828 2.13204 -0.00668165 -0.0149496 -0.00886941 -0.0038164 -0.00136124 -0.000215527 5.47091e-05 9.39887e-05 0.000169687 0.00632703 0.00587167 0.0279722 0.0834163 0.0830543 0.0172659 0.000456671 -0.00245005 -0.00745183 -0.0161676 -0.0287145 -0.0435392 -0.0530787 -0.054969 -0.0372317 0.0998213 0.0107647 0.0331627 0.0110909 0.00766116 0.0369904 -0.00372183 -0.00789818 -0.00353823 -0.00181563 -0.000830656 -0.000269169 -0.000101837 -4.01355e-05 5.24004e-05 120.849 110.634 100.087 92.3739 86.8146 83.1653 82.0781 84.4814 88.9389 92.8347 95.1112 95.9086 95.6862 94.8848 93.8315 92.736 91.7188 90.8391 90.1172 89.548 89.1137 88.7917 88.5598 88.3988 88.293 88.2297 88.1988 88.1923 88.2036 88.2276 118.241 107.486 97.8505 90.7489 85.6814 82.5671 82.3189 85.5286 90.0926 93.6191 95.4755 95.956 95.5384 94.6387 93.5516 92.4602 91.4677 90.6223 89.9366 89.4015 88.9968 88.6996 88.4876 88.3425 88.2492 88.1956 88.1721 88.171 88.1863 88.2132 118.304 107.461 97.8217 90.7241 85.6544 82.5057 82.2037 85.4509 90.1061 93.6849 95.5513 96.0204 95.5858 94.6691 93.565 92.457 91.4494 90.5917 89.8972 89.3566 88.9491 88.6508 88.4389 88.2944 88.2019 88.1491 88.1264 88.1261 88.142 88.1693 118.405 107.424 97.7772 90.6859 85.6124 82.4106 82.022 85.3227 90.1172 93.7793 95.6675 96.1233 95.6647 94.7223 93.5918 92.4573 91.4252 90.5475 89.8386 89.2891 88.8768 88.5767 88.3647 88.2212 88.13 88.0787 88.0574 88.0582 88.075 88.103 118.547 107.376 97.7166 90.6342 85.5559 82.2828 81.7721 85.1448 90.1301 93.9041 95.8225 96.263 95.7736 94.7972 93.6309 92.4603 91.3948 90.4896 89.761 89.1991 88.7804 88.4778 88.2659 88.1236 88.0341 87.9846 87.965 87.9672 87.9852 88.0141 118.729 107.318 97.6396 90.569 85.4855 82.1231 81.4497 84.9134 90.1461 94.0612 96.0172 96.4384 95.9103 94.8908 93.6798 92.4641 91.3566 90.4167 89.6632 89.0858 88.6591 88.3538 88.142 88.0014 87.914 87.8664 87.8484 87.8521 87.8714 87.9014 118.954 107.251 97.5456 90.4903 85.402 81.933 81.0495 84.6234 90.1664 94.2528 96.2532 96.65 96.0738 95.0019 93.7374 92.468 91.3098 90.3276 89.5436 88.9476 88.5117 88.2036 87.9925 87.854 87.769 87.7235 87.707 87.7121 87.7328 87.7642 119.223 107.176 97.434 90.3981 85.3065 81.7146 80.5644 84.2686 90.1926 94.4815 96.5328 96.8989 96.2643 95.1303 93.8036 92.4717 91.2538 90.2209 89.4004 88.7824 88.3364 88.0258 87.8164 87.6811 87.5992 87.556 87.5412 87.5475 87.5694 87.6023 119.539 107.094 97.3037 90.2924 85.2001 81.4708 79.9861 83.8411 90.2265 94.7503 96.8586 97.1864 96.482 95.2762 93.8786 92.4754 91.1876 90.0945 89.231 88.5878 88.1308 87.8187 87.6126 87.4821 87.4046 87.3646 87.3515 87.3586 87.3813 87.4155 119.907 107.006 97.1538 90.1733 85.0841 81.2052 79.3044 83.3308 90.2708 95.0626 97.2333 97.514 96.7276 95.4396 93.9626 92.4789 91.1103 89.9464 89.0322 88.3601 87.8919 87.5799 87.3797 87.2566 87.1857 87.1503 87.1396 87.147 87.1685 87.2024 120.321 106.913 96.9829 90.0406 84.9599 80.9228 78.5071 82.7258 90.3287 95.4225 97.6605 97.8836 97.0012 95.6206 94.0555 92.4824 91.021 89.7737 88.8002 88.0954 87.6161 87.3069 87.116 87.0038 86.9425 86.9141 86.9073 86.9149 86.9329 86.9594 120.764 106.819 96.7892 89.894 84.8287 80.6301 77.5803 82.0114 90.4043 95.8342 98.1444 98.2972 97.3032 95.8189 94.1574 92.4864 90.9191 89.5732 88.5303 87.7882 87.2986 86.9959 86.8193 86.7227 86.675 86.6568 86.6558 86.665 86.681 86.7058 121.225 106.724 96.5705 89.7332 84.692 80.3353 76.509 81.1704 90.5027 96.3024 98.6896 98.7574 97.6337 96.0344 94.268 92.4911 90.8039 89.3412 88.2169 87.432 86.9335 86.6429 86.487 86.4118 86.3824 86.3778 86.3857 86.3987 86.4129 86.4618 121.691 106.635 96.324 89.5574 84.5506 80.0485 75.2782 80.1841 90.6301 96.8322 99.3003 99.2667 97.9928 96.2662 94.3867 92.4969 90.6752 89.0736 87.8529 87.0183 86.5135 86.2428 86.1161 86.0694 86.0633 86.0756 86.0947 86.1145 86.133 86.1561 122.152 106.556 96.0462 89.3654 84.4051 79.7829 73.8793 79.034 90.7943 97.4282 99.9822 99.8282 98.3798 96.5134 94.5123 92.5031 90.5337 88.7657 87.4303 86.5361 86.0291 85.7894 85.7033 85.694 85.7166 85.7479 85.7783 85.8048 85.828 85.8502 122.593 106.502 95.7331 89.1557 84.255 79.5541 72.3249 77.697 91.0064 98.0946 100.741 100.446 98.7938 96.7742 94.6434 92.5065 90.379 88.4132 86.9383 85.9701 85.4681 85.2758 85.2457 85.2851 85.343 85.3956 85.4364 85.4673 85.4922 85.5149 123.005 106.476 95.3798 88.9256 84.0982 79.379 70.6394 76.135 91.2829 98.8388 101.583 101.122 99.2324 97.0461 94.7789 92.4967 90.2002 88.0091 86.3628 85.2992 84.814 84.6946 84.7409 84.8439 84.9464 85.0236 85.0745 85.108 85.1324 85.1537 123.371 106.467 94.9808 88.6716 83.9295 79.2758 68.7662 74.3127 91.6493 99.6679 102.513 101.863 99.6917 97.3244 94.921 92.4507 89.9475 87.5513 85.687 84.4919 84.045 84.0392 84.1889 84.3732 84.5338 84.6419 84.7044 84.7398 84.7626 84.7805 123.626 106.462 94.5292 88.3887 83.7397 79.2622 66.5634 72.2012 92.1476 100.588 103.536 102.672 100.164 97.6004 95.0796 92.3368 89.5991 87.0791 84.8967 83.501 83.1316 83.3099 83.5961 83.88 84.118 84.2689 84.3455 84.3813 84.3992 84.4106 123.711 106.458 94.0166 88.0692 83.5125 79.3473 63.9267 69.8037 92.8385 101.592 104.654 103.553 100.634 97.8601 95.2769 92.1522 89.306 86.616 83.9804 82.2584 82.0369 82.5209 82.9862 83.3884 83.7233 83.9268 84.0145 84.0424 84.0469 84.0453 123.53 106.46 93.432 87.7003 83.2248 79.5229 60.8724 67.1057 93.773 102.681 105.868 104.511 101.075 98.0963 95.5642 91.9584 89.1504 86.1824 82.9439 80.6685 80.6989 81.6707 82.3794 82.9483 83.3925 83.6362 83.7191 83.7226 83.7007 83.6785 122.951 106.464 92.7608 87.272 82.8506 79.7459 57.6675 64.2874 94.9399 103.864 107.171 105.547 101.44 98.3307 95.9084 91.8589 89.104 85.8461 81.8158 78.4446 78.836 80.6853 81.7332 82.57 83.1534 83.4191 83.4665 83.4171 83.3467 83.2937 121.799 106.468 91.9842 86.616 82.4619 79.9332 1.65938 63.4773 96.2816 105.169 108.552 106.659 101.648 98.5912 96.1787 91.9577 89.1688 85.6944 80.6683 74.7417 75.5521 79.5083 81.0194 82.2695 83.0656 83.3212 83.2759 83.1199 82.9567 82.8527 119.825 106.47 91.0769 86.2705 82.5434 79.7453 0.105939 35.7918 97.8712 106.642 109.987 107.844 101.475 98.8847 96.5807 92.3254 89.365 85.7789 79.832 70.3702 71.2543 78.1492 79.9623 82.1274 83.2971 83.4101 83.1722 82.8343 82.4739 82.2662 116.627 106.482 90.0028 86.1794 81.6877 84.7342 -0.167663 5.70085 99.6112 108.269 111.44 109.077 100.435 99.2235 97.277 92.9526 89.6643 86.0697 80.2891 68.2639 67.8611 76.4351 77.7307 82.3193 84.3315 83.6211 83.1669 82.6539 81.7679 81.2606 111.767 106.53 88.6971 86.685 70.1261 -0.293504 -0.388006 7.77764 101.177 109.982 112.867 110.286 98.254 99.4918 98.0683 93.7015 90.0565 86.4505 82.659 18.8518 0.377813 0.29756 0.271954 0.254977 0.253588 0.262306 0.248814 0.250762 0.248324 0.247429 105.189 106.654 86.9685 87.941 -0.150426 -0.291435 -0.595734 -2.54144 101.606 111.454 114.213 111.353 97.8916 100.147 99.0147 94.563 90.7137 86.7065 27.1347 0.548372 0.295834 0.283663 0.268474 0.259069 0.256161 0.255147 0.253143 0.25161 0.250155 0.248711 83.7634 106.936 84.4069 -0.15489 -0.163516 -0.268017 -0.629172 -1.50772 102.287 112.369 115.413 112.178 99.7451 101.819 99.7855 95.5921 91.8128 76.6368 0.333437 0.421865 0.23663 0.252707 0.256921 0.257507 0.256843 0.256122 0.254612 0.251864 0.251579 0.255424 54.1978 107.558 57.7244 -0.125063 -0.172602 -0.25524 -0.518921 -1.38291 104.091 114.143 116.322 112.568 102.388 104.618 99.8156 97.0868 89.6971 0.27804 0.234515 0.22647 0.207519 0.222927 0.240166 0.251144 0.255566 0.256635 0.25702 0.276459 0.246443 0.262216 0.803689 108.708 -0.0261299 -0.117238 -0.174311 -0.2497 -0.576575 -1.30341 106.182 114.931 116.978 112.43 104.153 106.482 99.0778 99.8651 -0.985151 0.19526 0.184578 0.195086 0.181389 0.210748 0.222451 0.239603 0.251237 0.254092 0.266261 0.253124 0.250641 0.244498 88.263 88.3138 88.3857 88.4841 88.6158 88.789 89.0139 89.3033 89.6726 90.1403 90.7259 91.4473 92.3144 93.3209 94.4338 95.586 96.6639 97.4764 97.7194 96.9764 94.7714 90.9182 86.5347 84.1376 84.7196 87.6748 92.3479 97.6727 102.836 106.386 88.2517 88.3073 88.3852 88.491 88.6318 88.8165 89.0557 89.3632 89.7553 90.2511 90.8703 91.6297 92.5364 93.5782 94.714 95.8668 96.9081 97.6223 97.6766 96.6294 94.0107 89.8211 85.6525 83.9944 85.2302 88.6858 93.6287 98.9953 103.993 106.719 88.2082 88.2641 88.342 88.4478 88.5885 88.7729 89.012 89.32 89.7134 90.2118 90.8356 91.6021 92.5189 93.5733 94.7232 95.89 96.9454 97.6737 97.7407 96.6966 94.052 89.7898 85.5547 83.9228 85.1942 88.6671 93.6235 98.993 104.005 106.742 88.1424 88.1986 88.2766 88.3822 88.5224 88.7064 88.9455 89.2542 89.6498 90.1526 90.7838 91.5617 92.4951 93.5712 94.7451 95.935 97.0106 97.7566 97.8383 96.7937 94.1059 89.7336 85.4001 83.8111 85.1369 88.6379 93.6165 98.9912 104.028 106.785 88.0542 88.1109 88.1891 88.2945 88.4342 88.6176 88.8567 89.1665 89.5652 90.074 90.7154 91.5092 92.4657 93.5718 94.779 96.0004 97.1018 97.8688 97.9677 96.9216 94.1768 89.6559 85.1872 83.6595 85.0585 88.5979 93.6075 98.9897 104.06 106.848 87.9425 87.9999 88.0786 88.1839 88.3232 88.506 88.7451 89.0565 89.4592 89.9757 90.6299 91.4438 92.4297 93.574 94.8226 96.0822 97.2154 98.0085 98.1289 97.0819 94.2664 89.5552 84.9108 83.4683 84.9595 88.547 93.5967 98.9882 104.104 106.932 87.8065 87.865 87.9443 88.0498 88.1887 88.3711 88.6104 88.9236 89.331 89.8567 90.5263 91.3645 92.3864 93.5776 94.875 96.1786 97.3494 98.1751 98.3223 97.2761 94.3765 89.4294 84.5643 83.2378 84.8405 88.4853 93.5841 98.9865 104.157 107.037 87.6461 87.7059 87.7859 87.8916 88.0302 88.2121 88.4516 88.7669 89.1797 89.7159 90.4032 91.2697 92.3346 93.5822 94.9364 96.2892 97.5036 98.3683 98.549 97.5062 94.509 89.276 84.139 82.969 84.7022 88.4126 93.5699 98.9841 104.221 107.164 87.4613 87.5221 87.6021 87.7083 87.8469 88.0283 88.2678 88.5853 89.004 89.5518 90.259 91.1576 92.2727 93.5882 95.0071 96.4141 97.6778 98.5885 98.8099 97.7743 94.6664 89.0921 83.6239 82.6634 84.5452 88.3288 93.5544 98.9806 104.295 107.314 87.2522 87.313 87.3899 87.4986 87.6378 87.8186 88.058 88.3775 88.8025 89.3628 90.0919 91.0258 92.1986 93.5958 95.0873 96.5529 97.8719 98.8356 99.1064 98.083 94.8517 88.8739 83.0045 82.3236 84.3701 88.2335 93.5378 98.9753 104.379 107.488 87.0441 87.2458 87.1439 87.2617 87.4022 87.5823 87.821 88.1423 88.5736 89.1471 89.8996 90.8717 92.1093 93.6058 95.1768 96.705 98.0861 99.1099 99.4393 98.4354 95.0684 88.617 82.262 81.9532 84.1777 88.1263 93.5205 98.9678 104.473 107.684 86.7576 86.8385 86.8821 86.9978 87.1401 87.319 87.556 87.8784 88.3157 88.9027 89.6799 90.6921 91.9997 93.6196 95.2745 96.869 98.32 99.4116 99.81 98.8348 95.3209 88.3162 81.3715 81.5576 83.9681 88.0065 93.503 98.9571 104.576 107.905 86.4767 86.5257 86.5977 86.7074 86.85 87.0269 87.2615 87.5846 88.0271 88.6271 89.4303 90.484 91.861 93.639 95.377 97.043 98.5739 99.7408 100.22 99.2851 95.6141 87.965 80.2984 81.1441 83.7409 87.8727 93.4859 98.9424 104.687 108.149 86.1797 86.2256 86.2918 86.3918 86.5286 86.7028 86.9361 87.2598 87.7061 88.3176 89.148 90.2453 91.6744 93.6642 95.4757 97.2244 98.8479 100.098 100.671 99.7906 95.9535 87.5553 78.9896 80.7224 83.4947 87.7234 93.4701 98.9226 104.807 108.419 85.8758 85.9134 85.9674 86.0492 86.1737 86.3467 86.5799 86.9041 87.3509 87.9703 88.8289 89.976 91.3948 93.6832 95.553 97.4103 99.1428 100.482 101.164 100.356 96.3446 87.0768 77.3625 80.3063 83.2263 87.5561 93.4572 98.8967 104.935 108.715 85.5405 85.5744 85.6136 85.6819 85.7879 85.9629 86.1962 86.5182 86.9594 87.58 88.4671 89.6785 90.9455 93.6265 95.5758 97.5989 99.4605 100.894 101.702 100.985 96.7911 86.5156 75.3176 79.9189 82.9298 87.3674 93.4493 98.8634 105.069 109.037 85.1778 85.2146 85.3141 93.1894 85.454 85.5624 85.7892 86.1031 86.5292 87.1392 88.053 89.353 90.4778 93.2929 95.4949 97.7913 99.8035 101.332 102.286 101.685 97.2901 85.858 72.7836 79.5907 82.5948 87.1525 93.4498 98.8213 105.212 109.384 84.7992 84.8239 84.8497 84.9249 84.9273 85.1361 85.3606 85.6602 86.0573 86.6368 87.572 88.9991 90.3725 92.5052 95.2742 97.9955 100.176 101.795 102.918 102.463 97.8351 85.1092 69.5829 79.354 82.2036 86.9052 93.4635 98.7693 105.351 109.757 84.4213 84.4355 84.4573 84.4945 84.5482 84.7044 84.9119 85.1928 85.5418 86.0567 87.0018 88.5955 90.4185 91.4282 94.9688 98.2281 100.584 102.281 103.598 103.324 98.4376 84.3354 65.3793 79.2647 81.7267 86.6173 93.4971 98.7062 105.483 110.153 84.0439 84.0448 84.0491 84.0643 84.1255 84.2646 84.4434 84.7104 84.9835 85.3745 86.3085 88.1166 90.405 90.4842 94.7705 98.514 101.035 102.783 104.329 104.278 99.1371 83.6941 59.8963 79.4068 81.1214 86.2779 93.559 98.6307 105.606 110.57 83.6617 83.6484 83.6327 83.6192 83.6566 84.0298 83.9859 84.2259 84.3827 84.5464 85.44 87.5713 90.2806 90.1562 94.9041 98.8785 101.536 103.291 105.111 105.337 99.999 83.3578 53.0425 79.8919 80.3266 85.8785 93.6604 98.5416 105.713 110.999 83.2627 83.2455 83.2222 83.1874 83.1753 83.3473 83.5836 83.7468 83.7298 83.4882 84.315 86.9661 90.0968 90.5913 95.4349 99.3359 102.097 103.788 105.947 106.517 101.018 83.4661 44.515 80.7744 79.2581 85.4428 93.8152 98.4378 105.794 111.433 82.8185 82.8311 82.8177 82.7272 82.6766 82.8654 83.1998 83.2893 83.041 81.96 82.7009 86.3271 89.926 91.4896 96.1822 99.8832 102.733 104.242 106.838 107.839 102.224 84.1763 11.9817 81.7054 77.745 85.0683 94.0366 98.3179 105.837 111.853 82.2706 82.4374 82.4837 82.1907 81.9827 82.3012 82.9443 82.8694 82.423 79.4225 80.3794 85.7096 89.7686 92.4552 96.8588 100.515 103.46 104.604 107.792 109.321 103.634 85.5683 9.1104 69.1187 75.383 85.1349 94.3348 98.1812 105.823 112.235 81.3905 82.2342 82.6058 81.4864 80.8864 81.5548 82.9339 82.1447 82.2931 76.3577 78.4344 85.2275 89.6029 93.277 97.3449 101.26 104.308 104.789 108.811 110.961 105.342 90.0874 -1.34596 0.293543 34.9254 85.3825 94.717 98.0298 105.716 112.54 0.394691 2.67505 5.85298 8.93532 16.3921 31.7566 61.4141 73.8427 83.7685 72.793 77.1006 84.9867 89.379 94.0367 98.0303 102.194 105.323 104.652 109.884 112.707 107.271 95.3903 -1.01098 0.226239 0.104597 86.6548 95.1838 97.8739 105.493 112.709 0.245634 0.240282 0.231959 0.231817 0.234371 0.232936 0.235948 0.212185 0.209831 0.276614 41.5871 84.7695 88.9078 94.9347 99.0282 103.352 106.565 103.944 110.967 114.409 108.868 98.0109 -0.595667 0.170025 0.0747053 68.4881 95.7562 97.7574 105.128 112.654 0.257224 0.250427 0.24196 0.234354 0.225559 0.23197 0.224779 0.217085 0.206205 0.225091 0.232404 56.3658 87.0403 96.2357 99.8844 104.661 108.137 102.475 112.035 116.061 111.29 72.3128 -0.292785 0.1239 0.0488184 0.119852 96.4153 97.7984 104.789 112.237 0.246367 0.242608 0.237881 0.230663 0.223253 0.221239 0.218968 0.210601 0.174481 0.147042 0.134082 0.0255472 80.1655 98.9413 99.883 106.074 109.996 101.68 113.496 116.732 114.132 48.7327 -0.105585 0.0932652 0.0361472 0.159041 89.6348 98.1273 104.743 111.239 0.23934 0.240157 0.237889 0.226717 0.212371 0.201469 0.207201 0.194595 0.13874 0.0943904 0.0857826 0.0891629 -0.157719 105.062 98.8154 107.462 111.331 103.159 114.673 117.344 114.953 5.98993 -0.030917 0.072975 0.0312262 0.132057 -0.0754823 98.6285 104.678 109.328 203.974 110.512 0.00507776 -0.110706 -0.172596 -0.246751 -0.634367 -1.28782 108.558 114.955 118.166 112.689 105.046 106.846 95.273 101.393 0.728958 0.136379 0.173804 0.138844 0.161515 0.176767 0.203868 0.227752 0.245351 0.250711 0.249311 0.248123 0.253082 0.246623 1.00646 111.638 0.0120027 -0.106104 -0.170495 -0.244397 -0.581355 -1.48717 115.735 115.156 119.271 113.735 104.693 105.829 91.8759 0.576003 0.84009 0.0852476 0.510946 0.122972 0.149219 0.164536 0.190298 0.219798 0.240252 0.24999 0.248447 0.244077 0.0617057 2.12683 1.17028 28.0513 0.0104103 -0.100844 -0.167705 -0.241723 -0.633565 -1.20876 121.588 114.447 120.538 115.543 105.249 104.703 91.256 0.394674 0.905387 0.0819898 0.477023 0.112009 0.137362 0.151789 0.177467 0.21054 0.233551 0.255236 0.244456 0.240854 0.0610743 6.39569 0.896821 0.137357 0.00806703 -0.0950902 -0.164196 -0.238687 -0.695669 -0.850959 130.833 114.378 121.708 118.226 105.756 104.803 0.504938 0.646971 2.21041 -0.0650494 0.494378 0.107815 0.126462 0.141689 0.164189 0.199926 0.225361 0.235118 0.239053 0.237103 0.226319 0.263064 0.955592 0.096694 0.00621921 -0.088975 -0.159928 -0.233745 -0.526713 -0.542666 80.2363 116.369 123.256 121.515 107.378 56.7983 0.413618 0.436042 4.92738 -0.125616 0.152009 0.105794 0.117809 0.165305 0.147821 0.188357 0.214679 0.233105 0.230603 0.230265 0.229742 0.231459 0.479426 0.0845346 0.00495477 -0.0828026 -0.154891 -0.226425 -0.600708 -0.297522 49.5828 119.272 125.489 124.338 108.737 0.171724 0.343921 0.328889 5.14338 -0.021642 0.0835081 0.103274 0.213369 0.124236 0.1418 0.17682 0.202624 0.215354 0.219315 0.219267 0.217972 0.215206 0.391722 0.0748216 0.0042351 -0.0768995 -0.149113 -0.216437 -0.482426 -0.204373 -0.63409 118.349 128.234 126.522 -1.67575 0.222268 0.304282 0.238392 0.286545 0.035427 0.0864364 0.102267 0.21078 0.115054 0.128673 0.165496 0.193502 0.200288 0.206182 0.206734 0.20576 0.202984 0.338118 0.0667331 0.00385612 -0.0714827 -0.142643 -0.206189 -0.411777 -0.177915 -0.305831 118.063 132.519 132.12 0.527035 0.223997 0.301069 0.211373 0.423326 0.087533 0.0973019 0.111795 0.159701 0.113499 0.128754 0.154631 0.193962 0.191084 0.192812 0.193361 0.192401 0.191209 0.268812 0.0595115 0.00360377 -0.0666529 -0.135534 -0.192557 -0.394584 -0.174204 -0.251035 0.367601 134.243 1.61767 1.65606 0.203239 0.211388 0.19622 0.452637 0.124217 0.108905 0.111946 0.113689 0.11744 0.129239 0.147022 0.163104 0.175177 0.178199 0.178701 0.17827 0.177786 0.203217 0.0533153 0.00324331 -0.0624012 -0.127849 -0.177845 -0.294145 -0.116055 -0.244502 0.342566 0.151274 -0.0508548 0.927373 0.192325 0.212997 0.1763 0.203335 0.149416 0.119885 0.117328 0.11849 0.123907 0.131807 0.141876 0.152169 0.15848 0.161021 0.161878 0.162592 0.163357 0.165078 0.0478717 0.00263149 -0.0586067 -0.119639 -0.161001 -0.195293 0.0452926 -0.525142 0.146272 0.12004 -0.0944171 0.271467 0.177275 0.21432 0.169447 0.157238 0.146617 0.129863 0.123074 0.122481 0.133408 0.13593 0.137765 0.140618 0.14192 0.143241 0.143837 0.145781 0.14771 0.145472 0.0430592 0.00176441 -0.0550849 -0.110958 -0.143469 -0.129007 0.00865289 -0.558569 0.0743806 0.123519 -0.0733779 0.0698182 0.157415 0.199007 0.163894 0.159386 0.15189 0.139756 0.127971 0.124588 0.132036 0.132177 0.132665 0.130238 0.128381 0.128136 0.150516 0.130817 0.133516 0.0986349 0.0386992 0.000745159 -0.0516443 -0.10187 -0.125352 -0.0821174 0.0447535 -0.416715 0.0332045 0.12942 -0.0456418 0.0594973 0.149425 0.187118 0.152969 0.153101 0.158469 0.146983 0.149552 0.226983 0.125261 0.130396 0.127154 0.124982 0.115816 0.112821 0.118862 0.118795 0.122099 0.0816605 0.034726 -0.00028226 -0.048133 -0.0924429 -0.107442 -0.0349283 0.0665344 -0.187081 0.0111074 0.0329266 -0.0184823 0.0500951 0.171043 0.16863 0.142644 0.153638 0.160131 0.154644 0.458329 0.153264 0.142732 0.13993 0.126495 0.115483 0.108514 0.105683 0.106426 0.110207 0.114646 0.0911094 0.0310528 -0.00119835 -0.0444764 -0.0827764 -0.0899624 -0.00882975 0.101313 -0.0579243 -0.0201608 0.0347017 -0.00274471 0.0418608 0.13101 0.124861 0.128939 0.148113 0.159331 0.16216 0.159584 0.164345 0.152345 0.141923 0.128584 0.116846 0.111608 0.106167 0.116431 0.112046 0.114146 0.0622523 0.0276051 -0.00194472 -0.0406583 -0.0730001 -0.0735123 0.0130126 0.131242 0.000945064 -0.13196 0.582354 0.00979975 0.0324441 0.0724579 0.0972178 0.113184 0.135544 0.16266 0.158791 0.158995 0.160474 0.151887 0.143145 0.129384 0.118668 0.112071 0.109458 0.109329 0.111795 0.116063 0.07132 0.024332 -0.00251203 -0.0366997 -0.0632786 -0.058408 0.0159939 0.114087 0.0106431 -0.352503 0.469757 0.0836719 0.0812832 0.0385932 0.0701371 0.0982217 0.124722 0.146823 0.148457 0.151886 0.149178 0.146461 0.137603 0.126499 0.118889 0.114598 0.112598 0.112414 0.114561 0.119163 0.0604311 0.0211298 -0.0029221 -0.0326437 -0.0538017 -0.0450163 0.0170156 0.102192 -0.00872514 -0.187398 0.220623 0.030432 0.0054869 0.00784455 0.0378305 0.0809595 0.111848 0.188589 0.133166 0.144098 0.134027 0.132737 0.128858 0.122915 0.119586 0.12845 0.111204 0.108704 0.106535 0.102236 0.0720138 0.0179997 -0.00320466 -0.0285489 -0.0447681 -0.0334945 0.0197854 0.0856661 -0.035279 -0.0204973 0.214976 0.0304057 -0.0228593 -0.0376917 -0.0045785 0.0458134 0.0849506 0.193487 0.111801 0.117044 0.119993 0.12109 0.119717 0.11899 0.116254 0.11243 0.108625 0.106989 0.105735 0.104919 0.0701368 0.0147868 -0.0033833 -0.0244894 -0.0363647 -0.0238973 0.0211804 0.06726 -0.0375344 0.0359687 0.904404 0.0188548 -0.0457367 -0.0785037 -0.0505065 0.00831277 0.0581875 0.0822336 0.0945917 0.102329 0.107175 0.110748 0.108773 0.111484 0.109612 0.108057 0.107953 0.109892 0.108169 0.110978 0.0724533 0.0113079 -0.0034774 -0.0205514 -0.0287554 -0.0162359 0.0198535 0.0537051 0.0279743 0.0940586 0.776372 0.00254515 -0.0552568 -0.0993308 -0.0826647 -0.0218259 0.0346076 0.0643449 0.0798045 0.0889065 0.0945677 0.0977921 0.207315 0.108284 0.101054 0.101583 0.102944 0.10503 0.108108 0.12005 0.0801692 0.00730575 -0.00349607 -0.0168249 -0.0220707 -0.0104149 0.0180673 0.0440231 0.0456549 0.094662 0.0714385 0.0141123 -0.0478783 -0.0958227 -0.087359 -0.0311034 0.0235283 0.0585116 0.0710556 0.0785167 0.0837615 0.0866471 0.0883014 0.0905996 0.0925003 0.0940863 0.0956766 0.0973193 0.0989277 0.100647 0.0948712 0.00256517 -0.00342939 -0.0133969 -0.0163992 -0.00624204 0.0151785 0.0338313 0.0396444 0.0667911 0.0537109 0.0304674 -0.0319856 -0.0639361 -0.0588945 -0.0144774 0.0289649 0.0540908 0.0712039 0.0764495 0.0756235 0.0781394 0.0804453 0.0826636 0.084636 0.0863515 0.0879217 0.0894358 0.090929 0.092392 0.0816798 -0.00277765 -0.00324636 -0.0103384 -0.0117884 -0.00328157 0.010554 0.0214146 0.0182948 0.0371442 0.0326766 0.018445 -0.00934284 -0.0349211 0.0425953 0.0140868 0.0405307 0.0572087 0.0654674 0.0745931 0.066977 0.0686117 0.0701183 0.0719462 0.0738619 0.07564 0.0771853 0.0784736 0.0795166 0.0803331 1.10789 -0.00689818 -0.00290431 -0.00769619 -0.00821981 -0.00260433 0.00375048 0.0043016 -0.0274324 0.00255201 0.0135485 0.00695397 -0.00461786 -0.00449466 0.0112788 0.0270812 0.0426636 0.0543221 0.0617489 0.0869575 0.0820609 0.0549276 0.0548306 0.0552857 0.056564 0.0592517 0.0602032 0.0614534 0.0623073 0.0627596 0.053182 -0.00546192 -0.00239731 -0.00548875 -0.00561752 -0.00261059 -0.0034087 -0.0210367 -0.0712984 -0.0313193 -0.00234811 0.00356995 0.00228075 0.00592989 0.0150306 0.0252602 0.0771714 0.0434521 0.0436255 0.0409715 0.0393794 0.0365786 0.0344489 0.0326607 0.0382153 0.0342691 0.0351631 0.036439 0.0364024 0.0374614 0.0456434 -0.00189112 -0.00179595 -0.00369857 -0.00380758 -0.0032162 -0.00563902 -0.010475 -0.130884 -0.0695143 -0.0128044 0.000741621 0.00494346 0.184837 0.0150728 0.0177997 0.0728885 0.0303101 0.0782907 0.0590639 0.0301398 0.0225386 0.0123007 0.00819654 0.00557005 0.00541581 0.00694345 0.00874037 0.0147323 0.0153939 0.0279622 0.000239472 -0.00117674 -0.00228032 -0.00251155 -0.00338969 -0.0111331 -0.0328391 -0.0785928 -0.0561324 -0.0172347 -0.0033772 0.00259119 0.00677965 0.016228 0.00934023 0.0101714 0.0311585 0.0151575 0.0199799 0.018709 0.0325851 -0.0192908 -0.0162948 -0.0117027 -0.00800588 -0.0050798 0.000906493 0.0114515 0.0569449 0.0140001 0.000872397 -0.000620737 -0.00117913 -0.00145548 -0.00274101 -0.0082605 0.0372561 0.0484001 -0.0350279 -0.0190191 -0.0101538 -0.00430517 -0.000204222 0.00197499 0.00492153 0.00178917 0.000327973 0.00255894 0.00151713 -0.00133775 0.00878567 -0.00152723 -0.00347201 -0.00273803 -0.00525545 -0.0054898 -0.00682319 -0.00680156 -0.00400527 0.00467707 0.000498634 -0.000186006 -0.000348858 -0.000478672 -0.00118246 -0.00324816 0.0211499 0.00902498 -0.0208046 -0.0241761 -0.0202406 -0.0146051 -0.00987019 -0.00687992 -0.00577573 -0.00645689 -0.0076182 -0.00803931 -0.00699252 -0.00510009 -0.00247845 -0.00129498 0.000484024 0.00154982 0.00153203 0.00766221 0.00724853 0.00214315 0.00170246 0.22646 0.240979 0.456037 0.225376 0.273902 0.180541 0.196573 0.18164 0.133445 0.0735345 0.067904 0.089362 0.162557 109.302 96.8671 108.526 112.166 105.339 115.147 115.978 113.792 -0.190457 -0.0363705 0.0609269 0.0301048 0.116933 -0.0977375 0.292823 104.647 106.501 0.230464 0.244447 0.267705 0.226835 0.289034 0.114627 0.191301 0.174708 0.123592 0.0644781 0.0520245 0.0758705 0.164559 0.0821491 94.4376 108.883 113.272 106.507 115.679 115.127 116.667 -0.225903 -0.048329 0.0544195 0.0299798 0.10888 -0.105887 0.100472 100.845 106.035 0.224538 0.240014 0.277083 0.199586 0.224389 0.172211 0.187475 0.168765 0.111546 0.0614168 0.0510928 0.0736437 0.22424 1.11604 86.4227 108.246 113.573 108.159 116.901 115.186 118.584 -0.381039 -0.054349 0.0483163 0.0301009 0.101047 -0.106437 0.0795086 2.49439 106.813 0.217053 0.217392 4.13072 0.186075 0.207512 0.19021 0.182644 0.163902 0.112492 0.0638973 0.0547007 0.0771069 0.199567 0.748237 0.0860842 106.089 115.933 109.856 118.005 114.806 119.551 0.174344 -0.0512505 0.0424984 0.0302931 0.0932913 -0.0998625 0.0626487 0.0404298 108.396 0.215344 0.202393 1.85712 0.171466 0.197413 0.193286 0.177126 0.160163 0.118332 0.0747971 0.0641948 0.0811308 0.109281 0.66147 0.432119 35.6294 116.582 110.983 118.696 115.603 99.7404 0.140638 -0.0380195 0.0370516 0.0304302 0.0855475 -0.0885597 0.0479511 0.0369527 71.2983 0.208228 0.200459 0.193317 0.180251 0.224679 0.213631 0.171007 0.157821 0.126709 0.0908238 0.0778061 0.0863015 0.113434 0.139423 0.165161 0.430533 119.57 111.329 119.755 118.641 7.19605 0.295487 -0.030772 0.0320279 0.0304141 0.0778034 -0.0753018 0.0345334 0.0359239 -0.305257 0.199097 0.194309 0.18881 0.183 0.185125 0.180339 0.166609 0.156759 0.134891 0.10812 0.092869 0.0937924 0.107694 0.109189 0.0730845 0.231065 -0.387973 110.294 121.58 122.639 -0.044244 0.138606 -0.048418 0.0274282 0.0301697 0.0701992 -0.0618714 0.022851 0.0141737 -0.241468 0.188787 0.18441 0.182281 0.178735 0.176875 0.170281 0.163211 0.156083 0.140247 0.121008 0.107413 0.0980555 0.109875 0.101468 0.0417003 0.135776 -0.202612 -0.119261 92.3699 50.89 0.0847776 0.0540705 -0.0548494 0.0233918 0.029667 0.0627977 -0.0495516 0.0132463 0.0102651 -0.179917 0.176711 0.191027 0.182602 0.171493 0.168545 0.163803 0.157784 0.155642 0.141349 0.12997 0.118753 0.108443 0.0910147 0.0757475 0.0505505 0.0776446 -0.083086 -0.124509 -0.184289 -0.287729 -0.234647 -0.0640084 -0.0423235 0.0199855 0.0289024 0.0556964 -0.0389591 0.0056669 0.00918193 -0.12677 0.164158 0.165708 0.181125 0.16108 0.160567 0.157638 0.15327 0.151257 0.156377 0.130613 0.130523 0.103726 0.0876296 0.0719332 0.204233 0.0445529 -0.0101292 -0.153995 -0.178562 -0.248759 -0.306275 -0.136383 -0.0310507 0.0171608 0.0278942 0.0489919 -0.0303134 -0.000180538 0.0081035 -0.084748 0.149561 0.151167 0.151584 0.151627 0.153482 0.151943 0.148915 0.145066 0.139591 0.128607 0.182564 0.104992 0.0835918 0.0673942 0.173215 0.0273355 -0.0197157 -0.220092 -0.141545 -0.273672 -0.355882 -0.133853 -0.0199323 0.0148423 0.0266613 0.0427635 -0.0234085 -0.00461729 0.00725744 -0.0533883 0.136803 0.139577 0.142617 0.145026 0.147622 0.151225 0.14469 0.141281 0.135226 0.134279 0.118452 0.105751 0.0801585 0.079792 0.0568534 0.0170384 0.00161137 -0.183583 -0.106429 -0.26746 -0.462837 -0.152174 -0.00623406 0.0129185 0.0252054 0.0370682 -0.0178607 -0.00740782 0.00652628 -0.0312536 0.126221 0.130287 0.134799 0.139372 0.146783 0.167382 0.139814 0.141128 0.139119 0.12456 0.115067 0.12224 0.07677 0.0575969 0.0317468 0.00549801 -0.00960588 -0.115215 -0.153436 -0.136514 -0.530197 -0.00265557 -0.00826537 0.0112821 0.023534 0.0319306 -0.0132812 -0.00882414 0.0059142 -0.0165631 0.119048 0.124359 0.1361 0.134359 0.141658 0.137534 0.137819 0.137363 0.130725 0.123272 0.129239 0.128671 0.075054 0.0523939 0.0252371 -0.00542197 0.0222494 -0.0932991 -0.122347 -0.211166 -0.53745 -0.276823 -0.00465987 0.00985512 0.021661 0.0273449 -0.00944535 -0.00913089 0.00533795 -0.00752409 0.118594 0.125609 0.128414 0.132332 0.135691 0.136 0.136786 0.138229 0.129394 0.116834 0.104807 0.100548 0.0758523 0.121444 0.0161245 -0.0158609 -0.0277561 -0.106186 -0.18625 -0.152797 -0.343906 -0.15085 -0.00791461 0.00856463 0.0196129 0.0232765 -0.00626545 -0.00861456 0.00476561 -0.00247863 0.120632 0.127651 0.131589 0.135218 0.135892 0.134894 0.134907 0.15239 0.124622 0.111067 0.100417 0.114989 0.0856338 0.107308 0.00781916 -0.0267384 -0.0623961 -0.101079 -0.174568 -0.112428 -0.298592 -0.117116 -0.00928526 0.00732308 0.0174272 0.0196726 -0.00368277 -0.00753649 0.00424675 -2.19327e-05 0.126776 0.135399 0.160336 0.13872 0.141116 0.146225 0.147987 3.07274 0.118606 0.1062 0.097206 0.0817339 0.161911 0.0489436 0.00225747 -0.0300814 -0.0697206 -0.0182524 -0.16588 -0.128403 -0.17117 -0.0197564 -0.00833024 0.00604819 0.0151491 0.0164812 -0.00169258 -0.00613698 0.00377436 0.00098044 0.0918208 0.0784297 0.0754727 0.0917169 0.123952 0.340239 0.127417 0.117098 0.119795 0.106742 0.0967146 0.0813162 0.0568663 0.0415244 -0.00197515 -0.0392018 -0.0611996 0.94317 -0.144864 -0.10023 -0.167269 0.00798142 -0.00746071 0.0046728 0.0128267 0.0136562 -0.000275758 -0.00463379 0.00329505 0.0012207 0.104531 0.10603 0.110498 0.11524 0.118078 0.125065 0.121195 0.11938 0.118574 0.112025 0.099049 0.0807136 0.0560147 0.0335742 -0.00712991 -0.0446603 -0.0664843 0.967809 -0.0539439 -0.0908771 -0.16215 -0.00126344 -0.00753188 0.0031488 0.0105074 0.0111574 0.000658734 -0.00324034 0.00284376 0.00114734 0.110578 0.113856 0.117863 0.121918 0.125708 0.129204 0.130524 0.129559 0.124976 0.116112 0.0998328 0.0769715 0.0488847 0.0176933 -0.0129517 -0.0465215 -0.066699 0.474982 0.0065157 -0.115192 -0.116264 -0.0188641 -0.0086986 0.00146729 0.00823578 0.00894999 0.00121154 -0.00212343 0.00241876 0.000979286 0.11474 0.11534 0.118818 0.122753 0.126791 0.133126 0.13807 0.13215 0.126229 0.113502 0.0932812 0.065647 0.0331346 -0.00106176 -0.0295998 -0.0509883 -0.071796 0.0497721 -0.0517599 -0.0730324 -0.099639 -0.028696 -0.010624 -0.000338747 0.0060543 0.00700445 0.00147102 -0.00124184 0.00201341 0.000775635 0.103527 0.10676 0.110264 0.114126 0.11823 0.124074 0.124044 0.12183 0.113365 0.0966256 0.0763416 0.0419404 0.00230115 -0.0326049 -0.0552668 -0.0685811 -0.0713938 -0.0190963 0.131819 -0.0562905 -0.0684238 -0.0325834 -0.0127475 -0.0021912 0.0040056 0.00529576 0.00151405 -0.000592512 0.00162955 0.000586735 0.0939332 0.0956952 0.097674 0.0997844 0.102019 0.103123 0.10194 0.0956558 0.0809687 0.0573988 0.027351 0.0188383 -0.0174694 -0.0931041 -0.0992378 -0.0915877 -0.0841857 0.211665 0.60253 -0.0352733 -0.0512685 -0.0337193 -0.014682 -0.00398447 0.00213819 0.0038065 0.00140642 -0.000152469 0.00127597 0.000422659 0.0809953 0.0815172 0.0817801 0.0815532 0.0802847 0.076674 0.068941 0.0549938 0.0261493 -0.00789123 -0.059666 -0.120239 -0.175812 -0.198204 -0.16151 -0.125664 -0.0824413 -0.0279007 -0.0220527 -0.0661457 -0.0483999 -0.0343388 -0.0162555 -0.00558942 0.000513483 0.00252945 0.00120381 0.000113336 0.000968571 0.000285293 0.0628249 0.0623439 0.0609327 0.0579084 0.0521845 0.0421041 0.027452 0.00652528 -0.0301971 -0.0873636 -0.174218 -0.258629 -0.326779 -0.339987 -0.275923 -0.161383 -0.0808525 -0.0259741 0.372202 -0.0380956 -0.0466758 -0.025925 -0.0174331 -0.00685056 -0.000810111 0.00146798 0.000948852 0.000243386 0.000722837 0.000179119 0.0381815 0.0381624 0.0370462 0.0342658 0.0287681 0.0183263 0.0512003 -0.0320392 -0.0707587 -0.146102 -0.154733 -0.334533 -0.417052 -0.428988 -0.313133 -0.194468 -0.0578039 -0.0118164 0.101269 -0.00937693 -0.0502179 -0.0129113 -0.018343 -0.00756627 -0.0017501 0.000634123 0.000675124 0.000277972 0.000536378 0.000105361 0.0118595 0.0119949 0.0109666 0.00799616 0.00190016 -0.00912109 -0.0270191 -0.0506295 -0.0892375 -0.142698 -0.236967 -0.201184 -0.390419 -0.380729 -0.301981 -0.174958 -0.0582133 0.00263495 0.0134786 -0.0205247 -0.0792995 -0.037644 -0.007357 -0.00745818 -0.00222478 4.2249e-05 0.000410365 0.00024583 0.000389074 6.16511e-05 0.00508038 0.00426716 0.00257478 -0.000390241 -0.0051737 -0.0127116 -0.0239779 -0.040889 -0.0664813 -0.104163 -0.154248 -0.209505 -0.241295 -0.234211 -0.187649 -0.109061 -0.0311895 0.0022832 0.00336309 0.431748 -0.0433392 -0.0287451 -0.0144791 -0.00625505 -0.00218967 -0.000299567 0.000177819 0.000163097 0.000259174 4.05321e-05 -0.000467529 -9.33291e-05 -0.00156219 -0.00464688 -0.00877921 -0.00868967 -0.0116535 -0.0182752 -0.0310354 -0.0501344 -0.0746268 -0.0977269 -0.109351 -0.0982765 -0.0672988 0.0468334 0.000713988 0.0100468 0.00482166 0.0254239 -0.0147522 0.0234048 -0.00951929 -0.00407904 -0.00166986 -0.000407096 -1.03727e-05 4.49694e-05 0.000132619 2.96476e-05 -0.00128053 0.000320729 0.0161274 0.0386938 0.0144029 -0.00332441 -0.00215613 -0.00438501 -0.0103155 -0.0175346 -0.0344305 -0.042723 -0.0406609 0.0221709 0.00135881 0.0104021 0.0312586 0.0110294 0.00671684 0.0140184 0.00213004 -0.00555488 -0.00285874 -0.00137939 -0.000807387 -0.00033418 -0.000157206 -9.85615e-05 -6.08775e-07 1.77326e-05 122.934 116.2 104.901 95.8631 89.3172 84.7138 82.209 82.8802 86.6764 91.103 94.2045 95.6773 95.8956 95.3297 94.3669 93.2716 92.204 91.2508 90.4494 89.8058 89.3072 88.9324 88.6586 88.4649 88.3337 88.251 88.2055 88.1879 88.1912 88.2096 121.994 116.201 104.891 95.8458 89.3029 84.6963 82.1661 82.8195 86.6571 91.1313 94.2502 95.7195 95.9282 95.3523 94.3799 93.275 92.1982 91.2369 90.4291 89.781 89.2798 88.9037 88.6296 88.4361 88.3053 88.2231 88.178 88.1609 88.1646 88.1833 122.078 116.213 104.874 95.8134 89.2755 84.6607 82.0778 82.6857 86.5928 91.1636 94.3296 95.8041 95.9979 95.4027 94.411 93.2867 92.1911 91.213 90.392 89.7348 89.228 88.8492 88.5743 88.3809 88.251 88.1697 88.1256 88.1095 88.114 88.1333 122.214 116.234 104.849 95.7654 89.2349 84.608 81.947 82.4839 86.4914 91.2048 94.4425 95.9289 96.1042 95.4824 94.4628 93.3096 92.1852 91.1814 90.34 89.6686 89.1532 88.7702 88.4938 88.3008 88.172 88.0923 88.0497 88.035 88.0407 88.0609 122.402 116.261 104.817 95.7016 89.181 84.5389 81.7738 82.2111 86.3537 91.2579 94.5898 96.0926 96.2453 95.5896 94.5331 93.3416 92.1792 91.1411 90.2724 89.5821 89.0553 88.6667 88.3886 88.196 88.0687 87.9909 87.9501 87.937 87.9441 87.9655 122.643 116.293 104.777 95.6218 89.1138 84.4547 81.5583 81.8615 86.1771 91.3246 94.7734 96.296 96.4203 95.7218 94.6195 93.3808 92.1716 91.0909 90.188 89.474 88.9332 88.5379 88.258 88.0662 87.9408 87.865 87.8262 87.8146 87.8231 87.8458 122.938 116.326 104.729 95.5256 89.0333 84.3567 81.301 81.428 85.9589 91.4066 94.9955 96.5408 96.6295 95.8785 94.7211 93.4265 92.1617 91.0297 90.0855 89.3427 88.7853 88.3826 88.101 87.9106 87.7878 87.7144 87.6775 87.6675 87.6773 87.7014 123.289 116.354 104.671 95.4128 88.9396 84.2468 81.003 80.9015 85.6955 91.5059 95.2586 96.8285 96.8737 96.0595 94.8378 93.4787 92.1494 90.9568 89.963 89.1862 88.6095 88.1988 87.9163 87.7285 87.6093 87.5391 87.5044 87.4959 87.5068 87.5322 123.697 116.373 104.603 95.2829 88.8325 84.1271 80.6657 80.2701 85.3829 91.6255 95.5661 97.1622 97.154 96.2654 94.9697 93.5376 92.1345 90.8709 89.8184 89.0016 88.403 87.9842 87.7022 87.5189 87.405 87.3395 87.3078 87.3007 87.3122 87.338 124.163 116.371 104.523 95.1356 88.7117 84.0003 80.2914 79.5187 85.0166 91.7687 95.9214 97.5445 97.4716 96.4962 95.117 93.6034 92.1169 90.7707 89.649 88.7854 88.1622 87.7358 87.4564 87.2805 87.1747 87.1159 87.0889 87.0838 87.0948 87.1187 124.688 116.345 104.429 94.9701 88.5769 83.8692 79.8834 78.6274 84.5917 91.9395 96.3285 97.9785 97.8279 96.7521 95.2796 93.676 92.0967 90.6549 89.4517 88.5334 87.8828 87.4498 87.1765 87.0117 86.9178 86.869 86.8488 86.8471 86.8576 86.8767 125.269 116.303 104.321 94.7862 88.4275 83.7374 79.4463 77.5702 84.1033 92.1426 96.792 98.468 98.2246 97.0333 95.4572 93.7556 92.0743 90.522 89.2225 88.2405 87.5592 87.1218 86.859 86.7107 86.6334 86.5984 86.5882 86.5919 86.6033 86.6206 125.906 116.26 104.197 94.583 88.2627 83.6084 78.9866 76.3119 83.5462 92.3839 97.317 99.017 98.6635 97.3395 95.6496 93.8419 92.0502 90.3706 88.9571 87.9002 87.1846 86.7457 86.5 86.375 86.3201 86.3034 86.3065 86.3186 86.3333 86.3477 126.597 116.23 104.056 94.3602 88.0811 83.4861 78.5127 74.8019 82.9156 92.6697 97.909 99.6303 99.1464 97.6703 95.8558 93.9344 92.025 90.1993 88.6508 87.5046 86.7499 86.3144 86.0947 86.0019 85.9763 85.9825 86.0014 86.0237 86.0448 86.0648 127.339 116.217 103.897 94.1171 87.8814 83.3748 78.0357 72.957 82.2048 93.008 98.574 100.313 99.6756 98.0245 96.0748 94.0318 91.9983 90.0065 88.2986 87.0433 86.2431 85.8188 85.6379 85.5889 85.6011 85.6347 85.6708 85.7026 85.7292 85.7525 128.122 116.224 103.718 93.8532 87.6613 83.2782 77.5684 70.6593 81.4039 93.4078 99.3182 101.07 100.253 98.4004 96.3046 94.1327 91.9652 89.7865 87.8963 86.5032 85.6481 85.247 85.1234 85.1338 85.1948 85.2618 85.3163 85.3563 85.3858 85.4098 128.93 116.248 103.519 93.5679 87.4182 83.2002 77.1268 67.7788 80.5197 93.8789 100.143 101.909 100.882 98.7949 96.542 94.2363 91.9084 89.5091 87.4384 85.8664 84.9416 84.5844 84.5458 84.6357 84.7598 84.8687 84.9444 84.992 85.0227 85.0455 129.74 116.281 103.298 93.2602 87.1484 83.1441 76.7348 64.2109 79.6092 94.4273 101.059 102.833 101.564 99.2026 96.7809 94.3477 91.785 89.1333 86.9229 85.1114 84.0892 83.8127 83.9021 84.096 84.3007 84.4647 84.5674 84.6238 84.655 84.6752 130.514 116.303 103.05 92.929 86.8456 83.1117 76.4257 59.9662 78.7638 95.0383 102.066 103.849 102.301 99.6138 97.0085 94.4853 91.544 88.7786 86.3653 84.2111 83.0378 82.9112 83.1991 83.524 83.8276 84.0665 84.2059 84.2714 84.2997 84.3127 131.197 116.283 102.769 92.5729 86.4997 83.1022 76.2559 55.3344 78.1838 95.6646 103.162 104.96 103.094 100.012 97.2093 94.6833 91.2083 88.5769 85.7899 83.136 81.7127 81.8609 82.4583 82.949 83.372 83.7012 83.88 83.947 83.9618 83.9586 131.686 116.168 102.451 92.1907 86.0983 83.1081 76.3506 51.1578 78.2714 96.2557 104.349 106.166 103.941 100.367 97.4131 94.9437 90.8944 88.4766 85.2458 81.8782 79.9922 80.5986 81.6668 82.39 82.9851 83.4047 83.6058 83.6547 83.6381 83.6058 131.824 115.88 102.105 91.7813 85.647 83.1083 76.9496 23.9213 79.4166 96.8867 105.631 107.463 104.833 100.622 97.7158 95.1894 90.74 88.4545 84.8082 80.4161 77.3252 78.8154 80.7575 81.8074 82.6768 83.211 83.4044 83.3997 83.3196 83.2353 131.344 115.283 101.739 91.3426 85.3192 83.0638 77.7915 0.171836 80.6626 97.5874 107.008 108.839 105.751 100.655 98.1575 95.4344 90.8507 88.5301 84.5988 78.701 72.607 76.0255 79.7013 81.1904 82.4947 83.1925 83.3211 83.1983 82.9935 82.8084 129.854 114.119 101.354 90.874 85.1705 82.8891 68.3172 0.160421 81.4358 98.2983 108.438 110.272 106.644 100.213 98.7249 95.844 91.2857 88.7163 84.7021 77.5518 67.6321 73.2029 78.1389 80.3188 82.5729 83.5437 83.3889 83.0776 82.6532 82.2388 126.733 112.028 100.96 90.3658 85.5433 82.4342 -0.39515 -0.102639 81.9051 98.8475 109.881 111.733 107.392 98.6677 99.384 96.5071 92.0656 88.9945 85.2132 78.2674 65.2216 70.1057 72.2549 79.5732 83.1372 84.8536 83.3602 83.1702 82.3636 81.3018 120.838 108.578 100.61 89.7275 85.5897 12.7788 -0.29125 -0.332747 68.858 98.8847 111.298 113.182 107.85 96.3825 100.391 97.3125 93.0722 89.2929 85.7514 80.4628 0.433767 0.338686 0.292641 0.269558 0.255532 0.253705 0.25401 0.250913 0.250068 0.249255 110.386 103.481 100.356 88.6718 47.3821 -0.215161 -0.294831 -0.576351 22.2641 99.3671 112.748 114.568 108.315 96.324 101.627 98.2748 93.8612 89.0705 84.9297 0.262438 0.588699 0.278845 0.273601 0.264082 0.258101 0.256246 0.254904 0.253177 0.251525 0.250038 97.0078 95.9008 100.281 86.8166 -0.148677 -0.216662 -0.293912 -0.651108 12.4516 100.962 114.544 115.859 108.772 99.162 103.224 99.248 94.7243 88.8696 -0.0529874 0.286673 0.663263 0.234631 0.247602 0.254384 0.2566 0.256709 0.25614 0.254233 0.250543 0.249818 99.9181 85.7822 100.642 0.0399639 -0.144293 -0.210912 -0.290893 -0.731246 -1.98203 102.729 116.471 116.981 108.286 103.925 104.679 99.8893 95.3399 29.7505 0.20709 0.197709 0.215043 0.203153 0.22108 0.239168 0.250915 0.255459 0.25655 0.258605 0.254469 0.2452 95.416 79.4739 101.619 0.0664512 -0.142018 -0.202538 -0.284737 -0.824714 -5.73478 103.482 116.668 118.036 106.613 107.668 105.254 100.143 94.4492 0.44419 0.194573 0.112983 0.178318 0.177093 0.205856 0.222912 0.240713 0.251217 0.252714 0.253335 0.251204 0.252268 88.2391 88.2809 88.3416 88.4258 88.5396 88.6906 88.8878 89.1427 89.4696 89.8852 90.4089 91.06 91.8533 92.7923 93.8583 95.0025 96.1372 97.1157 97.6946 97.5123 96.1085 93.0636 88.6772 84.9664 84.082 85.9134 89.8269 94.9496 100.299 104.929 88.2129 88.2551 88.3159 88.4002 88.514 88.6649 88.862 89.1169 89.4441 89.8606 90.386 91.04 91.8376 92.7824 93.8554 95.007 96.1495 97.1367 97.7249 97.5519 96.152 93.0909 88.6566 84.9134 84.0487 85.8963 89.8181 94.9456 100.297 104.936 88.1635 88.206 88.267 88.3513 88.4651 88.6156 88.8125 89.0675 89.3953 89.8137 90.3427 91.0026 91.8092 92.7666 93.8551 95.0232 96.1818 97.1846 97.788 97.6268 96.2231 93.1191 88.5929 84.7994 83.9803 85.8602 89.8013 94.9405 100.298 104.953 88.0918 88.1348 88.1961 88.2805 88.3938 88.5439 88.7404 88.9955 89.3245 89.7458 90.2803 90.9493 91.7698 92.747 93.8602 95.055 96.2381 97.2615 97.8827 97.7346 96.3218 93.154 88.4946 84.6284 83.8784 85.8054 89.7766 94.934 100.3 104.983 87.9972 88.041 88.1028 88.1872 88.3004 88.4499 88.6459 88.9012 89.2319 89.6571 90.1991 90.8803 91.7196 92.7234 93.8701 95.1002 96.3154 97.3645 98.007 97.8746 96.45 93.1993 88.3617 84.3977 83.7436 85.732 89.7436 94.9261 100.304 105.024 87.8788 87.9234 87.986 88.0709 88.1839 88.3329 88.5285 88.7841 89.117 89.5473 90.0984 90.7948 91.6576 92.6951 93.8835 95.1564 96.4099 97.4906 98.1599 98.0473 96.6097 93.2562 88.1909 84.1027 83.5767 85.64 89.7025 94.9167 100.31 105.077 87.7357 87.7817 87.8453 87.9307 88.0438 88.1924 88.3876 88.6437 88.9791 89.4153 89.9774 90.6918 91.5828 92.6612 93.9004 95.223 96.5202 97.6386 98.3411 98.2538 96.8024 93.3262 87.9779 83.7374 83.379 85.5297 89.6534 94.906 100.317 105.142 87.568 87.6156 87.6803 87.7662 87.8794 88.0277 88.2224 88.4791 88.8173 89.2602 89.8347 90.5698 91.4934 92.6209 93.9208 95.3001 96.6462 97.8083 98.5508 98.4953 97.0305 93.4107 87.7173 83.2941 83.1524 85.4013 89.5962 94.8942 100.325 105.218 87.3753 87.4252 87.49 87.5758 87.6898 87.8379 88.032 88.2891 88.6303 89.0805 89.6687 90.4269 91.3875 92.5727 93.9451 95.3877 96.7876 97.9997 98.7892 98.7729 97.2964 93.5121 87.4023 82.7629 82.8995 85.2549 89.5313 94.8815 100.333 105.306 87.1554 87.2124 87.2725 87.3568 87.4738 87.6221 87.8156 88.0728 88.4169 88.8747 89.4777 90.2611 91.2626 92.5151 93.9742 95.4858 96.9443 98.2127 99.0567 99.0876 97.6032 93.633 87.0239 82.1307 82.6239 85.0905 89.4586 94.8683 100.342 105.404 86.9014 87.1594 87.2683 87.1077 87.2308 87.3799 87.5723 87.8291 88.1758 88.6413 89.2598 90.0703 91.1154 92.4453 94.0091 95.5936 97.1155 98.4474 99.3535 99.4418 97.9543 93.7766 86.5709 81.3806 82.3305 84.908 89.3785 94.8549 100.35 105.512 86.6492 86.7078 86.7672 86.8396 86.9607 87.111 87.3014 87.5566 87.9054 88.3784 89.0129 89.8519 90.9422 92.3585 94.0515 95.7091 97.3004 98.7039 99.68 99.8377 98.3538 93.9466 86.0284 80.4909 82.0261 84.7073 89.2911 94.8417 100.358 105.63 86.4561 86.4118 86.466 86.5459 86.6634 86.813 87.0008 87.2543 87.6046 88.0841 88.7342 89.6036 90.7389 92.2445 94.1023 95.8277 97.4976 98.9822 100.036 100.277 98.8063 94.1479 85.3774 79.434 81.7194 84.4879 89.1966 94.8293 100.363 105.755 86.0851 86.1157 86.163 86.2335 86.3392 86.4824 86.6681 86.9212 87.2725 87.7563 88.4206 89.3227 90.5027 92.0761 94.1576 95.9405 97.7058 99.2829 100.423 100.762 99.3172 94.3862 84.5933 78.177 81.4213 84.249 89.0953 94.8181 100.366 105.888 85.7754 85.803 85.8426 85.8975 85.9831 86.1188 86.3036 86.558 86.9089 87.3927 88.0676 89.0056 90.2336 91.7742 94.1934 96.0326 97.9241 99.6067 100.839 101.296 99.8932 94.67 83.6455 76.6852 81.1449 83.9896 88.9873 94.8087 100.366 106.033 85.4325 85.4595 85.4952 85.526 85.5875 85.7343 85.9151 86.1676 86.5139 86.9902 87.6688 88.6463 89.9384 91.2139 94.1131 96.0822 98.1534 99.9551 101.285 101.882 100.543 95.013 82.5027 74.9343 80.9116 83.7083 88.8729 94.8015 100.36 106.184 85.0662 85.0911 85.1332 85.0909 93.0911 85.3368 85.5072 85.7534 86.088 86.5447 87.2147 88.2338 89.6365 90.6865 93.694 96.0674 98.3976 100.33 101.759 102.522 101.272 95.4403 81.1504 72.8965 80.7579 83.4036 88.7519 94.7966 100.347 106.339 84.6915 84.7092 84.7326 84.7554 84.7681 84.8846 85.0785 85.3168 85.632 86.0515 86.6911 87.7525 89.3357 90.6744 92.763 95.9891 98.6653 100.735 102.26 103.221 102.082 95.9884 79.6075 70.4632 80.7016 83.0743 88.6233 94.794 100.325 106.503 84.321 84.3296 84.3422 84.3635 84.3959 84.4786 84.6394 84.86 85.1503 85.5054 86.0769 87.1814 88.9846 90.8137 91.5334 95.9065 98.9707 101.173 102.782 103.981 102.984 96.6864 77.958 67.4676 80.7489 82.7184 88.4846 94.7936 100.291 106.671 83.9526 83.9481 83.9456 83.9459 83.9606 84.0457 84.1874 84.3907 84.6534 84.902 85.3386 86.4873 88.5669 90.8118 90.6352 95.9403 99.3319 101.649 103.321 104.806 103.984 97.5421 76.4178 63.9558 80.9054 82.3296 88.3316 94.7952 100.243 106.836 83.5791 83.5602 83.5447 83.5235 83.5074 83.5488 83.9607 83.941 84.1507 84.2309 84.4101 85.6219 88.1176 90.671 90.6062 96.2017 99.7664 102.167 103.863 105.698 105.086 98.5501 75.1747 60.3054 81.1646 81.8898 88.1676 94.7994 100.175 106.992 83.1797 83.1526 83.1393 83.1104 83.0665 83.0721 83.3207 83.527 83.6442 83.4727 83.1475 84.5204 87.6486 90.5514 91.4137 96.6952 100.286 102.735 104.395 106.658 106.302 99.6876 74.3372 57.387 81.434 81.3573 88.0328 94.8082 100.083 107.128 82.7094 82.6999 82.7351 82.7002 82.5678 82.5464 82.8321 83.1779 83.154 82.6206 81.2142 83.0243 87.1786 90.5177 92.6038 97.285 100.899 103.362 104.888 107.68 107.646 101.029 74.8601 0.243188 81.4189 80.6552 88.0949 94.8267 99.9598 107.228 82.0519 82.1499 82.4161 82.3806 81.9195 81.7903 82.3304 83.0109 82.6791 81.6752 78.3774 81.146 86.7474 90.5145 93.7014 97.7933 101.616 104.067 105.291 108.748 109.124 102.579 74.6845 0.557316 75.434 79.6766 88.5112 94.8623 99.7954 107.268 80.8011 81.1859 82.5661 82.6365 80.7986 80.6439 81.6971 83.4313 81.6863 81.3588 75.2587 79.8254 86.4284 90.4998 94.5667 98.2673 102.469 104.879 105.503 109.832 110.666 103.994 81.8152 0.808816 0.0233648 61.6382 89.8571 94.926 99.5751 107.211 0.248709 0.247225 0.2384 0.229403 0.236346 0.237212 0.244799 4.63904 22.3015 53.8191 69.6512 78.9468 86.33 90.4122 95.3847 99.0886 103.493 105.856 105.354 110.882 112.141 105.876 61.4271 0.35657 0.0229562 0.133572 92.1877 95.0273 99.2832 106.999 0.248083 0.243535 0.241693 0.23807 0.233124 0.235206 0.230102 0.21981 0.216298 0.222013 0.281326 35.8497 86.3888 90.1075 96.346 100.171 104.696 107.116 104.607 111.826 113.49 106.769 14.2537 0.218994 0.0555443 0.109039 93.9336 95.1473 98.9137 106.693 0.256713 0.256225 0.241578 0.238704 0.230873 0.224779 0.226679 0.222619 0.213773 0.197194 0.204773 0.238302 71.6092 89.2059 97.7794 100.904 106.064 108.859 103.323 112.456 114.671 106.45 -1.00087 0.166815 0.0630702 0.0722126 3.5956 95.184 98.4116 106.717 0.244162 0.24405 0.241093 0.23578 0.227407 0.219221 0.214556 0.216455 0.199308 0.154514 0.121686 0.113003 0.158664 86.9209 100.93 101.013 107.594 110.976 103.334 112.583 115.623 106.532 1.59951 0.14122 0.0583857 0.0521456 0.153227 93.9211 97.6098 106.88 0.239422 0.237244 0.240163 0.341181 0.223186 0.199328 0.197856 0.204179 0.178915 0.125867 0.0790292 0.0669442 0.100758 0.4989 107.418 100.634 109.223 111.466 105.757 112.784 115.882 105.457 -0.498892 0.102382 0.0501525 0.0430072 0.138077 -0.364151 96.2826 106.061 69.7571 124.599 93.4008 0.0619115 -0.138041 -0.196231 -0.276167 -0.875183 59.9908 105.391 116.394 118.588 105.797 108.481 105.54 99.7332 0.0826871 0.468175 0.156535 0.0257194 0.145586 0.161213 0.180224 0.203654 0.231937 0.246702 0.25034 0.250082 0.245842 0.337006 97.9437 68.8403 13.469 0.0608672 -0.134035 -0.191253 -0.271772 -0.89858 -0.153387 110.303 116.964 119.42 105.93 107.465 105.226 98.801 0.557766 0.843554 0.122409 0.198975 0.131916 0.149226 0.167381 0.194001 0.224433 0.241612 0.261736 0.246554 0.242971 12.6997 34.5947 1.32459 -0.00981016 0.0509024 -0.129049 -0.185987 -0.262954 -0.897987 0.103195 114.342 118.253 120.736 107.343 105.886 106.706 -0.400589 0.462227 0.941071 0.106954 0.560747 0.121595 0.137308 0.154484 0.182214 0.215524 0.23499 0.264288 0.242762 0.236592 0.383693 27.7356 0.205509 -0.00103874 0.0445645 -0.123318 -0.180401 -0.260663 -0.812778 -0.119255 118.102 118.578 121.231 110.39 104.818 103.506 0.432597 0.347027 4.30537 0.0385698 0.152996 0.115266 0.126313 0.147724 0.169215 0.205215 0.227158 0.234786 0.237324 0.234727 0.238716 29.047 0.252865 0.00661586 0.0374662 -0.117129 -0.174431 -0.266281 0.120493 0.031591 119.714 118.627 120.021 113.832 106.538 0.156095 0.4378 0.0626643 3.99461 0.0295492 0.0985768 0.110278 0.117438 0.155219 0.155444 0.193877 0.214809 0.22555 0.22826 0.227397 0.228065 2.85799 0.0795077 0.0123818 0.0300526 -0.110732 -0.168018 -0.239882 0.167453 0.0248115 99.799 124.76 121.702 117.494 48.4605 0.156715 0.435031 0.166407 0.452233 0.0304887 0.0873513 0.111576 0.208591 0.125343 0.143075 0.182338 0.204484 0.213207 0.216468 0.215874 0.2145 -0.186471 0.0979032 0.0168106 0.0225727 -0.104298 -0.161118 -0.230445 -0.202679 0.0226581 1.98999 120.048 123.91 120.588 0.180477 0.201582 0.345676 0.114755 0.23762 0.0586719 0.0939345 0.11052 0.215245 0.117713 0.136781 0.170818 0.219828 0.19875 0.203315 0.203272 0.202009 -0.144943 0.0878641 0.0200091 0.0154171 -0.0978975 -0.153685 -0.214726 -0.0499201 0.0020143 0.0429559 116.794 124.036 41.5761 0.12099 0.208085 0.234144 0.184017 0.770028 0.0938481 0.102686 0.114683 0.111026 0.116844 0.134233 0.160228 0.228305 0.188313 0.189733 0.18968 0.188707 -0.109223 0.0897761 0.0222361 0.00895023 -0.091535 -0.145657 -0.197505 -0.116435 -0.0437636 0.18375 0.19035 99.3023 -0.611285 0.0639432 0.201592 0.211598 0.206327 0.309214 0.118325 0.112064 0.11417 0.115442 0.120719 0.133345 0.154478 0.163907 0.17226 0.174355 0.174602 0.174486 -0.0771122 0.105808 0.0237374 0.00349983 -0.0852225 -0.136993 -0.182443 -0.071824 -0.105781 0.0404764 0.173819 0.0442343 -0.344627 0.102906 0.191218 0.203286 0.151153 0.158282 0.138603 0.121073 0.118729 0.120701 0.127154 0.134681 0.143161 0.150843 0.155074 0.156944 0.15766 0.158727 -0.0514783 0.102989 0.0248089 -0.000801641 -0.078974 -0.127659 -0.162203 -0.0555721 -0.0171234 -0.0251138 0.142182 0.106784 -0.263474 0.09021 0.199311 0.198519 0.153716 0.157999 0.142138 0.12974 0.123784 0.124988 0.131526 0.156912 0.137035 0.138003 0.138075 0.138998 0.139913 0.142279 -0.0308451 0.0950777 0.0254114 -0.00399632 -0.0728323 -0.11769 -0.140145 -0.0250372 -0.0435904 -0.193074 0.107226 0.0920629 -0.0840405 0.0951988 0.17475 0.188926 0.152166 0.172685 0.150737 0.138703 0.134455 0.208908 0.133506 0.133006 0.130046 0.128918 0.12401 0.129305 0.144037 0.128367 -0.013657 0.0826503 0.0255381 -0.00624379 -0.0668203 -0.107173 -0.118425 -0.00875375 0.0415283 -0.166067 0.054562 0.0620385 -0.0251466 0.0827516 0.160506 0.185638 0.146171 0.158353 0.156945 0.14532 0.159156 0.386132 0.133284 0.130838 0.124411 0.118985 0.112251 0.110207 0.11314 0.116902 -0.00114522 0.11739 0.0251634 -0.00774627 -0.0609289 -0.0962372 -0.0982664 0.0168114 0.119853 -0.10094 0.0734909 0.0171854 0.0274887 0.142555 0.189071 0.178778 0.141195 0.157424 0.159822 0.157951 0.233357 0.152323 0.144772 0.135632 0.123805 0.11292 0.106846 0.104889 0.10599 0.110466 0.00705168 0.113511 0.0242807 -0.00865774 -0.0551405 -0.0850745 -0.0788132 0.0341851 0.127416 0.0189723 -8.13571e-05 0.023564 0.0116721 0.0529426 0.116425 0.120702 0.133547 0.174011 0.160887 0.161866 0.160499 0.162666 0.149892 0.13937 0.125631 0.115573 0.108339 0.107029 0.117414 0.112128 0.0127092 0.0997777 0.0228967 -0.00909615 -0.0494282 -0.0738973 -0.06102 0.0473234 0.116682 -0.0666216 -0.178208 0.19678 0.0151425 0.0352462 0.0710263 0.0959674 0.118775 0.139045 0.158163 0.163598 0.157789 0.158567 0.149356 0.140343 0.126264 0.117229 0.112117 0.110313 0.110915 0.113958 0.0153447 0.0894731 0.0210167 -0.00915132 -0.0437868 -0.0629488 -0.0453914 0.0420978 0.101204 -0.0785022 -0.169707 0.10308 0.0771451 0.0868736 0.0408974 0.0706619 0.101113 0.130867 0.142825 0.147371 0.147272 0.144698 0.141912 0.132206 0.123792 0.116498 0.114487 0.112365 0.112236 0.11436 0.0151937 0.0646162 0.01871 -0.00890144 -0.0382355 -0.0524712 -0.0324037 0.0394316 0.082989 -0.0328714 -0.019755 0.147976 0.0213276 -0.00453167 0.00370363 0.0385918 0.0834929 0.111201 0.164471 0.128967 0.142199 0.130415 0.129246 0.127262 0.120923 0.119267 0.127397 0.109671 0.107149 0.104713 0.0144206 0.0561974 0.016138 -0.00841801 -0.0328242 -0.042692 -0.0220258 0.0376581 0.0641059 -0.0451149 0.1413 0.598883 0.019633 -0.0399561 -0.0445567 -0.00371939 0.0487872 0.0827659 0.100044 0.10921 0.114284 0.117321 0.118432 0.116908 0.115604 0.114323 0.110772 0.108223 0.107072 0.106391 0.0118015 0.0352915 0.0134797 -0.00776932 -0.0276239 -0.0338123 -0.0137778 0.0338129 0.0566535 -0.151258 0.125463 0.887779 0.00517562 -0.0644341 -0.0845715 -0.0469789 0.0149579 0.059016 0.0816113 0.0931104 0.100311 0.105094 0.109982 0.228474 0.110324 0.107462 0.106791 0.107462 0.109146 0.110154 0.00900393 0.0298162 0.0108783 -0.00702026 -0.0227209 -0.0259962 -0.00654865 0.0296426 0.0516092 0.0421298 0.107503 0.766205 -0.00529468 -0.0676644 -0.103626 -0.074335 -0.0101417 0.0405823 0.0655157 0.0794072 0.0876316 0.0925606 0.0944437 0.112156 0.0974163 0.098759 0.0999906 0.101688 0.103983 0.107188 0.00512086 0.026833 0.00834871 -0.00622479 -0.0182063 -0.0193405 -0.00360581 0.02519 0.047942 0.0603375 0.088104 0.0619782 0.00108295 -0.056731 -0.0949205 -0.0722252 -0.0141768 0.0324639 0.0657489 0.0746857 0.0780497 0.0824232 0.0850224 0.0870828 0.0892812 0.0910758 0.0926679 0.0942634 0.095921 0.0976466 -0.00227075 0.0263204 0.00581491 -0.00542096 -0.0141646 -0.0139035 -0.00114454 0.0200016 0.0323205 0.0424409 0.059193 0.0415577 0.0456325 -0.0379441 -0.0574848 -0.039637 0.00315479 0.0394413 0.0589023 0.0694179 0.076013 0.0742459 0.0764955 0.0787114 0.0808591 0.0827847 0.0844765 0.0860083 0.0874401 0.0887958 -0.0171926 0.0253474 0.0032069 -0.00462045 -0.010661 -0.00969941 0.00261446 0.013364 0.012154 0.0142046 0.0307871 0.0242321 0.0195565 -0.0199776 -0.030128 0.1449 0.0242376 0.0473959 0.0615108 0.0692866 0.0675621 0.0655718 0.0660453 0.0672165 0.0689265 0.0707778 0.0725194 0.0740034 0.0751831 0.0760684 -0.0500168 0.0215316 0.000782711 -0.00380428 -0.00773052 -0.00663096 -0.00088242 0.00434658 -0.0184253 -0.0382388 -0.000378882 0.0094844 0.00367383 -0.00367132 0.00291532 0.015359 0.0338983 0.0437209 0.0528883 0.0557829 0.0599759 0.0783042 0.0499621 0.0499653 0.0503001 0.0517107 0.0549132 0.0549248 0.0561396 0.056921 -0.0235935 -0.0149254 -0.000620704 -0.00295287 -0.00536848 -0.00458251 -0.00256205 -0.00747658 -0.0558997 -0.0807083 -0.0336747 -0.00180969 0.00323322 0.00219934 0.0103616 0.017423 0.0276483 0.0853244 0.0419222 0.0368357 0.0363872 0.035227 0.0311558 0.0278674 0.0260365 0.0321155 0.0269893 0.0283218 0.0303312 0.0296076 -0.00189809 -0.00159683 -0.000841555 -0.00209726 -0.00352193 -0.00326978 -0.00397845 -0.0125943 -0.0509381 -0.122925 -0.0506886 -0.00887085 0.00155752 0.00546824 0.00708345 0.0147745 0.0138361 0.0218744 0.024015 0.157634 0.14749 0.0476363 0.0146683 0.00265608 0.0133734 -0.00158837 -3.38824e-05 0.00217829 0.00407544 0.00999113 0.00406462 0.00141331 -0.000439434 -0.00130675 -0.00210142 -0.00229549 -0.0042384 -0.0147808 0.0148642 -0.0548131 -0.0422406 -0.0132349 -0.002974 0.00238861 0.00636955 0.0143412 0.00763574 0.00870429 0.0289989 0.0135595 0.00819873 -0.00273339 -0.0124367 -0.0125628 -0.0141693 -0.00979056 -0.00689266 0.00686599 0.00725746 0.060055 0.00389801 0.00139126 -0.000127524 -0.000641584 -0.00101124 -0.00134565 -0.00314965 -0.00939966 0.0404968 0.050907 -0.0269655 -0.0176624 -0.010743 -0.00540068 -0.00169586 3.74419e-05 0.00310684 -0.00135515 -0.00502355 -0.00390456 0.000232093 -0.000913697 0.00292093 -0.0010198 -0.00200073 -0.00337558 -0.00379626 -0.00275116 -0.00358045 -0.00200216 0.00171182 0.000143357 1.05696e-05 -2.32209e-05 -3.05073e-05 -5.03446e-05 -0.00024426 -0.000815986 -0.00308171 -0.00916222 -0.0251096 -0.0299022 -0.0256083 -0.0193923 -0.0141172 -0.010533 -0.00874888 -0.0088403 -0.0103812 -0.0117088 -0.0114609 -0.0098951 -0.00780984 -0.00569534 -0.00398639 -0.00272072 -0.00191836 -0.00123917 -0.000303854 0.000662219 0.191101 0.230611 0.245915 0.451848 0.226032 0.677025 0.186727 0.195694 0.16749 0.109447 0.0638316 0.0472217 0.0696726 0.0550273 113.786 100.249 109.783 112.326 107.837 113.079 115.962 105.447 -0.44868 0.0640612 0.0445651 0.0400344 0.128708 -0.312244 0.841202 104.925 1.20126 0.240857 0.248887 0.280054 0.220831 0.631442 0.163919 0.190293 0.160699 0.103167 0.0561221 0.0478718 0.0569882 0.140014 3.83406 99.9267 109.761 112.296 109.265 113.489 117.085 108.467 -0.39058 0.0339508 0.0407827 0.0387579 0.120434 -0.266 0.0760896 103.704 0.034572 0.224798 0.241487 0.697519 0.196284 0.2261 0.180632 0.184976 0.156034 0.0951542 0.0549564 0.0518187 0.0737753 0.178552 0.531657 94.7584 109.304 112.652 110.293 114.11 118.987 91.5763 -0.34823 0.0114916 0.0371709 0.0379472 0.11095 -0.225016 0.0584371 0.105164 0.231488 0.21669 0.198646 4.16001 0.185712 0.208314 0.187879 0.179024 0.153195 0.099062 0.0599453 0.059799 0.0808549 0.10148 0.401481 2.95959 109.401 113.1 111.408 114.823 121.171 18.3104 -0.154693 0.00118086 0.0338328 0.0374452 0.100721 -0.191576 0.0440607 0.0431508 0.222897 0.211102 0.196393 0.437117 0.179415 0.201999 0.186891 0.172907 0.152126 0.108224 0.0723969 0.0686749 0.0873441 0.115081 0.0656207 -0.0373021 91.4657 113.881 110.094 114.994 120.737 3.68076 -0.0599138 0.000275022 0.0307819 0.037083 0.0902396 -0.162146 0.0362024 0.0372933 0.210712 0.204475 0.197736 0.193651 0.1818 0.21306 0.216823 0.167563 0.152123 0.119968 0.0894618 0.0841931 0.0919109 0.108925 0.0409088 -0.109159 0.560213 114.319 109.594 115.444 118.676 -0.21909 0.0153714 0.000405184 0.0280426 0.0367036 0.0799135 -0.136228 0.0296031 0.0364943 0.199274 0.195498 0.190952 0.186067 0.181857 0.183326 0.171516 0.164037 0.152824 0.129934 0.107034 0.0950021 0.0976933 0.105701 0.0536437 -0.0290123 0.42049 -0.0824981 107.516 116.367 118.554 -0.192263 0.0479543 -0.00285065 0.0255948 0.0361648 0.0700387 -0.113161 0.0234037 0.0321092 0.187298 0.184566 0.185105 0.180173 0.176416 0.17398 0.166178 0.16107 0.153095 0.136534 0.120226 0.107174 0.109206 0.0945551 0.0660586 0.0152528 0.361955 -0.0437414 -0.142773 8.98223 -0.296858 -0.116973 0.0159914 -0.00712842 0.0234008 0.0353669 0.0608325 -0.092813 0.0174515 0.0301501 0.174294 0.173787 0.185264 0.176763 0.168386 0.165738 0.160738 0.160382 0.154674 0.139623 0.128808 0.115242 0.0984357 0.0856768 0.0650177 0.0973222 0.173119 -0.0350151 -0.14677 -0.202331 -0.309783 -0.280066 0.0292799 -0.0112854 0.0214191 0.0342442 0.0524443 -0.0747492 0.0122054 0.0283958 0.159732 0.160793 0.16182 0.158493 0.158814 0.158351 0.155226 0.151316 0.146053 0.139535 0.128931 0.175637 0.0988945 0.082024 0.0642484 0.0621344 0.211039 0.0557535 -0.150783 -0.20441 -0.328193 -0.317647 -0.0362053 -0.0126013 0.0195935 0.0327667 0.0449301 -0.0587796 0.00775379 0.0263059 0.144449 0.146603 0.148444 0.149376 0.159538 0.152592 0.149979 0.14698 0.142887 0.135471 0.126496 0.178028 0.0998698 0.0773126 0.0615932 0.0394349 0.0154302 -0.00267275 -0.153428 -0.180554 -0.299283 -0.378916 -0.0530304 -0.012651 0.0178817 0.0309413 0.038276 -0.0448521 0.00419085 0.0238564 0.131196 0.134649 0.137917 0.141385 0.144309 0.160794 0.153144 0.142782 0.139432 0.13252 0.125106 0.116547 0.0992816 0.0737389 0.0572636 0.0214093 0.00842787 0.0212422 -0.087496 -0.162679 -0.241064 -0.478525 -0.0535705 -0.0109981 0.0162528 0.0288077 0.0324361 -0.0331098 0.0015786 0.0209821 0.120712 0.125176 0.129526 0.134404 0.138875 0.146202 0.167345 0.138583 0.140196 0.133384 0.120372 0.116423 0.127733 0.071985 0.0503301 0.0211335 -0.000909099 0.27272 -0.0907578 -0.173237 -0.256151 -0.543958 -0.0769758 -0.0116485 0.0146827 0.0264327 0.0273403 -0.02373 -0.000186397 0.0178967 0.11497 0.121233 0.125368 0.134812 0.134428 0.144324 0.137131 0.137584 0.1355 0.127747 0.116041 0.144663 0.106925 0.0721615 0.0415134 0.0137208 -0.0102784 0.239252 -0.0756836 -0.192585 -0.166096 -0.324308 0.0979107 -0.00874295 0.0131446 0.0238917 0.0229269 -0.0166567 -0.00124244 0.0148119 0.115474 0.121042 0.126795 0.129526 0.133562 0.135298 0.135666 0.137153 0.138732 0.126105 0.112207 0.101713 0.117339 0.0746763 0.125813 0.00401142 -0.0190069 0.21249 -0.087116 -0.219056 -0.137553 -0.399249 0.0475066 -0.0052847 0.0116102 0.0212628 0.019144 -0.0115 -0.00187375 0.011903 0.118314 0.123337 0.129228 0.134977 0.136322 0.137535 0.137277 0.129603 0.182513 0.123605 0.107411 0.0960797 0.0874206 0.135415 0.0431777 -0.0047755 -0.0323367 -0.00978335 -0.0651332 -0.165771 -0.107089 -0.287911 0.00772701 -0.00379915 0.0100477 0.0186089 0.0159274 -0.00778951 -0.00226006 0.00928904 0.119502 0.131472 0.18918 0.647599 0.170388 0.139598 0.147452 0.13781 0.832585 0.110506 0.104189 0.0933775 0.0756483 0.148133 0.0372489 -0.012086 -0.0418337 -0.0210683 1.07331 -0.128468 -0.104704 -0.152173 -0.0282263 -0.00356595 0.00842847 0.0159801 0.0132046 -0.00512277 -0.0023765 0.00703598 0.100285 0.0931411 0.0883088 0.0929041 0.107276 0.411731 0.418667 0.191434 0.116947 0.111689 0.105791 0.0935357 0.0773143 0.0512925 0.0332421 -0.0150951 -0.0511707 -0.0752892 1.00319 -0.00433228 -0.146778 -0.077644 -0.0199023 -0.00392086 0.0067294 0.0134143 0.0108935 -0.0031707 -0.00228874 0.00518452 0.106328 0.107168 0.109746 0.114189 0.118119 0.121887 0.125821 0.122855 0.126417 0.119012 0.110576 0.0952109 0.0744619 0.0480177 0.0224676 -0.0190681 -0.0496794 -0.0697303 1.08844 0.0803945 -0.167342 -0.012697 -0.0171606 -0.0048208 0.00494045 0.0109435 0.00891673 -0.00174307 -0.00196382 0.00373466 0.13866 0.112654 0.116088 0.119942 0.123874 0.127699 0.131137 0.134703 0.129671 0.124265 0.112693 0.0935834 0.0682993 0.0380003 0.00551102 -0.0247948 -0.0539186 -0.0699139 0.833653 -0.0387936 -0.122009 -0.052693 -0.0207379 -0.00628034 0.00307324 0.00859567 0.00720497 -0.000722163 -0.0014826 0.00265174 0.12116 0.112406 0.11494 0.118442 0.122484 0.126559 0.131948 0.133305 0.129931 0.121751 0.106438 0.0833631 0.0527217 0.0182039 -0.015285 -0.0407477 -0.0580987 -0.0747054 0.101149 -0.0439441 -0.0652095 -0.0755777 -0.0247439 -0.00812723 0.00116344 0.00639895 0.00570339 -2.58745e-05 -0.000981297 0.00188156 0.0995667 0.102045 0.104947 0.108229 0.111764 0.118422 0.119524 0.119471 0.115364 0.10359 0.0831943 0.0592903 0.0212291 -0.019239 -0.0505862 -0.0669047 -0.0750454 -0.0811912 0.108841 -0.00246377 -0.058788 -0.0604148 -0.0274951 -0.0100768 -0.000722045 0.00438369 0.00437564 0.000408118 -0.000529851 0.00136 0.0900835 0.0914161 0.0928887 0.0944487 0.0959648 0.0971062 0.0968908 0.0930847 0.0828426 0.0633145 0.0352594 -0.000322883 -0.0146894 -0.0523804 -0.117906 -0.111284 -0.094838 -0.0827903 0.253002 0.157591 0.0612161 -0.0528068 -0.0286488 -0.0118841 -0.00249 0.00258528 0.0032051 0.000631164 -0.000167098 0.00101855 0.0766921 0.0771076 0.0772572 0.0769499 0.0758604 0.0732226 0.0671927 0.0562533 0.0534041 0.00325178 -0.0379415 -0.101874 -0.170059 -0.220327 -0.227024 -0.171478 -0.121165 -0.0696754 -0.00546527 -0.0312911 -0.0520869 -0.0476277 -0.0291997 -0.0134198 -0.00402744 0.00104341 0.00218945 0.00069001 8.9164e-05 0.000790508 0.0572933 0.0572382 0.0565115 0.0546139 0.050599 0.0423869 0.0576402 0.0146935 -0.0152936 -0.0565666 -0.132823 -0.226893 -0.31112 -0.370158 -0.364478 -0.269754 -0.143002 -0.0623376 -0.0274906 0.29943 -0.0309703 -0.0462679 -0.0120566 -0.0146317 -0.0051927 -0.000180316 0.00133578 0.000629185 0.00023427 0.000620625 0.0306633 0.0313694 0.0311627 0.0296671 0.0261967 0.0195255 0.00834702 0.068883 -0.050725 -0.0918808 -0.161057 -0.165465 -0.361938 -0.429744 -0.416542 -0.274349 -0.159301 -0.0460368 0.00439292 0.148965 -0.0193352 -0.0511163 -0.00898588 -0.0154505 -0.00580601 -0.00104219 0.000656891 0.000490709 0.000275984 0.000476432 0.00647013 0.00703089 0.00701133 0.00582415 0.00256644 -0.00391206 -0.0151518 -0.0326125 -0.057836 -0.0981214 -0.152618 -0.247778 -0.31889 -0.364878 -0.338118 -0.250922 -0.130401 -0.0153239 0.00834874 0.00279132 1.29477 -0.066405 -0.0325409 -0.0132117 -0.00565689 -0.00149287 0.000165302 0.000316421 0.000239132 0.00034667 0.058437 0.00550248 0.00323653 0.000919467 -0.00239223 -0.00715048 -0.0141394 -0.0245341 -0.0404499 -0.0645724 -0.0993204 -0.142696 -0.185401 -0.204136 -0.188801 -0.1422 -0.0691043 -0.00182807 0.00470416 -0.0237879 3.19474 -0.0351495 -0.0243731 -0.0103336 -0.00462273 -0.00150638 -0.000134183 0.000137868 0.000150663 0.000226984 0.000894117 0.0104895 -0.000245428 -0.0034676 -0.0146294 -0.00839828 -0.0066707 -0.00841133 -0.01479 -0.0270804 -0.0448797 -0.0660946 -0.082345 -0.0860882 -0.067098 -0.0338774 -0.000647304 0.0279185 0.0106892 0.00357596 0.0860297 -0.012268 -0.0136171 -0.00615037 -0.00284898 -0.00112681 -0.000258562 -2.59275e-05 2.94148e-05 0.000111201 0.000402003 0.000159565 0.00294404 -0.00110346 -0.00362447 -0.00333327 -0.00154275 -0.00288823 -0.00425397 0.00533079 -0.0100351 -0.0222324 -0.00665958 0.013559 -0.00724524 0.00137243 0.00134818 0.00531433 0.00379817 0.00194028 0.0031468 -0.00235009 -0.000959368 0.000482025 -0.000178652 -0.000305824 -0.000247477 -0.000216533 -0.000158028 -4.33236e-05 120.848 110.631 100.083 92.3711 86.8132 83.1633 82.075 84.4845 88.9494 92.8454 95.1183 95.9124 95.6881 94.8854 93.8312 92.7347 91.7162 90.8355 90.1126 89.5429 89.1082 88.7861 88.5542 88.3933 88.2876 88.2245 88.1938 88.1873 88.1987 88.2228 120.872 110.628 100.065 92.3558 86.7989 83.1363 82.0174 84.4381 88.9566 92.8858 95.1636 95.9501 95.7157 94.9032 93.8395 92.7334 91.7062 90.8182 90.0899 89.5166 89.08 88.7571 88.5252 88.3647 88.2594 88.1968 88.1665 88.1605 88.1722 88.1966 120.931 110.625 100.033 92.327 86.7704 83.0814 81.8962 84.3253 88.9444 92.948 95.2497 96.0285 95.7759 94.944 93.8611 92.7357 91.6905 90.7873 90.0477 89.4672 89.0266 88.702 88.4699 88.3099 88.2056 88.144 88.1147 88.1095 88.122 88.1469 121.025 110.622 99.9844 92.2844 86.7282 83.0003 81.7151 84.1527 88.92 93.0337 95.3742 96.1462 95.8695 95.0101 93.8986 92.7443 91.6714 90.7448 89.988 89.3961 88.9493 88.622 88.3894 88.2302 88.1273 88.0672 88.0395 88.0356 88.0491 88.0749 121.157 110.616 99.9205 92.228 86.6724 82.8942 81.4725 83.918 88.886 93.1454 95.5369 96.3015 95.9944 95.0994 93.9502 92.7573 91.6478 90.6901 89.91 89.3032 88.848 88.5173 88.2842 88.1261 88.0249 87.9668 87.9407 87.9383 87.9531 87.9799 121.327 110.603 99.8406 92.1578 86.6034 82.7643 81.1656 83.6154 88.8427 93.2851 95.7393 96.4943 96.149 95.2093 94.0134 92.7732 91.6183 90.6217 89.8126 89.1871 88.7219 88.3872 88.1538 87.9971 87.8981 87.8419 87.8175 87.8167 87.8328 87.8608 121.537 110.58 99.7443 92.0737 86.5217 82.6128 80.7912 83.2376 88.7905 93.4548 95.9834 96.7255 96.333 95.3389 94.0875 92.7912 91.5822 90.5387 89.6943 89.0462 88.5693 88.2305 87.9972 87.8428 87.7463 87.6923 87.6697 87.6702 87.6877 87.7171 121.789 110.543 99.6313 91.9757 86.4278 82.4424 80.3455 82.7747 88.7298 93.6573 96.2718 96.9968 96.5467 95.4881 94.1725 92.8115 91.5391 90.4395 89.553 88.8785 88.3884 88.0456 87.8136 87.6625 87.5695 87.5182 87.4974 87.4991 87.5178 87.5486 122.087 110.486 99.5011 91.864 86.3223 82.2565 79.8241 82.2139 88.6618 93.8955 96.6072 97.3097 96.7907 95.6572 94.2685 92.8341 91.4883 90.3225 89.3863 88.681 88.1765 87.8304 87.6014 87.4555 87.3676 87.3203 87.3017 87.3043 87.3233 87.355 122.432 110.404 99.3531 91.7387 86.2055 82.0597 79.222 81.5385 88.5881 94.1732 96.9931 97.6663 97.0657 95.8463 94.3755 92.8591 91.4292 90.1857 89.1908 88.4501 87.9303 87.5825 87.359 87.2212 87.1409 87.0993 87.084 87.0875 87.105 87.1349 122.837 110.29 99.1864 91.5998 86.0779 81.8576 78.5337 80.7261 88.5109 94.4944 97.4334 98.069 97.3722 96.0553 94.4937 92.8866 91.3615 90.0266 88.963 88.1815 87.6455 87.2984 87.0842 86.9584 86.8893 86.8562 86.8461 86.851 86.8661 86.8886 123.321 110.132 98.9998 91.4475 85.9396 81.6573 77.7531 79.7476 88.4336 94.8637 97.9319 98.5206 97.711 96.2841 94.6229 92.9171 91.2849 89.8425 88.698 87.8696 87.3171 86.9743 86.7746 86.6658 86.6121 86.5911 86.5887 86.5968 86.6109 86.6329 123.899 109.915 98.7911 91.2821 85.7902 81.4679 76.8746 78.5639 88.3606 95.2862 98.4937 99.0242 98.0825 96.5322 94.7626 92.9506 91.1998 89.6303 88.3907 87.5075 86.9385 86.6052 86.4268 86.3415 86.3084 86.3033 86.3118 86.3257 86.3405 86.4263 124.59 109.635 98.5581 91.1039 85.629 81.3004 75.893 77.1241 88.2977 95.7675 99.1243 99.5833 98.4873 96.799 94.912 92.9871 91.1067 89.386 88.0346 87.0862 86.5013 86.1852 86.0374 85.9836 85.9769 85.991 86.0124 86.0344 86.0545 86.0761 125.415 109.299 98.2972 90.9133 85.4543 81.1687 74.8005 75.3651 88.2523 96.3141 99.8293 100.202 98.9255 97.0833 95.0699 93.0252 91.0068 89.1052 87.6226 86.5941 85.9946 85.7069 85.6024 85.5903 85.6166 85.6528 85.6871 85.7163 85.7409 85.7636 126.4 108.908 98.0037 90.7105 85.2632 81.0899 73.5888 73.2127 88.2327 96.934 100.615 100.885 99.3967 97.3831 95.2344 93.0617 90.8984 88.7808 87.146 86.0154 85.4038 85.1618 85.1181 85.1611 85.2288 85.2906 85.3377 85.3718 85.3981 85.4209 127.569 108.476 97.6714 90.4955 85.0512 81.0853 72.2564 70.5539 88.2489 97.6359 101.487 101.637 99.8999 97.6953 95.403 93.0894 90.7662 88.3945 86.593 85.328 84.7089 84.5401 84.5814 84.6965 84.8173 84.9102 84.9707 85.0086 85.0345 85.0556 128.977 108.027 97.2919 90.2677 84.8116 81.1828 70.8467 67.2324 88.3246 98.4223 102.452 102.463 100.433 98.0148 95.5721 93.0969 90.5581 87.9528 85.9517 84.4994 83.8811 83.8329 83.9924 84.1992 84.3891 84.5226 84.5996 84.6413 84.6658 84.6834 130.713 107.586 96.8538 90.0251 84.5339 81.4176 69.5319 63.1499 88.5038 99.2861 103.514 103.369 100.989 98.3327 95.7359 93.075 90.2388 87.5546 85.2197 83.4821 82.8778 83.037 83.3609 83.6781 83.9573 84.1471 84.2449 84.2883 84.3072 84.317 132.879 107.171 96.3421 89.7628 84.2048 81.8247 68.6682 58.4487 88.8097 100.226 104.676 104.36 101.56 98.6347 95.9031 93.0333 89.8869 87.2159 84.4052 82.2133 81.6395 82.159 82.7129 83.1646 83.5521 83.8076 83.9228 83.9582 83.9612 83.9556 135.626 106.798 95.7364 89.468 83.8135 82.4432 68.8577 53.7795 89.2086 101.215 105.937 105.439 102.125 98.9022 96.1593 93.0127 89.626 86.9225 83.5408 80.6065 80.06 81.176 82.0467 82.6985 83.2196 83.5293 83.6428 83.6508 83.6222 83.5915 139.143 106.479 95.0069 89.1157 83.3344 83.3001 70.6201 61.2323 89.6365 102.22 107.294 106.609 102.639 99.1152 96.5422 93.0697 89.5205 86.7335 82.6881 78.3986 77.6039 79.9648 81.3045 82.2678 82.9886 83.3411 83.4179 83.3642 83.2754 83.2039 143.671 106.225 94.1096 88.6825 83.396 84.3206 26.4937 1.00137 90.1718 103.248 108.732 107.864 103.01 99.2353 96.9704 93.2775 89.6118 86.7133 82.0085 75.1968 73.1212 78.4035 80.4494 81.8935 82.926 83.3062 83.2779 83.101 82.894 82.7476 149.52 106.046 92.9965 88.2512 83.1518 85.5585 -0.569651 -2.69323 91.121 104.365 110.221 109.198 103.057 99.1733 97.5746 93.7125 89.9334 86.8807 81.7496 72.3532 67.7606 77.0069 78.8538 81.6143 83.2428 83.529 83.2401 82.8845 82.4297 82.1117 157.124 105.944 91.6205 87.9165 82.8432 83.7051 -0.422413 0.483188 93.38 105.559 111.71 110.597 102.277 99.2208 98.6321 94.3921 90.4418 87.1969 82.6366 71.1535 62.225 74.7719 73.3856 81.991 84.5215 84.0312 83.1792 82.938 81.7836 80.9813 167.088 105.906 89.9164 87.9125 78.2034 -0.336497 -0.407849 0.812424 94.935 106.611 113.173 112.037 100.89 98.1819 99.4934 95.2911 90.9791 87.4898 85.0338 16.5877 0.355881 0.309777 0.279703 0.260569 0.253567 0.254014 0.252255 0.250227 0.249732 0.248644 180.49 105.909 87.7965 88.2313 -0.132851 -0.303536 -0.42222 4.93522 96.8867 107.171 114.634 113.422 101.133 98.4207 100.586 96.4062 91.0743 87.1301 38.2221 0.813196 0.309711 0.278739 0.268524 0.260527 0.256833 0.255718 0.254024 0.252354 0.250762 0.249381 180.854 105.914 85.0156 -0.0185065 -0.137942 -0.258673 -0.433291 -1.57028 98.3099 109.342 116.125 114.5 102.323 100.843 101.548 97.7594 90.0485 83.632 0.366505 0.288404 0.312697 0.241885 0.251578 0.25595 0.25674 0.25653 0.255471 0.252281 0.251055 0.249735 163.923 106.012 77.1618 0.0348084 -0.148986 -0.235337 -0.448475 -1.26915 103.872 113.018 117.517 115.122 102.383 104.758 101.59 99.7761 88.2265 0.119754 0.2217 0.214674 0.198377 0.209751 0.231019 0.245973 0.253838 0.256187 0.257089 0.269419 0.248371 0.244143 -4.15369 106.434 -1.2436 0.0124284 -0.15426 -0.224318 -0.445518 -0.881873 101.816 113.82 117.102 115.635 101.062 107.057 100.433 103.126 0.955046 0.186916 0.225468 0.165086 0.173793 0.185502 0.218325 0.230245 0.247383 0.252779 0.25064 0.252303 0.251142 0.250414 88.2582 88.309 88.3809 88.4793 88.6109 88.784 89.0089 89.2982 89.6677 90.1356 90.7215 91.4434 92.311 93.3183 94.4322 95.5853 96.6643 97.4783 97.7236 96.9842 94.783 90.9285 86.5369 84.1345 84.7178 87.6738 92.3463 97.6704 102.833 106.385 88.2322 88.2832 88.3553 88.4537 88.5852 88.7582 88.983 89.2725 89.6426 90.1117 90.6999 91.4252 92.2981 93.3118 94.433 95.5938 96.6809 97.5039 97.7587 97.0272 94.8221 90.9346 86.4929 84.0886 84.6946 87.661 92.341 97.6668 102.835 106.396 88.183 88.2343 88.3064 88.4048 88.5362 88.7088 88.9335 89.2233 89.5946 90.0664 90.6592 91.392 92.2756 93.3036 94.441 95.6182 96.7211 97.5596 97.8287 97.1035 94.8779 90.92 86.3894 83.9937 84.6465 87.6345 92.3325 97.6632 102.842 106.426 88.1115 88.1632 88.2355 88.3338 88.4647 88.6369 88.8614 89.1518 89.525 90.0009 90.6009 91.345 92.2455 93.2961 94.4597 95.6628 96.7883 97.6458 97.9312 97.2111 94.9533 90.8931 86.2333 83.8524 84.5741 87.5946 92.3208 97.6592 102.856 106.473 88.0174 88.0697 88.1423 88.2405 88.371 88.5426 88.7668 89.0581 89.434 89.9155 90.5252 91.2846 92.2077 93.2888 94.4875 95.7249 96.8794 97.7599 98.0648 97.3509 95.0517 90.8564 86.0219 83.6642 84.4778 87.5409 92.3056 97.6546 102.876 106.539 87.8994 87.9526 88.0259 88.1241 88.2543 88.4253 88.6494 88.9418 89.3212 89.8097 90.4314 91.2099 92.1615 93.281 94.523 95.8013 96.9907 97.8999 98.2294 97.524 95.1748 90.8095 85.7499 83.4282 84.3584 87.4735 92.2872 97.6492 102.901 106.624 87.757 87.8115 87.8855 87.9841 88.114 88.2846 88.5086 88.8024 89.1858 89.6825 90.3184 91.1196 92.1058 93.2723 94.5657 95.8908 97.1209 98.0652 98.4255 97.7319 95.3244 90.7517 85.4101 83.1433 84.2169 87.3922 92.266 97.6427 102.932 106.728 87.5901 87.646 87.7207 87.8197 87.9495 88.1196 88.3435 88.6388 89.0268 89.5328 90.1849 91.0123 92.0391 93.2622 94.6158 95.9933 97.2695 98.2555 98.6534 97.9764 95.503 90.6825 84.9935 82.8088 84.0545 87.2969 92.2423 97.6351 102.968 106.85 87.3987 87.456 87.5302 87.6298 87.7599 87.9295 88.1531 88.4499 88.8429 89.3591 90.0292 90.8861 91.9595 93.2506 94.674 96.1088 97.4366 98.471 98.914 98.2593 95.7132 90.6015 84.4881 82.4239 83.8725 87.1874 92.2166 97.6259 103.009 106.992 87.1812 87.2422 87.3096 87.4126 87.5442 87.7133 87.9365 88.2346 88.6326 89.1598 89.8496 90.7385 91.8646 93.2374 94.7405 96.2369 97.6222 98.7117 99.2081 98.583 95.9585 90.5081 83.8779 81.9881 83.6727 87.0634 92.1897 97.6148 103.054 107.154 86.9346 87.1961 87.0458 87.168 87.3019 87.4707 87.6928 87.9917 88.3946 88.933 89.6436 90.5671 91.7506 93.2224 94.8157 96.3766 97.8259 98.9777 99.5363 98.9501 96.2429 90.4021 83.1415 81.5015 83.457 86.9244 92.1622 97.6014 103.102 107.34 86.673 86.7405 86.7926 86.8972 87.0329 87.201 87.4208 87.7197 88.1272 88.6769 89.4093 90.3692 91.612 93.2061 94.899 96.526 98.0475 99.2692 99.8997 99.3638 96.571 90.283 82.2487 80.9651 83.2273 86.7698 92.1349 97.5852 103.153 107.55 86.4406 86.4364 86.502 86.601 86.7354 86.9018 87.119 87.4177 87.8289 88.389 89.1439 90.1422 91.4403 93.1879 94.9869 96.6822 98.2868 99.5863 100.299 99.8275 96.9486 90.1511 81.1558 80.3806 82.9859 86.5986 92.1088 97.5656 103.207 107.786 86.0978 86.1375 86.1949 86.2821 86.4071 86.57 86.7858 87.0849 87.4983 88.0665 88.8442 89.8847 91.2211 93.1628 95.0693 96.8405 98.5441 99.929 100.736 100.345 97.3828 90.0065 79.7963 79.7514 82.7345 86.4093 92.0846 97.5418 103.262 108.046 85.7881 85.8214 85.868 85.936 86.043 86.2067 86.422 86.7217 87.1341 87.706 88.5056 89.596 90.9297 93.099 95.1201 96.9955 98.8201 100.298 101.211 100.921 97.8831 89.8499 78.0833 79.0852 82.4742 86.1995 92.0629 97.5132 103.317 108.333 85.4452 85.4766 85.5131 85.5745 85.6444 85.8195 86.0324 86.3297 86.7351 87.3025 88.1211 89.274 90.556 92.8705 95.0817 97.1422 99.117 100.692 101.724 101.561 98.4626 89.6823 75.9583 78.399 82.2043 85.9653 92.0439 97.4786 103.371 108.647 85.0777 85.1089 85.1716 92.9968 85.1452 85.4141 85.6216 85.9107 86.2998 86.849 87.6798 88.9115 90.244 92.3288 94.8529 97.2798 99.4385 101.113 102.276 102.272 99.1393 89.5086 73.3127 77.7391 81.9249 85.7003 92.0271 97.437 103.422 108.989 84.6999 84.7201 84.746 84.8154 84.7758 84.9816 85.1902 85.4662 85.827 86.3358 87.1653 88.4985 90.1038 91.7092 94.3683 97.4187 99.7906 101.559 102.867 103.059 99.9283 89.3485 69.8873 77.1828 81.636 85.393 92.0115 97.3868 103.468 109.359 84.325 84.3353 84.3515 84.3801 84.4225 84.5556 84.7393 85.0007 85.3178 85.749 86.5526 88.0159 89.9754 91.113 93.7613 97.5854 100.182 102.029 103.496 103.931 100.822 89.2408 65.4545 76.8042 81.3263 85.0234 91.9953 97.3261 103.506 109.757 83.9501 83.9466 83.945 83.9495 83.9891 84.136 84.2614 84.5251 84.7779 85.0682 85.8036 87.4444 89.7797 90.5936 93.3904 97.8199 100.622 102.519 104.159 104.898 101.81 89.2431 60.0443 76.7395 80.9822 84.5598 91.9766 97.2527 103.533 110.183 83.5688 83.5523 83.5346 83.5126 83.5164 84.0585 83.8401 84.0548 84.211 84.2565 84.8516 86.7717 89.5379 90.4114 93.5766 98.1583 101.122 103.024 104.85 105.97 102.902 89.4319 53.8256 77.1567 80.5894 83.9673 91.9519 97.1641 103.544 110.637 83.1631 83.1457 83.1282 83.0859 83.056 83.146 83.4367 83.6036 83.6139 83.2459 83.5577 85.9952 89.2882 90.6842 94.3194 98.6075 101.695 103.536 105.559 107.161 104.168 89.8943 47.7706 78.3435 80.1034 83.2257 91.9152 97.0578 103.533 111.115 82.6947 82.7182 82.7335 82.637 82.5258 82.6516 83.0388 83.2005 83.0298 81.7955 81.5619 85.134 89.0489 91.239 95.2993 99.1358 102.356 104.043 106.269 108.481 105.597 90.8834 31.4982 79.3655 79.3437 82.3421 91.8638 96.9317 103.492 111.607 82.0664 82.2873 82.4659 82.1634 81.7704 81.9857 82.7431 82.8784 82.5877 79.4243 78.9123 84.2253 88.8253 91.8692 96.1496 99.7129 103.124 104.524 106.948 109.928 107.172 91.8925 3.22254 1.22833 77.7815 81.3818 91.8034 96.784 103.412 112.098 80.9507 81.9359 82.8954 81.7306 80.4399 81.0336 82.685 82.524 82.744 76.7519 76.6234 83.6504 88.6024 92.4563 96.7542 100.389 104.033 104.942 107.538 111.467 108.823 93.66 -0.138181 0.24012 2.03229 80.4808 91.7834 96.6129 103.3 112.56 0.249821 0.241279 0.232514 0.23133 0.236489 0.238124 1.03082 11.2315 40.2896 64.4999 73.7506 83.4954 88.4076 93.0329 97.4896 101.308 105.117 105.238 107.933 113.009 110.497 93.8414 -0.27704 0.245506 0.0151608 81.0409 91.8035 96.4227 103.143 112.943 0.246523 0.241501 0.233261 0.232359 0.233402 0.233835 0.240912 0.214889 0.213344 0.254511 0.241898 83.2669 88.2183 93.6808 98.4362 102.489 106.412 105.338 107.975 114.523 112.237 95.9386 -0.169405 0.190288 0.0142586 0.0384472 91.8048 96.2617 102.785 113.158 0.250715 0.252289 0.24097 0.235159 0.227664 0.240978 0.224628 0.219177 0.204342 0.200512 0.202922 0.0574437 87.5617 94.3297 99.2563 103.764 107.948 105.24 107.666 115.497 114.574 97.2426 0.0596066 0.130399 0.0115987 0.0791523 90.4025 96.2842 102.562 113.019 0.244819 0.242749 0.239031 0.231793 0.223101 0.216023 0.216034 0.212227 0.17684 0.136937 0.116152 0.0714851 -5.08451 95.1989 99.7391 105.007 109.444 105.56 108.206 115.895 115.374 91.3368 0.155778 0.0871022 0.0106873 0.0765904 0.666508 96.6004 102.401 112.187 0.236195 0.239102 0.241207 0.228813 0.214096 0.193055 0.202294 0.198039 0.147554 0.0948741 0.106436 0.0702874 0.0261154 93.3684 98.8251 106.136 110.295 106.404 110.482 115.319 113.636 20.4115 0.0912892 0.0584937 0.0121177 0.0723551 0.124865 24.0282 102.266 111.487 -4.89824 107.448 -0.118188 0.00226711 -0.154273 -0.218894 -0.440001 -0.796633 117.004 118.284 115.984 116.296 101.411 107.206 99.6491 105.738 0.705918 0.097509 0.271182 0.112718 0.155902 0.168754 0.19273 0.218796 0.240963 0.249526 0.262409 0.248192 0.246474 0.363414 -0.232765 107.724 0.0251553 -0.00433939 -0.152917 -0.215021 -0.413389 -0.8785 39.1894 122.476 117.717 116.991 101.072 107.144 93.9106 -1.60922 0.838296 0.0555585 0.627466 0.103174 0.143376 0.156573 0.179906 0.209805 0.234857 0.245925 0.249195 0.245207 0.253721 12.8318 -0.268727 74.9913 0.0251346 -0.0104323 -0.150361 -0.210986 -0.427274 -0.847976 2.15292 122.933 119.83 117.366 102.41 106.043 88.2199 0.506998 1.12166 -0.0128835 1.19328 0.0868197 0.132354 0.144821 0.166864 0.199427 0.227213 0.238901 0.244133 0.240773 0.21697 3.60293 -0.242953 0.499362 0.0203467 -0.0159821 -0.146815 -0.206496 -0.387375 -0.708163 31.9991 122.814 120.441 118.092 104.58 106.353 2.29919 0.478568 1.28418 -0.17096 0.460661 0.0975431 0.123794 0.131105 0.154814 0.187907 0.217914 0.232549 0.236841 0.236828 0.231945 0.26297 -0.231917 0.208475 0.0174373 -0.0210292 -0.142464 -0.201184 -0.337064 -0.113062 11.7375 124.074 121.167 120.023 106.159 92.3289 0.348071 0.598213 5.99093 0.0201415 0.117345 0.0998674 0.127217 0.118748 0.17328 0.175611 0.206751 0.237488 0.227462 0.228106 0.226918 0.228321 -0.20933 0.0675991 0.0155157 -0.0255082 -0.137509 -0.194783 -0.281097 -0.232493 -0.177031 125.945 123.725 119.751 106.559 0.257696 0.303626 0.351545 0.704023 0.0248422 0.0677787 0.0990118 0.20784 0.114911 0.163014 0.163953 0.195335 0.209373 0.21552 0.216464 0.216196 0.213104 -0.160228 0.0493979 0.0138661 -0.029247 -0.132056 -0.187178 -0.259443 -0.190287 -0.206512 125.892 125.233 120.663 23.9693 0.285468 0.353371 0.2741 0.463783 0.0501452 0.0812593 0.101339 0.207548 0.109524 0.124172 0.154109 0.185019 0.206475 0.201896 0.203619 0.202849 0.20087 -0.131789 0.0500118 0.0123813 -0.0321208 -0.126155 -0.17865 -0.264558 -0.174432 -0.417247 8.82612 128.358 124.057 3.34758 0.270869 0.250786 0.236322 0.242678 0.10902 0.0977695 0.107284 0.111272 0.111489 0.12386 0.145962 0.169109 0.19202 0.189019 0.189904 0.189268 0.188047 -0.0378502 0.0501724 0.0111226 -0.0340605 -0.119803 -0.168877 -0.230204 -0.163739 -0.58924 0.102849 132.8 6.79992 1.18677 0.28311 0.189067 0.217556 0.237812 0.145579 0.112322 0.112801 0.114617 0.117236 0.126154 0.140901 0.158008 0.169228 0.173677 0.174653 0.174527 0.174419 -0.0334447 0.0500565 0.010171 -0.0350799 -0.112995 -0.157835 -0.193424 -0.109282 -0.892576 0.113569 0.210183 -0.0499649 1.11221 0.202683 0.21887 0.201659 0.176229 0.149278 0.124431 0.11944 0.118806 0.128446 0.130702 0.140198 0.147409 0.153333 0.156138 0.157223 0.158144 0.159234 -0.0176945 0.0495144 0.00951979 -0.0352702 -0.105742 -0.145447 -0.156233 -0.0380878 -0.817621 0.0525733 0.157256 -0.0113567 0.216455 0.168922 0.223649 0.187796 0.143036 0.153521 0.13489 0.125925 0.125662 0.13091 0.133106 0.136334 0.137633 0.13789 0.138795 0.139161 0.141086 0.143377 -0.00381684 0.0480465 0.00907005 -0.0347778 -0.0980829 -0.132056 -0.120853 0.0230483 -0.690394 -0.0094784 0.127063 -0.0749247 0.0685231 0.14105 0.219973 0.175175 0.14632 0.169519 0.144233 0.139795 0.127405 0.14378 0.130943 0.131748 0.128322 0.127835 0.124049 0.143025 0.127207 0.129711 0.011625 0.0460736 0.00867631 -0.0337605 -0.0900841 -0.117777 -0.0853989 0.064534 -0.36764 -0.0339415 0.11395 -0.0534032 0.0417481 0.144345 0.180085 0.15932 0.14742 0.160953 0.15201 0.322802 0.14922 0.350363 0.131151 0.128447 0.120118 0.114295 0.110862 0.110991 0.11506 0.118744 0.0195276 0.0443784 0.00820583 -0.032335 -0.0818246 -0.103086 -0.0581553 0.0885785 -0.0772905 -0.0496038 -0.0559678 -0.0268474 0.0631018 0.152821 0.13978 0.152927 0.147354 0.160518 0.158923 0.46664 0.158666 0.147902 0.14946 0.130094 0.117976 0.109302 0.105428 0.104948 0.108078 0.112749 0.026109 0.0420103 0.00758322 -0.0305716 -0.0734138 -0.088364 -0.0396203 0.100345 0.0523806 -0.0478735 0.175122 0.0151527 0.0303904 0.0955013 0.114619 0.128007 0.140705 0.200327 0.162097 0.160749 0.165269 0.15504 0.145321 0.13262 0.119573 0.115507 0.107131 0.107988 0.119007 0.113599 0.040975 0.0394115 0.00679507 -0.0285089 -0.0649611 -0.074058 -0.0235946 0.106294 0.0857362 -0.16914 0.883153 0.021617 0.024322 0.0520709 0.0843066 0.105311 0.128092 0.193095 0.156865 0.157484 0.157546 0.151822 0.147366 0.132112 0.121351 0.114212 0.11088 0.110348 0.112112 0.116022 0.0238993 0.0358511 0.00587771 -0.0261862 -0.0565914 -0.0605628 -0.0104572 0.0875043 0.0867117 -0.154493 0.618232 0.0546827 0.0723527 0.0430815 0.0553445 0.0865386 0.115458 0.215867 0.145125 0.154369 0.145983 0.145338 0.137468 0.127681 0.120112 0.114784 0.113219 0.112038 0.112976 0.116408 0.0297234 0.0311408 0.00489249 -0.023655 -0.0484346 -0.0482156 -0.00289123 0.0766749 0.0354754 -0.00133005 0.266991 0.0418069 0.00444636 -0.00645935 0.0188557 0.063198 0.0983031 0.186738 0.126534 0.137443 0.130053 0.130139 0.12893 0.12365 0.119214 0.128231 0.115502 0.108377 0.105949 0.102712 0.00424244 0.0266392 0.00390087 -0.0209814 -0.0406292 -0.0372481 0.00327668 0.0660919 -0.00932485 0.841881 0.183123 0.0313645 -0.0125121 -0.0505089 -0.0279366 0.0227944 0.0713764 0.129145 0.104102 0.112201 0.115997 0.118148 0.117963 0.116235 0.114916 0.112639 0.109162 0.107614 0.106669 0.106245 0.0488421 0.022145 0.00294149 -0.0182413 -0.033314 -0.0278097 0.00771638 0.0558319 0.0121923 0.261224 0.198728 0.0128117 -0.0313057 -0.0825572 -0.0718168 -0.0167666 0.0425404 0.0726232 0.087937 0.0970859 0.102862 0.107173 0.12959 0.140126 0.108485 0.106954 0.106981 0.110144 0.109052 0.111839 0.0529525 0.0182279 0.00202174 -0.0155144 -0.0266236 -0.0200202 0.0103065 0.046298 0.045389 0.127574 0.090162 0.0166334 -0.0370289 -0.0936609 -0.0964404 -0.0438911 0.0191063 0.0545187 0.0733237 0.0839661 0.0904164 0.0939395 0.0955812 0.0962937 0.0981984 0.0993182 0.100763 0.102729 0.105403 0.115184 0.0263714 0.0145963 0.00112758 -0.0128792 -0.0206734 -0.0137888 0.00969682 0.0378496 0.0436509 0.0890995 0.0751628 0.030012 -0.0288136 -0.0808127 -0.0910858 -0.0448073 0.0119071 0.0476674 0.0719498 0.0749312 0.0804922 0.0838616 0.0860182 0.0882067 0.0902115 0.0918694 0.0934483 0.0950786 0.0967636 0.0985346 0.0403358 0.010898 0.000249118 -0.010406 -0.0155526 -0.00912178 0.00857848 0.0294448 0.0334545 0.0563656 0.0536363 0.0337608 -0.014063 -0.0504973 -0.0555255 -0.0196406 0.0232612 0.0503184 0.0644802 0.0758009 0.0731858 0.0753693 0.0775878 0.0797908 0.0818415 0.0836443 0.0852476 0.0867248 0.0881186 0.0894345 0.048654 0.00641528 -0.000579167 -0.00814936 -0.0113142 -0.00605106 0.00578352 0.0433924 0.00869293 0.0254686 0.0300071 0.0158582 0.00854927 -0.026225 0.185765 0.0112894 0.0368408 0.0552144 0.0637426 0.0689631 0.0665243 0.0657413 0.0665324 0.0680201 0.0698413 0.0716622 0.0732887 0.0746236 0.0756555 0.0764044 0.069626 0.0011785 -0.00122104 -0.00614685 -0.00795858 -0.00409964 0.00162468 0.0254486 -0.0404604 -0.0174675 0.00770752 0.00768851 -0.000407433 -0.00400106 0.00864891 0.0241574 0.0402594 0.0489113 0.0550749 0.0567214 0.0774888 0.0502281 0.0498032 0.0500386 0.0508772 0.0535835 0.0541837 0.0555788 0.0565786 0.0571533 -0.0007565 -0.00113123 -0.00146352 -0.00441994 -0.00542655 -0.00329865 -0.00313826 0.00322926 -0.080365 -0.0421298 -0.0115456 0.00203393 0.00324346 0.0698431 0.01461 0.0215718 0.0548747 0.0499585 0.0399406 0.0359245 0.0361913 0.0332901 0.0294562 0.0265536 0.0317556 0.03207 0.0275721 0.0292001 0.0356524 0.0299633 0.0016084 -0.000905851 -0.0012349 -0.00297145 -0.00357779 -0.00308717 -0.00477847 -0.000526833 -0.115888 -0.0904951 -0.0228473 -0.00221216 0.00389224 0.1148 0.0123816 0.0149175 0.0786224 0.024145 0.0240763 0.144025 0.0826797 0.0286094 0.00729857 -0.000388013 -0.00143726 -0.000987494 0.00104113 0.00319979 0.00523805 0.0100533 0.00200493 6.30858e-05 -0.000796967 -0.00179137 -0.00220802 -0.00274865 -0.00764631 -0.0251745 -0.00844569 -0.0287862 -0.0241902 -0.00709194 -4.87482e-05 0.00446578 0.00782117 0.0129381 0.0086197 0.034121 0.0128304 0.0112308 0.00459405 -0.0112351 -0.0141319 -0.00930425 -0.0119681 -0.00825416 -0.00576118 -0.00322268 0.0567333 0.0599439 0.00138104 0.000400946 -0.000382957 -0.00086315 -0.00112122 -0.00190903 -0.00534547 0.031521 -0.0125888 -0.0302431 -0.0219624 -0.0140361 -0.00791732 -0.00334553 -0.00058254 0.000160174 0.00144628 -0.00247122 -0.000379224 -0.00292202 -0.00149808 -0.000237105 0.0121106 -0.00180203 0.000290516 -0.00358339 -0.00292857 -0.003739 -0.00208657 -0.000353632 0.000874199 0.000120107 -1.51323e-05 -3.14954e-05 -3.65571e-05 -0.000170004 -0.000610124 -0.00233793 -0.00452809 -0.0216458 -0.0299611 -0.0270617 -0.020919 -0.0152885 -0.0112613 -0.00902016 -0.00864594 -0.00993354 -0.0115021 -0.0116808 -0.0103635 -0.00835224 -0.00618817 -0.00436189 -0.00299617 -0.00149093 -0.00124215 -0.000534246 0.000846998 0.000388766 0.215761 0.238626 0.308248 0.230631 0.233879 0.300367 0.192631 0.188418 0.135783 0.0841126 0.0885626 0.0691227 0.0826485 1.92704 95.1166 106.786 111.191 106.5 112.402 114.267 115.035 -3.86406 0.00472864 0.0450772 0.0139992 0.0697979 0.102683 -0.0766405 101.418 111.025 0.258351 0.241144 0.263123 0.232837 0.229132 0.290629 0.187508 0.181926 0.127759 0.0718805 0.0437808 0.0582112 0.203347 0.136564 89.6341 107.065 110.848 105.709 113.797 113.18 118.891 1.07594 -0.0474614 0.0376156 0.0157322 0.068052 0.0854018 -0.0646579 2.41747 109.904 0.197999 0.232733 0.264643 0.169601 0.212704 0.202972 0.185441 0.17579 0.125827 0.0694775 0.0466907 0.0639528 0.185118 0.182542 1.4495 108.288 111.36 104.715 116.586 112.07 121.203 -0.21575 -0.0669578 0.0313807 0.017498 0.0661163 0.0692806 -0.0551738 -0.0571518 98.8449 0.220082 0.213698 2.59211 1.20785 0.198952 0.201074 0.182924 0.17004 0.127332 0.0749105 0.0548374 0.0723732 0.117405 0.145991 0.414815 102.903 113.002 105.216 117.741 112.893 122.818 -0.11547 0.0558434 0.0263606 0.0191982 0.0638894 0.0554192 -0.0502677 -0.0426419 10.0537 0.216572 0.205137 0.187307 0.151642 0.18615 0.198395 0.178208 0.16508 0.131599 0.0864457 0.0668813 0.0780005 0.10824 0.071728 0.510077 -0.0914602 116.491 107.488 116.71 115.53 123.665 -0.0254801 0.0311575 0.0222678 0.0207377 0.0613413 0.0439553 -0.0458629 -0.0346094 0.102006 0.207696 0.201074 0.19403 0.183193 0.184216 0.213041 0.170994 0.161617 0.138715 0.102082 0.083108 0.0865162 0.107215 0.0995615 0.125356 -0.105638 48.3458 109.499 119.323 117.702 124.571 -0.0188551 0.0113012 0.0201605 0.0220378 0.0584485 0.034574 -0.041674 -0.0226859 0.049121 0.197522 0.193254 0.188481 0.183215 0.18236 0.179458 0.167412 0.159544 0.142571 0.117449 0.0992672 0.0946207 0.118848 0.101793 0.0578783 -0.0176898 0.249259 19.1123 120.749 119.218 1.65356 -0.0482154 -0.0221103 0.0160452 0.0230262 0.0551879 0.0266538 -0.0374944 -0.0254424 0.0239402 0.187243 0.182449 0.180753 0.178057 0.175306 0.170876 0.175298 0.157968 0.145403 0.12727 0.114119 0.10078 0.0994624 0.0863384 0.159395 0.0263721 0.363036 -0.0733356 -0.130823 3.08857 -0.306932 -0.181297 -0.0573876 0.0134185 0.0236395 0.0515991 0.0203423 -0.0333211 -0.0180009 0.0115132 0.174083 0.177489 0.184338 0.170022 0.167146 0.16353 0.157827 0.163398 0.144486 0.131935 0.124771 0.108219 0.0934838 0.0779929 0.181927 0.0302078 0.118397 -0.0709188 -0.185693 -0.253763 -0.348597 -0.131664 -0.0727582 0.0111139 0.0238318 0.0477398 0.0155441 -0.0291853 -0.0172617 0.00397735 0.160245 0.161412 0.159849 0.158268 0.158838 0.157024 0.153193 0.149135 0.146452 0.132307 0.129603 0.121648 0.0906371 0.0726592 0.143778 0.0854529 0.0416144 -0.0818939 -0.17403 -0.234245 -0.347044 -0.195242 -0.06403 0.00922173 0.023583 0.043681 0.012031 -0.0246408 -0.012413 -0.000529093 0.145526 0.147597 0.149133 0.149475 0.152644 0.151294 0.148602 0.145112 0.140234 0.132217 0.153491 0.112075 0.0880508 0.0683738 0.128899 0.0250755 -0.00432032 -0.103203 -0.161309 -0.229257 -0.399889 -0.274856 -0.0390268 0.00769579 0.022903 0.0395014 0.00955413 -0.0201607 -0.00863659 -0.00246933 0.133041 0.136169 0.139692 0.142869 0.143471 0.173267 0.144728 0.141312 0.136186 0.131776 0.118288 0.110975 0.0849207 0.0699034 0.0501963 0.0150113 -0.0005634 0.265429 -0.121951 -0.244914 -0.433325 -0.191462 -0.0245077 0.00655093 0.0218329 0.035294 0.00783702 -0.0163186 -0.00580647 -0.00265532 0.122791 0.127356 0.13179 0.136877 0.144602 0.165323 0.139293 0.143405 0.138169 0.125672 0.114995 0.13505 0.0796952 0.0622338 0.0402337 0.0067811 -0.0108454 0.126398 -0.0664507 -0.11613 -0.481995 -0.259511 -0.0346509 0.0057353 0.0204354 0.0311546 0.00662324 -0.013138 -0.00381886 -0.00182651 0.117143 0.122354 0.12867 0.132768 0.136328 0.138129 0.137497 0.137207 0.132167 0.124564 0.108936 0.132744 0.0896467 0.0595843 0.030328 -0.00446979 -0.00397446 0.0443147 -0.0983287 -0.172806 -0.430091 -0.301664 -0.026649 0.00516139 0.0187799 0.0271727 0.00572618 -0.0105008 -0.00254822 -0.000600213 0.117639 0.124502 0.127096 0.136594 0.135214 0.138543 0.136015 0.139627 0.13049 0.119257 0.10656 0.0974369 0.111382 0.114912 0.016152 -0.0166064 -0.0323371 -0.0641447 -0.157298 -0.111048 -0.33975 -0.0898372 -0.00834307 0.00459761 0.0169342 0.0234271 0.00503623 -0.00836092 -0.00169609 0.000496807 0.120746 0.128719 0.132462 0.135712 0.139038 0.136714 0.135348 0.259896 0.122484 0.111444 0.10228 0.0875815 0.0823926 0.116954 0.0164099 -0.0230032 -0.0515538 -0.0569262 -0.176625 -0.124483 -0.2442 -0.119731 -0.00903546 0.0038791 0.0149528 0.0199637 0.00450878 -0.00665998 -0.00107799 0.00122665 0.12415 0.144181 0.628401 0.451628 0.147102 0.135173 0.137409 1.60639 0.0922046 0.106662 0.0996609 0.08552 0.0848913 0.0530514 0.0138539 -0.0243325 -0.0609232 -0.0236144 -0.141811 -0.0676435 -0.103411 -0.0276571 -0.0108888 0.00296345 0.0128806 0.016802 0.00411954 -0.00530872 -0.000600699 0.00152825 0.0970703 0.0896534 0.0878987 0.100497 0.116077 0.429304 0.168587 0.134203 0.11642 0.109341 0.100342 0.0855314 0.0636414 0.0448437 0.00818294 -0.0367604 -0.0657609 0.186209 -0.102772 -0.0265297 -0.199121 0.00609629 -0.0101288 0.00183852 0.0107531 0.0139365 0.00381861 -0.00417167 -0.000244096 0.00150916 0.106602 0.108147 0.111881 0.116396 0.119694 0.124563 0.125399 0.122173 0.121376 0.115665 0.103557 0.0854535 0.0614451 0.035209 0.00175548 -0.0345739 -0.0637073 0.168186 -0.00786009 0.3774 -0.215099 -0.0232797 -0.0102677 0.000451715 0.0086029 0.0113506 0.00353783 -0.00309794 5.51288e-07 0.00129823 0.110992 0.114347 0.117997 0.12195 0.12582 0.129789 0.131995 0.131391 0.127454 0.119346 0.103988 0.0814485 0.0534607 0.0217105 -0.00791716 -0.041758 -0.0639296 -0.0372301 -0.0653805 -0.0709364 -0.160498 -0.0428578 -0.0121255 -0.00115503 0.00646527 0.00902385 0.00323186 -0.0021139 0.000169902 0.000995629 0.113755 0.11354 0.11662 0.120445 0.124597 0.131322 0.138617 0.132016 0.126769 0.114995 0.0956967 0.0727549 0.0357877 0.0006061 -0.029866 -0.0490471 -0.0690394 -0.0913572 0.179313 -0.0611368 -0.107724 -0.0424719 -0.0146914 -0.00292969 0.00438267 0.00693963 0.00287922 -0.00129687 0.000291607 0.00070314 0.100761 0.103465 0.106562 0.11001 0.11344 0.117786 0.122575 0.118035 0.110449 0.0943149 0.074437 0.0422621 0.00113956 -0.0374575 -0.0603851 -0.0716941 -0.0762623 -0.085823 0.50422 -0.0866358 -0.0686096 -0.0426823 -0.0170367 -0.00476743 0.00240642 0.00508842 0.0024748 -0.00065381 0.000384843 0.000472695 0.0907391 0.0921461 0.0936726 0.0952353 0.0966167 0.0973975 0.0955909 0.0888911 0.0741631 0.0502025 0.0174221 0.00958633 -0.0369976 -0.112102 -0.116673 -0.103545 -0.0872882 -0.0701935 -0.0300572 -0.138512 -0.0602531 -0.0410281 -0.0187743 -0.00653007 0.000599447 0.00346997 0.00202761 -0.000187861 0.000452548 0.000326498 0.0769268 0.0772262 0.0771743 0.0765246 0.0748032 0.0707389 0.062311 0.0485454 0.0255995 -0.0155374 -0.0686986 -0.137057 -0.198351 -0.230798 -0.200738 -0.140932 -0.0938794 -0.0444419 -0.0217153 -0.0579294 -0.0516611 -0.038977 -0.0199538 -0.00807168 -0.0009607 0.00209343 0.00156083 0.000111012 0.000485533 0.000247943 0.0573276 0.0569785 0.0557413 0.0529341 0.0472091 0.0349841 0.0290558 0.00163859 -0.0177267 -0.0891553 -0.183532 -0.270566 -0.347059 -0.376936 -0.323632 -0.206851 -0.0985503 -0.035302 0.176399 -0.0234335 -0.044814 -0.0149657 -0.020786 -0.00922296 -0.00218196 0.000975645 0.00110616 0.00026229 0.000471157 0.000208193 0.0311203 0.0313958 0.0305998 0.0282166 0.02332 0.0143858 0.0100111 -0.0349705 -0.0732488 -0.132438 -0.107137 -0.275531 -0.4034 -0.435144 -0.358967 -0.229439 -0.0916686 -0.0162337 0.0184848 0.469009 -0.0563358 -0.0192795 0.00337389 -0.00972771 -0.00295512 0.000137745 0.000694546 0.000294389 0.000409843 0.000180745 0.00680048 0.00712042 0.00660647 0.00449782 -0.000227542 -0.00889645 -0.0232016 -0.0440099 -0.0754601 -0.127201 -0.20122 -0.296776 -0.359045 -0.358326 -0.301239 -0.191719 -0.0745594 -0.0061002 0.011753 0.152565 -0.164204 -0.040253 -0.0242727 -0.00913256 -0.00317474 -0.000399868 0.00035022 0.000238702 0.000317125 0.000150582 0.00850074 0.0042937 0.00214149 -0.000592707 -0.00461193 -0.0103906 -0.0188592 -0.0317466 -0.0514527 -0.0807819 -0.120418 -0.165624 -0.19874 -0.200669 -0.168648 -0.107661 -0.0352948 0.00147747 -0.00120638 -0.100246 -0.0433751 -0.0274098 -0.018037 -0.00714473 -0.00278989 -0.000631048 8.89103e-05 0.00013224 0.00020515 0.000114072 0.00370179 0.00212026 -0.00408649 -0.00697499 -0.0107405 -0.00724961 -0.00710485 -0.0109279 -0.0203867 -0.0353911 -0.0555166 -0.0756501 -0.0861688 -0.0800848 -0.0501282 0.0961987 0.00436193 0.0127984 0.00742393 0.0111149 -0.00282637 0.0112747 -0.0097426 -0.0041052 -0.00187082 -0.000586833 -8.93564e-05 -1.51613e-06 7.89297e-05 6.93947e-05 0.000295362 0.00037611 0.00121514 -0.00299641 -0.00425465 -0.00170655 -0.0024812 -0.00401003 0.00539569 -0.00875529 -0.0178785 0.0331616 -0.0189292 -0.00667462 -0.00194857 -0.000171496 0.00928651 0.00444267 0.00214969 0.00265394 -0.000132785 -0.0014214 0.000260028 0.000318761 -0.000317975 -0.000259491 -0.000223792 -0.000178918 -7.29585e-05 2.38919e-06 ) ; boundaryField { leftWall { type fixedFluxPressure; gradient uniform 0; value nonuniform List<scalar> 120 ( 122.934 122.962 123.039 123.166 123.342 123.568 123.846 124.175 124.557 124.993 125.483 126.027 126.62 127.261 127.943 128.661 129.405 130.163 130.914 131.629 132.267 132.769 133.065 133.073 132.708 131.905 130.661 129.154 127.623 125.421 122.941 122.994 123.096 123.247 123.449 123.701 124.004 124.36 124.768 125.231 125.748 126.317 126.935 127.597 128.298 129.031 129.784 130.541 131.278 131.961 132.539 132.948 133.11 132.942 132.363 131.334 129.917 128.418 127.242 122.119 122.932 122.95 123.015 123.129 123.293 123.507 123.772 124.088 124.457 124.879 125.356 125.886 126.467 127.096 127.769 128.479 129.217 129.974 130.728 131.456 132.117 132.66 133.015 133.103 132.838 132.148 131.009 129.534 128.043 126.456 122.935 122.977 123.066 123.205 123.394 123.633 123.923 124.266 124.661 125.11 125.614 126.17 126.776 127.428 128.12 128.845 129.595 130.353 131.098 131.798 132.407 132.866 133.097 133.019 132.55 131.633 130.295 128.783 127.419 123.981 ) ; } rightWall { type fixedFluxPressure; gradient uniform 0; value nonuniform List<scalar> 120 ( 106.715 106.728 106.761 106.814 106.887 106.981 107.098 107.236 107.398 107.583 107.791 108.024 108.281 108.564 108.872 109.207 109.568 109.953 110.359 110.783 111.216 111.646 112.051 112.4 112.646 112.717 112.502 111.829 110.42 107.926 106.717 106.719 106.742 106.785 106.848 106.932 107.037 107.164 107.314 107.488 107.684 107.905 108.149 108.419 108.715 109.037 109.384 109.757 110.153 110.57 110.999 111.433 111.853 112.235 112.54 112.709 112.654 112.237 111.239 109.328 106.717 106.734 106.772 106.83 106.909 107.008 107.13 107.274 107.442 107.633 107.847 108.086 108.349 108.638 108.954 109.295 109.662 110.052 110.464 110.891 111.325 111.75 112.145 112.474 112.684 112.695 112.385 111.56 109.91 107.095 106.715 106.723 106.751 106.798 106.867 106.956 107.067 107.199 107.356 107.535 107.737 107.963 108.214 108.491 108.793 109.121 109.475 109.854 110.256 110.676 111.108 111.54 111.953 112.321 112.598 112.721 112.59 112.053 110.861 108.664 ) ; } lowerWall { type fixedFluxPressure; gradient uniform 0; value nonuniform List<scalar> 240 ( 120.849 110.634 100.087 92.3739 86.8146 83.1653 82.0781 84.4814 88.9389 92.8347 95.1112 95.9086 95.6862 94.8848 93.8315 92.736 91.7188 90.8391 90.1172 89.548 89.1137 88.7917 88.5598 88.3988 88.293 88.2297 88.1988 88.1923 88.2036 88.2276 88.263 88.3138 88.3857 88.4841 88.6158 88.789 89.0139 89.3033 89.6726 90.1403 90.7259 91.4473 92.3144 93.3209 94.4338 95.586 96.6639 97.4764 97.7194 96.9764 94.7714 90.9182 86.5347 84.1376 84.7196 87.6748 92.3479 97.6727 102.836 106.386 122.934 113.009 102.452 94.0702 88.0262 83.8866 82.0383 83.5817 87.794 92.0014 94.696 95.8234 95.8113 95.119 94.1049 93.0058 91.9615 91.0444 90.2827 89.6767 89.2108 88.8629 88.6104 88.4333 88.315 88.2421 88.204 88.192 88.1994 88.2207 88.253 88.2993 88.3655 88.4567 88.5794 88.7413 88.9523 89.2241 89.5719 90.0132 90.5675 91.2536 92.0841 93.0578 94.1489 95.2998 96.4104 97.3131 97.7335 97.2811 95.4821 92.0085 87.5435 84.4452 84.3274 86.7449 91.0848 96.346 101.653 105.842 118.217 107.502 97.8658 90.7613 85.6926 82.5918 82.3604 85.543 90.0663 93.5794 95.4403 95.93 95.5208 94.6285 93.5485 92.4644 91.4787 90.6388 89.9572 89.4247 89.0213 88.7245 88.5124 88.367 88.2731 88.2191 88.1951 88.1937 88.2087 88.2353 88.2737 88.3292 88.407 88.5129 88.6538 88.8386 89.0779 89.3852 89.7767 90.2714 90.8886 91.6449 92.5474 93.584 94.7141 95.8609 96.8956 97.602 97.6469 96.5907 93.9738 89.8136 85.6842 84.0232 85.2444 88.6938 93.6334 99.0003 103.993 106.717 121.959 116.204 104.904 95.8665 89.3193 84.7152 82.212 82.8811 86.6689 91.0915 94.1954 95.6719 95.8929 95.3285 94.3667 93.2724 92.2059 91.2539 90.4535 89.8107 89.3125 88.938 88.6643 88.4705 88.3392 88.2563 88.2106 88.1929 88.1961 88.2144 88.2438 88.2857 88.3464 88.4306 88.5445 88.6956 88.8929 89.1478 89.4746 89.89 90.4135 91.0643 91.8571 92.7954 93.8605 95.0037 96.1373 97.1147 97.6918 97.5064 96.0985 93.0516 88.6706 84.9682 84.0847 85.9146 89.8282 94.9516 100.302 104.931 ) ; } atmosphere { type totalPressure; rho rho; psi none; gamma 1; p0 uniform 0; value nonuniform List<scalar> 480 ( 0 0 0 0 0 0 0 -0.00173368 -0.0132482 -0.0164245 -0.0154331 -0.0133945 -0.0112161 -0.00951331 -0.00843905 -0.00746975 -0.00630333 -0.00491001 -0.00366786 -0.00269453 -0.00207798 -0.00183268 -0.0017847 -0.00151228 -0.000360914 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.00226579 -0.0226144 -0.0319783 -0.0290956 -0.0226878 -0.016732 -0.0123462 -0.00971871 -0.00904447 -0.0106121 -0.0126675 -0.0132316 -0.0121243 -0.0100377 -0.0077709 -0.00571798 -0.00400068 -0.00285964 -0.00209335 -0.00160132 -0.00120433 -0.000729397 -0.000307498 -1.19175e-06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8.67825e-07 0 0 -9.03756e-06 -0.000195094 -0.000238976 -0.000240167 -0.000199636 -9.16862e-05 -1.11701e-06 0 0 0 0 0 0 -0.0409693 -0.0585469 -0.0515118 -0.0411052 -0.0317711 -0.0241648 -0.0181797 -0.0135654 -0.0100574 -0.00741097 -0.005424 -0.00394137 -0.00284714 -0.00204503 -0.00145935 -0.00103124 -0.000717694 -0.000487895 -0.000319924 -0.000198231 -0.000111796 -5.29838e-05 -1.7064e-05 -1.38546e-07 0 0 0 0 0 0 0 0 0 -0.00828936 -0.0265037 -0.0319808 -0.0275874 -0.0210822 -0.0154742 -0.0115226 -0.00935214 -0.00923214 -0.0111905 -0.012971 -0.013095 -0.0116551 -0.00946192 -0.00723023 -0.00524725 -0.00365534 -0.00260567 -0.0019581 -0.00149083 -0.00106395 -0.000622601 -0.000204589 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.7063e-08 0 0 -5.51723e-05 -0.000215625 -0.000241498 -0.00023557 -0.000178653 -6.00559e-05 0 0 0 0 0 0 0 -0.00816768 -0.0156895 -0.0161764 -0.0144736 -0.012305 -0.010278 -0.0089306 -0.00797741 -0.00694078 -0.00558281 -0.00431294 -0.00313678 -0.00228371 -0.00192011 -0.00181574 -0.00172936 -0.00106131 0 0 0 0 0 0 0 0 0 0 0 0 -0.0121551 -0.0554457 -0.0561483 -0.0463408 -0.0362736 -0.0277875 -0.0210116 -0.0157386 -0.0117052 -0.00865213 -0.00635493 -0.00463413 -0.00335714 -0.00241864 -0.00173195 -0.00123062 -0.000863776 -0.000594932 -0.000398055 -0.000254645 -0.000151555 -7.95771e-05 -3.25189e-05 -6.89302e-06 0 0 0 0 0 0 0 0 0 -0.0178852 -0.0311195 -0.030436 -0.0243745 -0.018128 -0.0133059 -0.0102208 -0.00900551 -0.0100511 -0.0122424 -0.0132537 -0.0125393 -0.0106155 -0.0083388 -0.00621889 -0.00439172 -0.00310856 -0.00224018 -0.00172299 -0.00128597 -0.000837237 -0.000410688 -3.70016e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.000163188 -0.000234846 -0.000242319 -0.000215565 -0.000122648 -1.08127e-05 0 0 0 0 0 0 0 0 0 -0.0130527 -0.029308 -0.0314341 -0.0260225 -0.0195838 -0.0143512 -0.0108257 -0.00911447 -0.00958453 -0.0117381 -0.0131635 -0.0128653 -0.011157 -0.00890475 -0.00672267 -0.00481065 -0.00338708 -0.00240409 -0.00185215 -0.00138701 -0.00094796 -0.000516363 -0.000109315 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.000115366 -0.000227847 -0.000242658 -0.00022746 -0.000152234 -3.13375e-05 0 0 0 0 0 0 0 -1.62547e-05 -0.0110377 -0.0162249 -0.0158512 -0.0139467 -0.0117571 -0.00987435 -0.00867881 -0.00773072 -0.00664349 -0.0052348 -0.00399327 -0.00291688 -0.00215751 -0.00186361 -0.0018033 -0.00165172 -0.000727614 0 0 0 0 0 0 0 0 0 0 -0.000749335 -0.0499297 -0.0577666 -0.0489768 -0.0386675 -0.0297465 -0.0225574 -0.0169323 -0.0126134 -0.00933777 -0.00686996 -0.00501894 -0.00364136 -0.00262703 -0.00188408 -0.00134183 -0.000945209 -0.000654624 -0.000441717 -0.000286325 -0.000174139 -9.50648e-05 -4.21878e-05 -1.1437e-05 -1.24025e-06 0 0 0 0 0 0 0 -0.00492291 -0.0147505 -0.0163816 -0.0149667 -0.0128454 -0.0107201 -0.00920187 -0.00820866 -0.007208 -0.00594131 -0.00461003 -0.00337923 -0.00246705 -0.00200273 -0.00182702 -0.00176598 -0.00131793 -8.43697e-05 0 0 0 0 0 0 0 0 0 0 0 -0.0278693 -0.0580321 -0.0539549 -0.0436684 -0.0339448 -0.0259044 -0.0195355 -0.0146042 -0.010844 -0.0080032 -0.00586771 -0.00427112 -0.00308957 -0.00222246 -0.00158889 -0.00112599 -0.000787149 -0.000538767 -0.000357028 -0.000224966 -0.000130552 -6.53958e-05 -2.40508e-05 -3.4661e-06 ) ; } defaultFaces { type empty; } } // ************************************************************************* //
[ "stig.m.nilsen@gmail.com" ]
stig.m.nilsen@gmail.com
d587c016ce4e0cc955f23c59cc0798db7a61157d
3841f7991232e02c850b7e2ff6e02712e9128b17
/小浪底泥沙三维/EV_Xld/jni/src/EV_Spatial3DEngine_Java/wrapper/texturecompositor_wrapperjava.cpp
f013bc95c5f8eac4e6a3d76438bff366a3148423
[]
no_license
15831944/BeijingEVProjects
62bf734f1cb0a8be6fed42cf6b207f9dbdf99e71
3b5fa4c4889557008529958fc7cb51927259f66e
refs/heads/master
2021-07-22T14:12:15.106616
2017-10-15T11:33:06
2017-10-15T11:33:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,250
cpp
/* This file is produced by the JNI AutoWrapper Utility Copyright (c) 2012 by EarthView Image Inc */ #include "spatial3dengine/texturecompositor.h" #include <jni.h> #include "core_java/global_reference.h" #include "core_java/jni_load.h" #include <typeinfo> namespace EarthView { namespace World { namespace Spatial3D { extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial3d_TextureCompositor_thumbImage_1EarthView_1World_1Core_1ev_1wstring_1EarthView_1World_1Core_1ev_1wstring(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jstring path_j, jstring imagefilename_j) { const ev_wchar* path_wch = (const ev_wchar*)__env->GetStringChars(path_j,JNI_FALSE); const EarthView::World::Core::ev_wstring path = path_wch; __env->ReleaseStringChars(path_j,(jchar*)path_wch); const ev_wchar* imagefilename_wch = (const ev_wchar*)__env->GetStringChars(imagefilename_j,JNI_FALSE); const EarthView::World::Core::ev_wstring imagefilename = imagefilename_wch; __env->ReleaseStringChars(imagefilename_j,(jchar*)imagefilename_wch); EarthView::World::Spatial3D::CTextureCompositor *pObjectX = (EarthView::World::Spatial3D::CTextureCompositor*) pObjXXXX; pObjectX->thumbImage(path, imagefilename); } } } }
[ "yanguanqi@aliyun.com" ]
yanguanqi@aliyun.com
18be5769eb8bd14410d6b1b7cbb724622ecab68c
61f89443adcc81d28643ef5d6bebf29acb4e5dcb
/Binary_Search_Tree/BSTNode.h
c8576abcf56e8724a9099d1220ed12677c52e40b
[]
no_license
ParkJun-Yeong/Binary_Search_Tree
afa1c131e0f4599430b254e4126394021871a2a6
8525f6e6d31f073481fdac0765903211ecd5f20d
refs/heads/main
2023-01-16T01:08:51.949517
2020-11-21T04:08:42
2020-11-21T04:08:42
314,613,438
0
0
null
null
null
null
UTF-8
C++
false
false
157
h
#pragma once class BST; class BSTNode { private: BSTNode* leftchild; BSTNode* rightchild; int data; friend BST; public: BSTNode(int); ~BSTNode(); };
[ "71695015+ParkJun-Yeong@users.noreply.github.com" ]
71695015+ParkJun-Yeong@users.noreply.github.com
59cb0eeafec65c0d69162c2bdbd4080566139073
51dddcedfbc88d417908b9d129a4f59ac7a0efa8
/src/cpu/operators/CpuScale.cpp
27da238c166fa5370ba578e80cd5776165b69e87
[ "MIT", "LicenseRef-scancode-dco-1.1" ]
permissive
wangqiang1588/ComputeLibrary
ef0eae0a44deca1699956061bd4a8b0c7ccfec36
8f587de9214dbc3aee4ff4eeb2ede66747769b19
refs/heads/master
2023-03-04T10:35:49.976221
2022-02-26T12:23:41
2022-02-26T12:23:41
159,774,000
0
0
MIT
2018-11-30T05:39:05
2018-11-30T05:39:05
null
UTF-8
C++
false
false
11,803
cpp
/* * Copyright (c) 2021 Arm Limited. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "src/cpu/operators/CpuScale.h" #include "arm_compute/core/Helpers.h" #include "arm_compute/core/TensorInfo.h" #include "arm_compute/core/Validate.h" #include "arm_compute/runtime/NEON/NEScheduler.h" #include "src/common/utils/Log.h" #include "src/core/utils/ScaleUtils.h" #include "src/cpu/kernels/CpuScaleKernel.h" #include "support/Rounding.h" namespace arm_compute { namespace cpu { namespace { void precompute_dx_dy_offsets(ITensor *dx, ITensor *dy, ITensor *offsets, float wr, float hr, SamplingPolicy sampling_policy, bool align_corners) { ARM_COMPUTE_ERROR_ON(offsets == nullptr); float sampling_offset = 0.0f; if(sampling_policy == SamplingPolicy::CENTER) { sampling_offset = 0.5f; } Window win; win.set(Window::DimX, Window::Dimension(0, offsets->info()->dimension(0), 1)); win.set(Window::DimY, Window::Dimension(0, offsets->info()->dimension(1), 1)); if(dx != nullptr && dy != nullptr) { // Pre-compute the offset and pixel's distance for BILINEAR interpolation Iterator offsets_it(offsets, win); Iterator dx_it(dx, win); Iterator dy_it(dy, win); execute_window_loop(win, [&](const Coordinates & id) { const float in_x = (id.x() + sampling_offset) * wr - sampling_offset; const float in_y = (id.y() + sampling_offset) * hr - sampling_offset; const int in_xi = std::floor(in_x); const int in_yi = std::floor(in_y); *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi; *reinterpret_cast<float *>(dx_it.ptr()) = in_x - in_xi; *reinterpret_cast<float *>(dy_it.ptr()) = in_y - in_yi; }, offsets_it, dx_it, dy_it); } else { // Pre-compute the offset for NEAREST interpolation Iterator offsets_it(offsets, win); execute_window_loop(win, [&](const Coordinates & id) { const float float_in_xi = (id.x() + sampling_offset) * wr; const auto in_xi = static_cast<size_t>(align_corners ? arm_compute::utils::rounding::round_half_away_from_zero(float_in_xi) : std::floor(float_in_xi)); *reinterpret_cast<int32_t *>(offsets_it.ptr()) = in_xi; }, offsets_it); } } } // namespace void CpuScale::configure(ITensorInfo *src, ITensorInfo *dst, const ScaleKernelInfo &info) { ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst); ARM_COMPUTE_ERROR_THROW_ON(CpuScale::validate(src, dst, info)); ARM_COMPUTE_LOG_PARAMS(src, dst, info); _scale_info = info; _is_prepared = false; // Get data layout and width/height indices _data_layout = _scale_info.data_layout == DataLayout::UNKNOWN ? src->data_layout() : _scale_info.data_layout; const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH); const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT); // Compute the ratio between source width/height and destination width/height const bool is_align_corners_used = _scale_info.align_corners && arm_compute::scale_utils::is_align_corners_allowed_sampling_policy(_scale_info.sampling_policy); const auto wr = arm_compute::scale_utils::calculate_resize_ratio(src->dimension(idx_width), dst->dimension(idx_width), is_align_corners_used); const auto hr = arm_compute::scale_utils::calculate_resize_ratio(src->dimension(idx_height), dst->dimension(idx_height), is_align_corners_used); // Area interpolation behaves as Nearest Neighbour in case of up-sampling InterpolationPolicy policy_to_use = (_scale_info.interpolation_policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f) ? InterpolationPolicy::NEAREST_NEIGHBOR : _scale_info.interpolation_policy; // Get the tensor shape TensorShape shape(dst->dimension(idx_width)); shape.set(1, dst->dimension(idx_height), false); TensorInfo tensor_info_offsets(shape, Format::S32); TensorInfo tensor_info_dxdy(shape, Format::F32); auto dx = std::make_unique<TensorInfo>(tensor_info_dxdy); auto dy = std::make_unique<TensorInfo>(tensor_info_dxdy); auto offsets = std::make_unique<TensorInfo>(tensor_info_offsets); auto scale_kernel = std::make_unique<kernels::CpuScaleKernel>(); switch(policy_to_use) { case InterpolationPolicy::NEAREST_NEIGHBOR: { scale_kernel->configure(src, nullptr, nullptr, offsets.get(), dst, info); break; } case InterpolationPolicy::BILINEAR: { scale_kernel->configure(src, dx.get(), dy.get(), offsets.get(), dst, info); break; } case InterpolationPolicy::AREA: { scale_kernel->configure(src, nullptr, nullptr, nullptr, dst, info); break; } default: ARM_COMPUTE_ERROR("Unsupported interpolation mode"); } _kernel = std::move(scale_kernel); } Status CpuScale::validate(const ITensorInfo *src, const ITensorInfo *dst, const ScaleKernelInfo &info) { ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst); ARM_COMPUTE_RETURN_ERROR_ON(info.sampling_policy != SamplingPolicy::CENTER && info.sampling_policy != SamplingPolicy::TOP_LEFT); ITensorInfo *offsets = nullptr; ITensorInfo *dx = nullptr; ITensorInfo *dy = nullptr; // Get data layout and width/height indices const DataLayout data_layout = info.data_layout == DataLayout::UNKNOWN ? src->data_layout() : info.data_layout; const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH); const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT); // Compute the ratio between source width/height and destination width/height const bool is_align_corners_used = info.align_corners && arm_compute::scale_utils::is_align_corners_allowed_sampling_policy(info.sampling_policy); const auto wr = arm_compute::scale_utils::calculate_resize_ratio(src->dimension(idx_width), dst->dimension(idx_width), is_align_corners_used); const auto hr = arm_compute::scale_utils::calculate_resize_ratio(src->dimension(idx_height), dst->dimension(idx_height), is_align_corners_used); // Area interpolation behaves as Nearest Neighbour in case of up-sampling InterpolationPolicy policy_to_use = (info.interpolation_policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f) ? InterpolationPolicy::NEAREST_NEIGHBOR : info.interpolation_policy; // Get the tensor shape of auxilary buffers const TensorShape shape(dst->dimension(idx_width), dst->dimension(idx_height)); TensorInfo tensor_info_offsets(shape, Format::S32); TensorInfo tensor_info_dx(shape, Format::F32); TensorInfo tensor_info_dy(shape, Format::F32); switch(policy_to_use) { case InterpolationPolicy::NEAREST_NEIGHBOR: offsets = &tensor_info_offsets; break; case InterpolationPolicy::BILINEAR: offsets = &tensor_info_offsets; dx = &tensor_info_dx; dy = &tensor_info_dy; break; default: break; } ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuScaleKernel::validate(src->clone().get(), dx, dy, offsets, dst->clone().get(), info)); return Status{}; } void CpuScale::prepare(ITensorPack &tensors) { if(!_is_prepared) { _is_prepared = true; const auto src = tensors.get_const_tensor(TensorType::ACL_SRC); auto dst = tensors.get_tensor(TensorType::ACL_DST); auto dx = tensors.get_tensor(TensorType::ACL_INT_0); auto dy = tensors.get_tensor(TensorType::ACL_INT_1); auto offsets = tensors.get_tensor(TensorType::ACL_INT_2); // Get data layout and width/height indices const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH); const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT); // Compute the ratio between source width/height and destination width/height const bool is_align_corners_used = _scale_info.align_corners && arm_compute::scale_utils::is_align_corners_allowed_sampling_policy(_scale_info.sampling_policy); const auto wr = arm_compute::scale_utils::calculate_resize_ratio(src->info()->dimension(idx_width), dst->info()->dimension(idx_width), is_align_corners_used); const auto hr = arm_compute::scale_utils::calculate_resize_ratio(src->info()->dimension(idx_height), dst->info()->dimension(idx_height), is_align_corners_used); // Area interpolation behaves as Nearest Neighbour in case of up-sampling InterpolationPolicy policy_to_use = (_scale_info.interpolation_policy == InterpolationPolicy::AREA && wr <= 1.f && hr <= 1.f) ? InterpolationPolicy::NEAREST_NEIGHBOR : _scale_info.interpolation_policy; const SamplingPolicy sampling_policy = _scale_info.sampling_policy; switch(policy_to_use) { case InterpolationPolicy::NEAREST_NEIGHBOR: { // Pre-compute offsets for nearest interpolation precompute_dx_dy_offsets(nullptr, nullptr, offsets, wr, hr, sampling_policy, is_align_corners_used); break; } case InterpolationPolicy::BILINEAR: { // Pre-compute dx, dy and offsets for bilinear interpolation precompute_dx_dy_offsets(dx, dy, offsets, wr, hr, sampling_policy, is_align_corners_used); break; } case InterpolationPolicy::AREA: { break; } default: ARM_COMPUTE_ERROR("Unsupported interpolation mode"); } } } void CpuScale::run(ITensorPack &tensors) { ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided"); prepare(tensors); NEScheduler::get().schedule_op(_kernel.get(), Window::DimY, _kernel->window(), tensors); } } // namespace cpu } // namespace arm_compute
[ "bsgcomp@arm.com" ]
bsgcomp@arm.com
838914d527208e23da657d8e8e91f25b7cf01aad
47fbeb86875c519529ea0a9f858e3ed2fd62109e
/src/core/base64.cc
159f5bad910e5f0efa81d961e8cc74e82097549c
[ "MIT" ]
permissive
czjone/XSE.Frameworks
00d292b251d4bafbebec9ded5762f8fafe72e1be
d33fc3b6fc20f618f44aace73cef730f2cd57a23
refs/heads/master
2021-04-27T14:04:02.827588
2018-03-08T12:47:51
2018-03-08T12:47:51
122,448,620
0
0
null
null
null
null
UTF-8
C++
false
false
3,387
cc
#include "base64.h" #include <stdlib.h> #include <string> using namespace Xse; Base64::Base64() { _base64_table = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /*这是Base64编码使用的标准字典*/ } std::string Base64::Encode(const char * str,size_t size) { std::string _encode_result; const char * current; current = str; while(size > 2) { _encode_result += _base64_table[current[0] >> 2]; _encode_result += _base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)]; _encode_result += _base64_table[((current[1] & 0x0f) << 2) + (current[2] >> 6)]; _encode_result += _base64_table[current[2] & 0x3f]; current += 3; size -= 3; } if(size > 0) { _encode_result += _base64_table[current[0] >> 2]; if(size%3 == 1) { _encode_result += _base64_table[(current[0] & 0x03) << 4]; _encode_result += "=="; } else if(size%3 == 2) { _encode_result += _base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)]; _encode_result += _base64_table[(current[1] & 0x0f) << 2]; _encode_result += "="; } } return _encode_result; } std::string Base64::Decode(const char *str,size_t size) { const char DecodeTable[] = { -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -1, -2, -2, -1, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, 62, -2, -2, -2, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -2, -2, -2, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, -2, -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2 }; int bin = 0,i=0; std::string _decode_result; const char *current = str; char ch; while( (ch = *current++) != '\0' && size-- > 0 ) { if (ch == base64_pad) { if (*current != '=' && (i % 4) == 1) { return NULL; } continue; } ch = DecodeTable[ch]; if (ch < 0 ) { continue; } switch(i % 4) { case 0: bin = ch << 2; break; case 1: bin |= ch >> 4; _decode_result += bin; bin = ( ch & 0x0f ) << 4; break; case 2: bin |= ch >> 2; _decode_result += bin; bin = ( ch & 0x03 ) << 6; break; case 3: bin |= ch; _decode_result += bin; break; } i++; } return _decode_result; }
[ "solyess@solyesss-MacBook-Pro.local" ]
solyess@solyesss-MacBook-Pro.local
8a6bb8b2ff075cf0dc9e2eacd154ef4da93ccc39
5bcff04efc7bcfb741f21c46cd3fe0291e7a9311
/TuringMachineTests/UnitTests/TMStringCharPairHashPolicyTests.cpp
b81ccc116887891f7552b765dece4ee5505994c0
[ "MIT" ]
permissive
saleph/turing_machine
3628abe2713ec88e3c6de8d70bc5bdce608112cd
baacf690dee13d1624fbf85c8426c584b8e9472a
refs/heads/master
2021-01-21T04:14:34.607323
2016-02-19T13:16:53
2016-02-19T13:16:53
48,755,148
0
1
null
2016-02-13T20:49:24
2015-12-29T15:58:42
C++
UTF-8
C++
false
false
1,570
cpp
#include "TMStringCharPair.h" #include <memory> #define BOOST_TEST_NO_LIB #include <boost/test/unit_test.hpp> using namespace std; struct TMStringCharPairTestFixture { void insertToPair(unique_ptr<TMStringCharPair>& strCharPair, string str, char c) { strCharPair = make_unique<TMStringCharPair>(str, c); } size_t getHashFrom(unique_ptr<TMStringCharPair>& strCharPair) { return hash<TMStringCharPair>{}(*strCharPair); } unique_ptr<TMStringCharPair> firstPair; unique_ptr<TMStringCharPair> secondPair; }; BOOST_FIXTURE_TEST_SUITE(plain_TMStringCharPair_fixture, TMStringCharPairTestFixture) BOOST_AUTO_TEST_CASE( hash_check_for_the_same_pairs ) { insertToPair(firstPair, "string", 'c'); insertToPair(secondPair, "string", 'c'); BOOST_CHECK_EQUAL(getHashFrom(firstPair), getHashFrom(secondPair)); } BOOST_AUTO_TEST_CASE( hash_check_for_subtle_diffrent_pairs ) { insertToPair(firstPair, "string", 'c'); insertToPair(secondPair, "strin", 'c'); BOOST_CHECK_NE(getHashFrom(firstPair), getHashFrom(secondPair)); } BOOST_AUTO_TEST_CASE( hash_check_for_the_same_strings_diffrent_chars ) { insertToPair(firstPair, "string", 'c'); insertToPair(secondPair, "string", 'd'); BOOST_CHECK_NE(getHashFrom(firstPair), getHashFrom(secondPair)); } BOOST_AUTO_TEST_CASE( hash_check_for_entirely_diffrent_pairs ) { insertToPair(firstPair, "string", 'c'); insertToPair(secondPair, "someOther", '1'); BOOST_CHECK_NE(getHashFrom(firstPair), getHashFrom(secondPair)); } BOOST_AUTO_TEST_SUITE_END()
[ "tomasz.galecki@hotmail.com" ]
tomasz.galecki@hotmail.com
153f8d5eae1f3e0cf0e28bd98b3fc9bbe7aed038
2bf25a0dca5eaa1e41733c5e8070f578e19a27a9
/DivideAndConquer/MedianofTwoSortedArray(binarySearch).cpp
88e4c29b694835432b1920db289632ea76ce464d
[]
no_license
saumya-egov/DSA
48f99c82c40b717bcb5865d5b33d98923207bc75
a0bd51f882ae3b567f92b571d072d56c6b653eed
refs/heads/main
2023-07-13T19:39:24.379612
2021-08-12T16:52:22
2021-08-12T16:52:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,202
cpp
Given two sorted arrays array1 and array2 of size m and n respectively. Find the median of the two sorted arrays. Example 1: Input: m = 3, n = 4 array1[] = {1,5,9} array2[] = {2,3,6,7} Output: 5 Explanation: The middle element for {1,2,3,5,6,7,9} is 5 ----------------------------------------------------------------------------------------------------- double MedianOfArrays(vector<int>& array1, vector<int>& array2) { int len1=array1.size(); int len2=array2.size(); if(len1>len2) return MedianOfArrays(array2,array1); int l=0; int h=len1; int mid=(len1+len2+1)/2; while(l<=h) { int cut1=(l+h)/2; int cut2=mid-cut1; int l1=cut1==0?INT_MIN:array1[cut1-1]; int l2=cut2==0?INT_MIN:array2[cut2-1]; int r1=cut1==len1?INT_MAX:array1[cut1]; int r2=cut2==len2?INT_MAX:array2[cut2]; if(l1<=r2 && l2<=r1) { if((len1+len2)%2==0) { return((max(l1,l2)+min(r1,r2))/2.0); } else return max(l1,l2); } else { if(l1>r2) h=cut1-1; else l=cut1+1; } } return -1; }
[ "noreply@github.com" ]
saumya-egov.noreply@github.com
48956ecae63ee8cb052d58072b32bfae102f1b9e
63c71060f36866bca4ac27304cef6d5755fdc35c
/src/StatUtil/StatRecord.cpp
b0a77b6f6daac020bbd5f37d4b27a54ecd60978f
[]
no_license
15831944/barry_dev
bc8441cbfbd4b62fbb42bee3dcb79ff7f5fcaf8a
d4a83421458aa28ca293caa7a5567433e9358596
refs/heads/master
2022-03-24T07:00:26.810732
2015-12-22T07:19:58
2015-12-22T07:19:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,222
cpp
//////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2005 // Packet Engineering, Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification is not permitted unless authorized in writing by a duly // appointed officer of Packet Engineering, Inc. or its derivatives // // // Modification History: // 2014/01/22 Created by Ketty //////////////////////////////////////////////////////////////////////////// #include "StatUtil/StatRecord.h" #include "CounterUtil/CounterUtil.h" #include "Util/Buff.h" #include "Debug/Debug.h" #include <time.h> static u64 sgTotalCmpNum = 0; AosStatRecord::AosStatRecord(AosMemoryCheckDeclBegin) : AosDataRecord(AosDataRecordType::eStatRecord, AOSRECORDTYPE_STAT_RECORD, false AosMemoryCheckerFileLine), mKeyValueList(0), mMeasureInfoList(0), mMeasureMapperList(0), mHasValidFlag(false), mMeasureValues(0), mTimeKeyPos(-1), mGrpbyKeyNum(-1) { //do nothing for now } AosStatRecord::AosStatRecord(const AosStatRecord &rhs, AosRundata *rdata AosMemoryCheckDecl) : AosDataRecord(rhs, rdata AosMemoryCheckerFileLine), mKeyValueList(rhs.mKeyValueList), mStatKeyValueList(rhs.mStatKeyValueList), mMeasureInfoList(rhs.mMeasureInfoList), mDistInMeasureList(rhs.mDistInMeasureList), mMeasureMapperList(rhs.mMeasureMapperList), mMeasureValidList(rhs.mMeasureValidList), mFieldNameMap(rhs.mFieldNameMap), mHasValidFlag(rhs.mHasValidFlag), mMeasureValues(rhs.mMeasureValues), mDistValueMapList(rhs.mDistValueMapList), mTimeKeyPos(rhs.mTimeKeyPos), mTimeUnit(rhs.mTimeUnit), mGrpbyKeyNum(rhs.mGrpbyKeyNum), mStatKeyIdxMap(rhs.mStatKeyIdxMap), mKeyIdxTypeMap(rhs.mKeyIdxTypeMap) { } AosStatRecord::AosStatRecord(OmnValueList *keyValueList, vector<MeasureInfo> *infoList, vector<u32> *distInMeasureList AosMemoryCheckDecl) : AosDataRecord(AosDataRecordType::eStatRecord, AOSRECORDTYPE_STAT_RECORD, false AosMemoryCheckerFileLine), mKeyValueList(keyValueList), mMeasureInfoList(infoList), mDistInMeasureList(distInMeasureList), mMeasureMapperList(0), mHasValidFlag(false), mMeasureValues(0), mTimeKeyPos(-1), mGrpbyKeyNum(-1) { int dataLen = 8; OmnStringHashMap valueMap; //init the measure value list u32 len = mMeasureInfoList->size() * dataLen; mMeasureValues = (char *)calloc(len+1, sizeof(char)); for (u32 i = 0; i < mMeasureInfoList->size(); i++) mMeasureValidList.push_back(false); //init distinct count value map mDistValueMapList.clear(); valueMap.clear(); for (u32 i = 0; i < mDistInMeasureList->size(); i++) mDistValueMapList.push_back(valueMap); } AosStatRecord::AosStatRecord(OmnValueList *keyValueList, vector<MeasureInfo> *infoList AosMemoryCheckDecl) : AosDataRecord(AosDataRecordType::eStatRecord, AOSRECORDTYPE_STAT_RECORD, false AosMemoryCheckerFileLine), mKeyValueList(keyValueList), mMeasureInfoList(infoList), mDistInMeasureList(0), mMeasureMapperList(0), mHasValidFlag(false), mMeasureValues(0), mTimeKeyPos(-1), mGrpbyKeyNum(-1) { int dataLen = 8; OmnStringHashMap valueMap; //init the measure value list u32 len = mMeasureInfoList->size() * dataLen; mMeasureValues = (char *)calloc(len+1, sizeof(char)); } AosStatRecord::~AosStatRecord() { if (mMeasureValues) free(mMeasureValues); if (mKeyValueList) delete mKeyValueList; } // // Add both normal values and dist count values // from another stat record // // // When merging value from another record, which measure to merge is based on // the local record. If the record to be merged has other measures not in the // local measure list, they will be ignored // bool AosStatRecord::addValue( AosRundata* rdata, AosStatRecord *rcd, bool accumulateFlag) { bool rslt, rslt1; aos_assert_r(rcd, false); rslt = addValue(rdata, rcd->getMeasureValues(), rcd->getMeasureValidList(), accumulateFlag); rslt1 = addDistValue(rdata, rcd->getDistValueMapList()); aos_assert_r(rslt && rslt1, false); return rslt && rslt1; } // //Add normal measure values (excluding dist count) //this value is mostly added from vt2d record // //There might be a hasValidFlag if data is from //vt2d Record // //This method is mostly called in cube.exe // bool AosStatRecord::addValue(AosRundata* rdata, u32 vt2dIndex, char *value, u32 vLen) { AosMeasureValueMapper *mapper; u32 iPos, oPos; char* dataPos; AosExprObjPtr cond; char *statMeasureValue = 0; AosDataType::E dataType; AosAggrFuncObj *aggr; int defaultLen = 8; int dataLen = defaultLen; //all the stat value use 8 bytes for now aos_assert_r(vt2dIndex >= 0 && vt2dIndex < mMeasureMapperList->size(), false); if (mHasValidFlag) dataLen++; // select count(abc=3), count(abc=4) mapper = &((*mMeasureMapperList)[vt2dIndex]); for (u32 i = 0; i < mapper->getMeasureValueNum(); i++) { iPos = mapper->getInputIndex(i); oPos = mapper->getOutputIndex(i); aggr = mapper->getAggrFunc(i); aos_assert_r(aggr, false); //get stat value and len statMeasureValue = &mMeasureValues[oPos * defaultLen]; dataType = (*mMeasureInfoList)[oPos].mDataType; aos_assert_r(vLen >= (iPos + 1) * dataLen, false); dataPos = value + iPos * dataLen; if (mHasValidFlag) { if (dataPos[0] == 0) continue; dataPos++; } AosValueRslt vv; char tmpValue[8]; memcpy(tmpValue,dataPos,defaultLen); cond =(*mMeasureInfoList)[i].mCond; if(cond) { cond->getValue(rdata,this,vv); if (!vv.getBool()) { memset(tmpValue,0,defaultLen); } } if (mMeasureValidList[oPos]) { aggr->updateOutputData(rdata, tmpValue, dataType, statMeasureValue, dataType); } else { memcpy(statMeasureValue, tmpValue, sizeof(i64)); mMeasureValidList[oPos] = true; } } return true; } // //add normal measure value (excluding dist count) from another stat record // bool AosStatRecord::addValue(AosRundata* rdata, char *value, vector<bool> &measureValidList, bool accumulateFlag) { AosDataType::E dataType; AosAggrFuncObj *aggr; int dataLen = 8; //all the stat value use 8 bytes for now aos_assert_r(value, false); aos_assert_r(measureValidList.size() == mMeasureValidList.size(), false); for (u32 i = 0; i < mMeasureInfoList->size(); i++) { if (!measureValidList[i]) { //the new record doesn't have this measure value continue; } if (!mMeasureValidList[i]) { //just copy the new record's measure value memcpy(mMeasureValues + i * dataLen, value + i * dataLen, sizeof(i64)); mMeasureValidList[i] = true; continue; } if (accumulateFlag && !(*mMeasureInfoList)[i].mIsAccumulate) { //not an accumulate measure, skip continue; } dataType = (*mMeasureInfoList)[i].mDataType; aggr = (*mMeasureInfoList)[i].mAggrFuncRaw; aos_assert_r(aggr, false); aggr->updateOutputData(rdata, value + i * dataLen, dataType, mMeasureValues + i * dataLen, dataType); //aos_assert_r(mMeasureValues[2] == 0, false); } return true; } // //add dist value from a vector2d record // bool AosStatRecord::addDistValue(AosRundata* rdata, OmnString &value) { OmnStringHashMap *valueMap; OmnStringHashMap::iterator valItr; //if value from vt2drecord, there should be only //one dist field aos_assert_r(mDistValueMapList.size() == 1, false); valueMap = &mDistValueMapList[0]; //add a new variation if not existing (*valueMap)[value] = 1; return true; } // //merge dist value from another stat record // bool AosStatRecord::addDistValue(AosRundata* rdata, vector<OmnStringHashMap> &distValueMapList) { OmnStringHashMap *valueMap, *localValueMap; OmnStringHashMap::iterator valItr, localValItr; OmnString str; aos_assert_r(distValueMapList.size() == mDistValueMapList.size(), false); for (u32 i = 0; i < distValueMapList.size(); i++) { localValueMap = &mDistValueMapList[i]; valueMap = &distValueMapList[i]; //merge valueList and localValueList into localValueList valItr = valueMap->begin(); while (valItr != valueMap->end()) { str = valItr->first; (*localValueMap)[str] = 1; valItr++; } } return true; } bool AosStatRecord::addDistValue( AosRundata* rdata, char* value) { OmnStringHashMap *valueMap; OmnStringHashMap::iterator valItr; // if value from vt2drecord, there should be only // one dist field char* ptr = value; for(int i=0;i<mDistValueMapList.size();i++) { valueMap = &mDistValueMapList[i]; //add a new variation if not existing ptr += 1; u64* valptr = (u64*)(*(u64*)ptr); u64 valcnt = *valptr; u64* vals = valptr+1; for(u64 j=0;j<valcnt;j++) { OmnString val; val << vals[j]; (*valueMap)[val] = 1; } ptr += sizeof(u64); } char *buff = (char*)(*(u64*)(value+1)); delete buff; buff = NULL; return true; } bool AosStatRecord::serializeTo( const AosRundataPtr &rdata, AosBuff *buff) { int dataLen = 8; u32 num, valNum; bool rslt; OmnStringHashMap *valueMap; OmnStringHashMap::iterator itr; //set key values num = mKeyValueList->size(); buff->setU32(num); for (u32 i = 0; i < num; i++) { //buff->setOmnStr((*mKeyValueList)[i]); rslt= serializeKeyToBuff(buff,i); aos_assert_r(rslt,false); } // Ketty 2014/12/02 // set stat key values. num = mStatKeyValueList.size(); buff->setU32(num); for (u32 i = 0; i < num; i++) { buff->setOmnStr(mStatKeyValueList[i]); } //set measure value //buff->setCharStr(mMeasureValues, len, false); num = mMeasureInfoList->size() * dataLen; buff->setU32(num); buff->setBuff(mMeasureValues, num); //set measure valid info num = mMeasureValidList.size(); buff->setU32(num); for (u32 i = 0; i < num; i++) { if (mMeasureValidList[i]) buff->setBool(true); else buff->setBool(false); } //serialize the dist count values //save number of dist_count measures firstly num = mDistValueMapList.size(); buff->setU32(num); for (u32 i = 0; i < num; i++) { //save dist count values one by one //number of distinct values saved firstly valueMap = &mDistValueMapList[i]; valNum = valueMap->size(); buff->setU32(valNum); itr = valueMap->begin(); while (itr != valueMap->end()) { buff->setOmnStr(itr->first); itr++; } } return true; } bool AosStatRecord::serializeFrom( const AosRundataPtr &rdata, AosBuff *buff, vector<int> &measurePosList, vector<int> &distMeasurePosList) { u32 num; u32 valNum; OmnStringHashMap *valueMap; OmnStringHashMap::iterator itr; OmnString field; bool rslt; vector<bool> measureValidList; //static char measureValues[1024 * 8]; //give enough space //since there could be multiple stat engine //running at the same time, not use static //static char measureValues[1024 * 8]; //give enough space char measureValues[1024 * 8]; //give enough space int pos; u32 dataLen = 8; mKeyValueList = new OmnValueList(); //get key values num = buff->getU32(0); for (u32 i = 0; i < num; i++) { //mKeyValueList->push_back(buff->getOmnStr("")); rslt = serializeKeyFromBuff(buff,i); aos_assert_r(rslt, false); } num = buff->getU32(0); for (u32 i = 0; i < num; i++) { mStatKeyValueList.push_back(buff->getOmnStr("")); } num = buff->getU32(0); buff->getBuff(measureValues, num); //get valid flag list num = buff->getU32(0); for (u32 i = 0; i < num; i++) { measureValidList.push_back(buff->getBool(true)); } //serialize the value to the new record aos_assert_r(num == measurePosList.size(), false); for (u32 i = 0; i < num; i++) { if (!measureValidList[i]) continue; //get the position in mMeasureValues pos = measurePosList[i]; if (pos < 0) continue; memcpy(mMeasureValues + pos * dataLen, measureValues + i * dataLen, dataLen); mMeasureValidList[pos] = true; } //get the dist count values if any //remove old values since this method assume new values //coming from network only num = buff->getU32(0); aos_assert_r(num == distMeasurePosList.size(), false); OmnString str; for (u32 i = 0; i < num; i++) { pos = distMeasurePosList[i]; aos_assert_r(pos >= 0, false); valueMap = &mDistValueMapList[pos]; valNum = buff->getU32(0); for (u32 j = 0; j < valNum; j++) { str = buff->getOmnStr(""); (*valueMap)[str] = 1; } } return true; } // //1: parameter > current statRcd, current is before param //0: parameter = current statRcd //-1: parameter < current statRcd, current is after param // int AosStatRecord::cmpStatRecordKeys(OmnValueList *keyValueList, vector<bool> &orderIsAscList) { AosValueRslt kv; AosValueRslt localKv; i64 kvNum; i64 localKvNum; bool isAsc; int rslt; OmnString kv1; OmnString kv2; sgTotalCmpNum++; aos_assert_r(keyValueList->size() == mKeyValueList->size(), false); for (u32 i = 0; i < keyValueList->size(); i++) { kv = (*keyValueList)[i]; localKv = (*mKeyValueList)[i]; isAsc = orderIsAscList[i]; if (mTimeKeyPos ==(int) i) { //compare timeValue using integer kv1 = kv.getStr(); kvNum = kv1.toInt64(0); kv2 = localKv.getStr(); localKvNum = kv2.toInt64(0); rslt = AosOrderedCmp<i64>::cmpData(isAsc, localKvNum, kvNum); //rslt = cmpData(isAsc, localKv, kv); } else { rslt = cmpData(isAsc, localKv, kv); } if (rslt != 0) return rslt; } return 0; } void AosStatRecord::getKeyValue(u32 idx, AosValueRslt &val) { OmnString str; AosValueRslt vv; if (mKeyValueList->size() > idx) { //normal key value //str = (*mKeyValueList)[idx]; val = (*mKeyValueList)[idx]; if (val.getStr() == AGGR_TOKEN) //str = ""; val.setStr(""); } else { //most likely, this record is a rollup record which //doesn't have the asked field if (idx == 0) str = "Total"; else str = ""; val.setStr(str); } return ; /* //arvin 2015-10-8 AosDataType::E type = mKeyIdxTypeMap[idx]; switch(type) { case AosDataType::eInt64: case AosDataType::eDateTime: { i64 vv = str.toInt64(); val.setI64(vv); break; } case AosDataType::eU64: { u64 vv = str.toU64(); val.setU64(vv); break; } case AosDataType::eDouble: { double vv = str.toDouble(); val.setDouble(vv); break; } default: val.setStr(str); break; } */ } bool AosStatRecord::reduceDistCount() { u32 pos; u32 dataLen = 8; for (u32 i = 0; i < mDistValueMapList.size(); i++) { pos = (*mDistInMeasureList)[i]; *((u64*)(&mMeasureValues[pos * dataLen])) = mDistValueMapList[i].size(); } return true; } double char_x_to_double(char* input_char) { int flag = 0; double sum = 0.0; double divisor = 10.0; char *p = input_char; if (*input_char) { //所有输入的数值都必须在(0~9,+,-,.)之中 while(*p) { if (!((*p=='+') || (*p=='-')||(*p=='.')|| ((*p>='0') && (*p<='9')))) { cout<<"输入非法!请输入数值型参数!例如:12.3,125,-12.6等"<<endl; return 0.0; } p++; } //int j=0; if (*input_char == '+') { flag = 1; input_char++; //j++; //cout<<"(flag + )j="<<j<<endl; } if (*input_char == '-') { flag = -1; input_char++; //j++; //cout<<"(flag - )j="<<j<<endl; } //计算小数点前面的和 while(*input_char != '.' && *input_char) { sum = sum*10 + (double(*input_char) - 48); //0的ascii码是48 // cout<<"j"<<*input_char<<endl; input_char++; //j++; } if (*input_char=='.') { input_char++; //计算小数点后面的和 while(*input_char) { sum = sum + ( double(*input_char)-48)/divisor; divisor *= 10; input_char++; //j++; //cout<<"j"<<j<<endl; } } if (flag == 1) return sum; if (flag == -1) return -sum; return sum; } else { cout<<"输入为空!"<<endl;; return 0.0; } } void AosStatRecord::getMeasureValue(u32 idx, AosValueRslt &val) { aos_assert(idx < mMeasureInfoList->size()); MeasureInfo &measure = (*mMeasureInfoList)[idx]; AosDataType::E dataType; char *statValue; AosNumber n; OmnString value;//yang statValue = mMeasureValues + 8 * idx; dataType = measure.mDataType; switch (dataType) { case AosDataType::eInt64: case AosDataType::eDateTime: val.setI64(*(i64*)statValue); break; case AosDataType::eU64: val.setU64(*(u64*)statValue); break; case AosDataType::eDouble: val.setDouble(*(double *)statValue); break; case AosDataType::eNumber: n = measure.mNumber; //yang,fix bug of data type conversion problem //value.assign(statValue,8); //value = statValue; //vallen = value.length(); //rsltval = strtod(statValue, &endptr); //rsltval = char_x_to_double(statValue); //rsltval = *(u64*)statValue; //n.setValue(rsltval); n.setValue(*(double*)statValue); //val.setNumber(n); val.setDouble(n.getValue()); break; default: OmnNotImplementedYet; return; } } // //Compare 2 statrecords based on orderby list //1: parameter > current statRcd //0: parameter = current statRcd //-1: parameter < current statRcd // int AosStatRecord::cmpStatRecord(AosStatRecord *rcd, vector<int> &orderedMeasurePosList, vector<bool> &orderIsAscList) { //OmnString kv; //OmnString localKv; AosValueRslt kv; AosValueRslt localKv; i64 kvNum; i64 localKvNum; OmnString kv1; OmnString kv2; bool isAsc; u32 keyIndex = 0; //index of keys (excluding measure values) for next comparision OmnValueList *keyValueList; AosValueRslt val; AosValueRslt localVal; int pos; int rslt; aos_assert_r(rcd, 0); keyValueList = rcd->getKeyValueList(); aos_assert_r(keyValueList->size() == mKeyValueList->size(), false); //compare orderby fields firstly for (u32 i = 0; i < orderedMeasurePosList.size(); i++) { pos = orderedMeasurePosList[i]; isAsc = orderIsAscList[i]; if (pos < 0) { //the order by field is key kv = (*keyValueList)[keyIndex]; localKv = (*mKeyValueList)[keyIndex]; if (mTimeKeyPos ==(int) keyIndex) { //compare timeValue using integer kv1 = kv.getStr(); kvNum = kv1.toInt64(0); kv2 = localKv.getStr(); localKvNum = kv2.toInt64(0); rslt = AosOrderedCmp<i64>::cmpData(isAsc, localKvNum, kvNum); //rslt = cmpData(isAsc, localKv, kv); } else { rslt = cmpData(isAsc, localKv, kv); } keyIndex++; } else { //the orderby field is a measure value //get the field value and datatype firstly getMeasureValue(pos, localVal); rcd->getMeasureValue(pos, val); switch ((*mMeasureInfoList)[pos].mDataType) { case AosDataType::eInt64: rslt = AosOrderedCmp<i64>::cmpData(isAsc, localVal.getI64(), val.getI64()); break; case AosDataType::eU64: rslt = AosOrderedCmp<u64>::cmpData(isAsc, localVal.getU64(), val.getU64()); break; case AosDataType::eDouble: case AosDataType::eNumber: // Pay JIMODB-1254 rslt = AosOrderedCmp<double>::cmpData(isAsc, localVal.getDouble(), val.getDouble()); break; default: OmnNotImplementedYet; } } if (rslt != 0) return rslt; } //compare the rest key fields if any for (u32 i = keyIndex; i < mKeyValueList->size(); i++) { kv = (*keyValueList)[i]; localKv = (*mKeyValueList)[i]; isAsc = true; if (mTimeKeyPos == (int)i) { //compare timeValue using integer kv1 = kv.getStr(); kvNum = kv1.toInt64(0); kv2 = localKv.getStr(); localKvNum = kv2.toInt64(0); rslt = AosOrderedCmp<i64>::cmpData(isAsc, localKvNum, kvNum); } else { rslt = cmpData(isAsc, localKv, kv); } if (rslt != 0) return rslt; } return 0; } // //Compare 2 OmnString //Comparisons over basic typename use template //1: data1 should be before data2 //0: data1 = data2 //-1: data1 should be after data2 // int AosStatRecord::cmpData(bool isAsc, AosValueRslt &data1, AosValueRslt &data2) { AosDataType::E dataType1 = data1.getType(); //AosDataType::E dataType2 = data2.getType(); switch(dataType1) { case AosDataType::eU64: { u64 u1 = data1.getU64(); u64 u2 = data2.getU64(); return AosOrderedCmp<u64>::cmpData(isAsc, u1, u2); } // break; case AosDataType::eInt64: { i64 u1 = data1.getI64(); i64 u2 = data2.getI64(); return AosOrderedCmp<i64>::cmpData(isAsc, u1, u2); } // break; case AosDataType::eDouble: case AosDataType::eNumber: { double u1 = data1.getDouble(); double u2 = data2.getDouble(); return AosOrderedCmp<double>::cmpData(isAsc, u1, u2); } // break; case AosDataType::eString: { OmnString str1 = data1.getStr(); OmnString str2 = data2.getStr(); int rslt = str1.compare1(str2); if (rslt >= 0) { if (rslt == 0) return 0; if (isAsc) return -1; else return 1; } if (isAsc) return 1; else return -1; } //break; default: OmnNotImplementedYet; } return 0; /*if ( (isAsc && data1 > data2) || (!isAsc && data1 < data2) ) return -1; if ( (isAsc && data1 < data2) || (!isAsc && data1 > data2) ) return 1; return 0;*/ } // //Compare 2 statrecords based on orderby list //1: data1 should be before data2 //0: data1 = data2 //-1: data1 should be after data2 // template<typename T> int AosOrderedCmp<T>::cmpData( bool isAsc, T data1, T data2) { if ( (isAsc && data1 > data2) || (!isAsc && data1 < data2) ) return -1; if ( (isAsc && data1 < data2) || (!isAsc && data1 > data2) ) return 1; return 0; } // Ketty 2014/12/02 bool AosStatRecord::getStatKeyValue(u32 idx, AosValueRslt &val) { aos_assert_r(idx < mStatKeyValueList.size(), false); if(mKeyIdxTypeMap.size()) { AosDataType::E type = mKeyIdxTypeMap[idx]; OmnString value = mStatKeyValueList[idx]; //arvin 2015.10.16 //JIMODB-970 if(type==AosDataType::eInvalid) { idx += mGrpbyKeyNum + mMeasureInfoList->size(); type = mKeyIdxTypeMap[idx]; } switch(type) { case AosDataType::eInt64: { i64 vv = value.toInt64(); val.setI64(vv); break; } case AosDataType::eU64: { u64 vv = value.toU64(); val.setU64(vv); break; } case AosDataType::eDouble: { double vv = value.toDouble(); val.setDouble(vv); break; } case AosDataType::eDateTime: { i64 vv = value.toInt64(); AosDateTime dt(vv,""); if (dt.isNotADateTime()) { OmnAlarm << "Current DateTime Object is invalid" << enderr; return false; } val.setDateTime(dt); break; } default: val.setStr(value); break; } } else { val.setStr(mStatKeyValueList[idx]); } return true; } int AosStatRecord::getFieldIdx( const OmnString &name, AosRundata *rdata) { map<OmnString, int>::iterator itr = mFieldIdxs.find(name); if(itr != mFieldIdxs.end()) { return itr->second; } else { itr = mStatKeyIdxMap.find(name); if(itr != mStatKeyIdxMap.end()) { return itr->second; } } return -1; } bool AosStatRecord::getFieldValue( const int idx, AosValueRslt &value_rslt, const bool copy_flag, AosRundata* rdata) { if (idx < mGrpbyKeyNum) { //get value from key value list getKeyValue(idx, value_rslt); if(idx == (u32)mTimeKeyPos) { OmnString time_value_str = value_rslt.getStr(); i64 time_value = time_value_str.toInt64(-1); aos_assert_r(time_value != -1, false); //arvin 2015.10.22 //JIMODB-989 i64 epochUnixTime = AosStatTimeUnit::convertToUnixTime(time_value,mTimeUnit); value_rslt.setI64(epochUnixTime); /* OmnString calendar_time = AosStatTimeUnit::convertToCalendarTime( time_value, mTimeUnit); value_rslt.setStr(calendar_time); */ } return true; } //get measure fields u32 measure_num = mMeasureInfoList->size(); if (idx < mGrpbyKeyNum + (int)measure_num) { getMeasureValue(idx - mGrpbyKeyNum, value_rslt); return true; } // get value from stat key value list. getStatKeyValue(idx - mGrpbyKeyNum - measure_num, value_rslt); return true; } //Gavin 2015/08/11 JIMODB-341 bool AosStatRecord::getFieldValue( const OmnString &field_name, AosValueRslt &value, const bool copy_flag, AosRundata* rdata) { OmnString measure_name; for(size_t i = 0; i < mMeasureInfoList->size(); i++) { //arvin 2015.11.05 ////Jimodb-1120 if((*mMeasureInfoList)[i].mCond) measure_name = (*mMeasureInfoList)[i].mCondMeasureName; else measure_name = (*mMeasureInfoList)[i].mName; if(measure_name == field_name) { switch((*mMeasureInfoList)[i].mDataType) { case AosDataType::eU64: { u64 vv = *(u64*)&mMeasureValues[i*8]; value.setU64(vv); return true; } case AosDataType::eInt64: { i64 vv = *(i64*)&mMeasureValues[i*8]; value.setI64(vv); return true; } case AosDataType::eDouble: { double vv = *(double*)&mMeasureValues[i*8]; value.setDouble(vv); return true; } default: OmnShouldNeverComeHere; } } } OmnShouldNeverComeHere; return false; } bool AosStatRecord::setTimeFieldValue(const i64 value) { if(mTimeKeyPos < (int)mKeyValueList->size()) { OmnString val; val << value; (*mKeyValueList)[mTimeKeyPos] = AosValueRslt(val); return true; } //need to set statKeyField as well //mStatKeyValueList[mTimeKeyPos] = val; return false; } i64 AosStatRecord::getTimeFieldValue() { i64 time_value =-1; if(mTimeKeyPos < (int)mKeyValueList->size()) { AosValueRslt vv = (*mKeyValueList)[mTimeKeyPos]; OmnString value = vv.getStr(); time_value = value.toInt64(-1); } return time_value;; } bool AosStatRecord::resetAccumulate() { bool isAccumulate; u32 dataLen = sizeof(u64); for(size_t i = 0; i < mMeasureInfoList->size();i++) { isAccumulate = (*mMeasureInfoList)[i].mIsAccumulate; if(isAccumulate) { char *data = mMeasureValues+i*dataLen; memset(data,0,dataLen); } } return true; } bool AosStatRecord::serializeKeyToBuff( AosBuff *buff, u32 idx) { if(idx ==(u32) mTimeKeyPos) { buff->setI64((*mKeyValueList)[idx].getI64()); return true; } AosDataType::E type = mGroupByKeyType[idx]; switch(type) { case AosDataType::eU64: buff->setU64((*mKeyValueList)[idx].getU64()); return true; case AosDataType::eInt64: buff->setI64((*mKeyValueList)[idx].getI64()); return true; case AosDataType::eDouble: buff->setDouble((*mKeyValueList)[idx].getDouble()); return true; case AosDataType::eString: buff->setOmnStr((*mKeyValueList)[idx].getStr()); return true; case AosDataType::eDateTime: buff->setI64((*mKeyValueList)[idx].getI64()); return true; default: OmnAlarm << "Invalid datatype : " << type << enderr; break; } return false; } bool AosStatRecord::serializeKeyFromBuff( AosBuff *buff, u32 idx) { AosValueRslt vv; AosDataType::E type = mGroupByKeyType[idx]; if(idx ==(u32) mTimeKeyPos) { vv.setI64(buff->getI64(0)); mKeyValueList->push_back(vv); return true; } switch(type) { case AosDataType::eU64: vv.setU64(buff->getU64(0)); mKeyValueList->push_back(vv); return true; case AosDataType::eDouble: vv.setDouble(buff->getDouble(0)); mKeyValueList->push_back(vv); return true; case AosDataType::eInt64: vv.setI64(buff->getI64(0)); mKeyValueList->push_back(vv); return true; case AosDataType::eDateTime: vv.setI64(buff->getI64(0)); mKeyValueList->push_back(vv); return true; case AosDataType::eString: vv.setStr(buff->getOmnStr("")); mKeyValueList->push_back(vv); return true; default: OmnAlarm << "Invalid datatype : " << type << enderr; break; } return false; } bool AosStatRecord::getKeyStr(OmnString &str) const { str = ""; for (u32 i = 0; i < mKeyValueList->size(); i++) { str << ((*mKeyValueList)[i]).getStr(); } return true; }
[ "barryniu@jimodb.com" ]
barryniu@jimodb.com
aae5dd49065f3890ccae3c0a2fa5aa9e8ba27da8
51ce6b291d67445c22db0ac0169e9b2835e33376
/Kinect Explorer/Sources/OpenNiUtility.h
7cb81d0f12bfc3df961292fcd8b8b2f0b9e3ecc5
[]
no_license
maddy-z/Kinect-Explorer
3be24a6e9a9cd63084330b9e467315f0fefdd7fb
b008b5a7cd6db164d974595dd2495d0eb382dd28
refs/heads/master
2016-09-06T04:33:11.431652
2004-12-31T20:23:35
2004-12-31T20:23:35
4,625,580
2
0
null
null
null
null
UTF-8
C++
false
false
849
h
#ifndef _OPENNI_UTILITY_H_ #define _OPENNI_UTILITY_H_ #include <XnCppWrapper.h> namespace OpenNiUtility { double CalcAverageDepth ( const XnDepthPixel * srcDepthData, unsigned int srcRow, unsigned int srcCol ); double CalcBiggestDepth ( const XnDepthPixel * srcDepthData, unsigned int srcRow, unsigned int srcCol ); double CalcSmallestDepth ( const XnDepthPixel * srcDepthData, unsigned int srcRow, unsigned int srcCol ); bool ConvertProjectiveToRealWorld ( const int count, const int nXRes, const int nYRes, const double fXToZ, const double fYToZ, const XnPoint3D * proj, XnPoint3D * real ); bool ConvertRealWorldToProjective ( const int count, const int nXRes, const int nYRes, const double fXToZ, const double fYToZ, const XnPoint3D * real, XnPoint3D * proj ); } #endif
[ "dreamyLambert@gmail.com" ]
dreamyLambert@gmail.com
a25e4d9a574ac8bf2a3cf6d702dbb6af68727d1d
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/admin/admt/workobj/acctrepl.cpp
407b6e43fe6677bf930fc17af3eb8f9ae94c6ffb
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
391,706
cpp
/*--------------------------------------------------------------------------- File: AcctRepl.cpp Comments: Implementation of Account Replicator COM object. This COM object handles the copying or moving of directory objects. Win2K to Win2K migration is implemented in this file. NT -> Win2K migration is implemented in UserCopy.cpp (c) Copyright 1999, Mission Critical Software, Inc., All Rights Reserved Proprietary and confidential to Mission Critical Software, Inc. REVISION LOG ENTRY Revision By: Christy Boles Revised on 02/12/99 10:08:44 Revision By: Sham Chauthani Revised on 07/02/99 12:40:00 --------------------------------------------------------------------------- */ // AcctRepl.cpp : Implementation of CAcctRepl #include "stdafx.h" #include "WorkObj.h" #include "AcctRepl.h" #include "BkupRstr.hpp" #include "StrHelp.h" ///////////////////////////////////////////////////////////////////////////// // CAcctRepl #include "Err.hpp" #include "ErrDct.hpp" #include "EaLen.hpp" #include <dsgetdc.h> #include "UserRts.h" #include "RebootU.h" #include "DCTStat.h" #include "ResStr.h" #include "LSAUtils.h" #include "ARUtil.hpp" #include "Names.hpp" #include <lm.h> #include <iads.h> //#include <adshlp.h> #include "RegTrans.h" #include "TEvent.hpp" #include "RecNode.hpp" #include "ntdsapi.h" #include "TxtSid.h" #include "ExLDAP.h" #include "Win2KErr.h" //#import "\bin\McsDctWorkerObjects.tlb" //#import "\bin\McsVarSetMin.tlb" no_namespace //#import "\bin\AdsProp.tlb" no_namespace //#import "\bin\NetEnum.tlb" no_namespace //#import "\bin\DBManager.tlb" no_namespace //#import "WorkObj.tlb" //already #imported via ARUtil.cpp //#import "VarSet.tlb" no_namespace rename("property", "aproperty")//already #imported by AcctRepl.h #import "AdsProp.tlb" no_namespace #import "NetEnum.tlb" no_namespace //#import "DBMgr.tlb" no_namespace //already #imported via ARUtil.cpp #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif IVarSet * g_pVarSet = NULL; TErrorDct err; TError & errCommon = err; extern bool g_bAddSidWorks; DWORD g_dwOpMask = OPS_All; // Global OpSeq by default all ops bool bAbortMessageWritten = false; BOOL BuiltinRid(DWORD rid); typedef HRESULT (CALLBACK * DSGETDCNAME)(LPWSTR, LPWSTR, GUID*, LPWSTR, DWORD, PDOMAIN_CONTROLLER_INFO*); ADSGETOBJECT ADsGetObject; typedef BOOL (CALLBACK * TConvertStringSidToSid)(LPCWSTR StringSid,PSID *Sid); TConvertStringSidToSid ConvertStringSidToSid; bool firstTime = true; typedef struct _Lookup { WCHAR * pName; WCHAR * pType; } Lookup; //Function to sort by account sam name only int TNodeCompareNameOnly(TNode const * t1,TNode const * t2) { // Sort function to sort by Type(dec) and Name(asc) TAcctReplNode const * n1 = (TAcctReplNode *)t1; TAcctReplNode const * n2 = (TAcctReplNode *)t2; return UStrICmp(n1->GetSourceSam(), n2->GetTargetSam()); } // Function to do a find on the Account list that is sorted with TNodeCompareNameOnly function. int TNodeFindByNameOnly(TNode const * t1, void const * pVoid) { TAcctReplNode const * n1 = (TAcctReplNode *) t1; WCHAR * pLookup = (WCHAR *) pVoid; return UStrICmp(n1->GetTargetSam(), pLookup); } int TNodeCompareAccountType(TNode const * t1,TNode const * t2) { // Sort function to sort by Type(dec) and Name(asc) TAcctReplNode const * n1 = (TAcctReplNode *)t1; TAcctReplNode const * n2 = (TAcctReplNode *)t2; // Compare types int retVal = UStrICmp(n2->GetType(), n1->GetType()); if ( retVal == 0 ) { // If same type then compare names. return UStrICmp(n1->GetName(), n2->GetName()); } else return retVal; } // Function to sort by Account type and then by SamAccountName int TNodeCompareAccountSam(TNode const * t1,TNode const * t2) { // Sort function to sort by Type(dec) and Name(asc) TAcctReplNode const * n1 = (TAcctReplNode *)t1; TAcctReplNode const * n2 = (TAcctReplNode *)t2; // Compare types Sort in decending order int retVal = UStrICmp(n2->GetType(), n1->GetType()); if ( retVal == 0 ) { // If same type then compare Sam Account names. return UStrICmp(n1->GetSourceSam(), n2->GetSourceSam()); } else return retVal; } // Function to do a find on the Account list that is sorted with TNodeCompareAccountType function. int TNodeFindAccountName(TNode const * t1, void const * pVoid) { TAcctReplNode const * n1 = (TAcctReplNode *) t1; Lookup * pLookup = (Lookup *) pVoid; int retVal = UStrICmp(pLookup->pType, n1->GetType()); if ( retVal == 0 ) { return UStrICmp(n1->GetSourceSam(), pLookup->pName); } else return retVal; } int TNodeCompareMember(TNode const * t1, TNode const * t2) { TRecordNode const * n1 = (TRecordNode *) t1; TRecordNode const * n2 = (TRecordNode *) t2; if ( n1->GetARNode() < n2->GetARNode() ) return -1; if ( n1->GetARNode() > n2->GetARNode() ) return 1; return UStrICmp(n1->GetMember(), n2->GetMember()); } int TNodeCompareMemberName(TNode const * t1, TNode const * t2) { TRecordNode const * n1 = (TRecordNode *) t1; TRecordNode const * n2 = (TRecordNode *) t2; return UStrICmp(n1->GetMember(), n2->GetMember()); } int TNodeCompareMemberDN(TNode const * t1, TNode const * t2) { TRecordNode const * n1 = (TRecordNode *) t1; TRecordNode const * n2 = (TRecordNode *) t2; return UStrICmp(n1->GetDN(), n2->GetDN()); } int TNodeCompareMemberItem(TNode const * t1, void const * t2) { TRecordNode const * n1 = (TRecordNode *) t1; WCHAR const * n2 = (WCHAR const *) t2; return UStrICmp(n1->GetDN(),n2); } int TNodeCompareAcctNode(TNode const * t1, TNode const * t2) { TRecordNode const * n1 = (TRecordNode *) t1; TRecordNode const * n2 = (TRecordNode *) t2; if ( n1->GetARNode() < n2->GetARNode() ) return -1; if ( n1->GetARNode() > n2->GetARNode() ) return 1; return 0; } // Checks to see if the account is from the BUILTIN domain. BOOL IsBuiltinAccount(Options * pOptions, WCHAR * sAcctName) { BOOL ret = FALSE; PSID sid = new BYTE[35]; SID_NAME_USE use; WCHAR sDomain[LEN_Path]; DWORD dwDom, dwsid; if (!sid) return TRUE; dwDom = DIM(sDomain); dwsid = 35; if ( LookupAccountName(pOptions->srcComp, sAcctName, sid, &dwsid, sDomain, &dwDom, &use) ) { ret = !_wcsicmp(sDomain, L"BUILTIN"); } else { // DWORD rd = GetLastError(); } if ( sid ) delete [] sid; return ret; } // global counters defined in usercopy.cpp extern AccountStats warnings; extern AccountStats errors; extern AccountStats created; extern AccountStats replaced; extern AccountStats processed; // updates progress indicator // this updates the stats entries in the VarSet // this information will be returned to clients who call DCTAgent::QueryJobStatus // while the job is running. void Progress( WCHAR const * mesg // in - progress message ) { if ( g_pVarSet ) { g_pVarSet->put(GET_WSTR(DCTVS_CurrentPath),mesg); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Users_Examined),processed.users); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Users_Created),created.users); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Users_Replaced),replaced.users); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Users_Warnings),warnings.users); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Users_Errors),errors.users); g_pVarSet->put(GET_WSTR(DCTVS_Stats_GlobalGroups_Examined),processed.globals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_GlobalGroups_Created),created.globals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_GlobalGroups_Replaced),replaced.globals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_GlobalGroups_Warnings),warnings.globals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_GlobalGroups_Errors),errors.globals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_LocalGroups_Examined),processed.locals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_LocalGroups_Created),created.locals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_LocalGroups_Replaced),replaced.locals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_LocalGroups_Warnings),warnings.locals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_LocalGroups_Errors),errors.locals); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Computers_Examined),processed.computers); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Computers_Created),created.computers); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Computers_Replaced),replaced.computers); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Computers_Warnings),warnings.computers); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Computers_Errors),errors.computers); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Generic_Examined),processed.generic); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Generic_Created),created.generic); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Generic_Replaced),replaced.generic); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Generic_Warnings),warnings.generic); g_pVarSet->put(GET_WSTR(DCTVS_Stats_Generic_Errors),errors.generic); } } // Gets the domain sid for the specified domain BOOL // ret- TRUE if successful GetSidForDomain( LPWSTR DomainName, // in - name of domain to get SID for PSID * pDomainSid // out- SID for domain, free with FreeSid ) { PSID pSid = NULL; // DWORD lenSid = 200; DWORD rc = 0; WCHAR * domctrl = NULL; if ( DomainName[0] != L'\\' ) { rc = NetGetDCName(NULL,DomainName,(LPBYTE*)&domctrl); } if ( ! rc ) { rc = GetDomainSid(domctrl,&pSid); NetApiBufferFree(domctrl); } (*pDomainSid) = pSid; return ( pSid != NULL); } STDMETHODIMP CAcctRepl::Process( IUnknown * pWorkItemIn // in - VarSet defining account replication job ) { HRESULT hr = S_OK; IVarSetPtr pVarSet = pWorkItemIn; MCSDCTWORKEROBJECTSLib::IStatusObjPtr pStatus; BOOL bSameForest = FALSE; HMODULE hMod = LoadLibrary(L"activeds.dll"); if ( hMod == NULL ) { DWORD eNum = GetLastError(); err.SysMsgWrite(ErrE, eNum, DCT_MSG_LOAD_LIBRARY_FAILED_SD, L"activeds.dll", eNum); Mark(L"errors",L"generic"); } ADsGetObject = (ADSGETOBJECT)GetProcAddress(hMod, "ADsGetObject"); g_pVarSet = pVarSet; try{ pStatus = pVarSet->get(GET_BSTR(DCTVS_StatusObject)); opt.pStatus = pStatus; } catch (...) { // Oh well, keep going } // Load the options specified by the user including the account information WCHAR mesg[LEN_Path]; wcscpy(mesg, GET_STRING(IDS_BUILDING_ACCOUNT_LIST)); Progress(mesg); LoadOptionsFromVarSet(pVarSet); MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); if ( BothWin2K(&opt) ) { hr = pAccess->raw_IsInSameForest(opt.srcDomainDns,opt.tgtDomainDns, (long*)&bSameForest); } if ( SUCCEEDED(hr) ) { opt.bSameForest = bSameForest; } // We are going to initialize the Extension objects m_pExt = new CProcessExtensions(pVarSet); TNodeListSortable newList; if ( opt.expandMemberOf && ! opt.bUndo ) // always expand the member-of property, since we want to update the member-of property for migrated accounts { // Expand the containers and the membership wcscpy(mesg, GET_STRING(IDS_EXPANDING_MEMBERSHIP)); Progress(mesg); // Expand the list to include all the groups that the accounts in this list are members of newList.CompareSet(&TNodeCompareAccountType); if ( newList.IsTree() ) newList.ToSorted(); ExpandMembership( &acctList, &opt, &newList, Progress, FALSE); } if ( opt.expandContainers && !opt.bUndo) { // Expand the containers and the membership wcscpy(mesg, GET_STRING(IDS_EXPANDING_CONTAINERS)); Progress(mesg); // Expand the list to include all the members of the containers. acctList.CompareSet(&TNodeCompareAccountType); ExpandContainers(&acctList, &opt, Progress); } // Add the newly created list ( if one was created ) if ( opt.expandMemberOf && !opt.bUndo ) { wcscpy(mesg, GET_STRING(IDS_MERGING_EXPANDED_LISTS)); Progress(mesg); // add the new and the old list acctList.CompareSet(&TNodeCompareAccountType); for ( TNode * acct = newList.Head(); acct; ) { TNode * temp = acct->Next(); if ( ! acctList.InsertIfNew(acct) ) delete acct; acct = temp; } Progress(L""); } do { // once // Copy the NT accounts for users, groups and/or computers if ( pStatus!= NULL && (pStatus->Status & DCT_STATUS_ABORTING) ) break; int res; if ( opt.bUndo ) res = UndoCopy(&opt,&acctList,&Progress, err,(IStatusObj *)((MCSDCTWORKEROBJECTSLib::IStatusObj *)pStatus),NULL); else res = CopyObj( &opt,&acctList,&Progress, err,(IStatusObj *)((MCSDCTWORKEROBJECTSLib::IStatusObj *)pStatus),NULL); // Close the password log if ( opt.passwordLog.IsOpen() ) { opt.passwordLog.LogClose(); } if ( pStatus != NULL && (pStatus->Status & DCT_STATUS_ABORTING) ) break; // Update Rights for user and group accounts if ( m_UpdateUserRights ) { // DWORD rc = UpdateUserRights((IStatusObj *)((MCSDCTWORKEROBJECTSLib::IStatusObj *)pStatus)); UpdateUserRights((IStatusObj *)((MCSDCTWORKEROBJECTSLib::IStatusObj *)pStatus)); } if ( pStatus != NULL && (pStatus->Status & DCT_STATUS_ABORTING) ) break; // Change of Domain affiliation on computers and optional reboot will be done by local agent } while (false); LoadResultsToVarSet(pVarSet); // Cleanup the account list if ( acctList.IsTree() ) { acctList.ToSorted(); } TNodeListEnum e; TAcctReplNode * tnode; TAcctReplNode * tnext; for ( tnode = (TAcctReplNode *)e.OpenFirst(&acctList) ; tnode ; tnode = tnext ) { tnext = (TAcctReplNode*)e.Next(); acctList.Remove(tnode); delete tnode; } e.Close(); err.LogClose(); Progress(L""); if (m_pExt) delete m_pExt; g_pVarSet = NULL; if ( hMod ) FreeLibrary(hMod); return hr; } //------------------------------------------------------------------------------ // CopyObj: When source and target domains are both Win2k this function calls // The 2kobject functions. Other wise it calls the User copy functions. //------------------------------------------------------------------------------ int CAcctRepl::CopyObj( Options * options, // in -options TNodeListSortable * acctlist, // in -list of accounts to process ProgressFn * progress, // in -window to write progress messages to TError & error, // in -window to write error messages to IStatusObj * pStatus, // in -status object to support cancellation void WindowUpdate (void ) // in - window update function ) { BOOL bSameForest = FALSE; long rc; HRESULT hr = S_OK; // if the Source/Target domain is NT4 then use the UserCopy Function. If both domains are Win2K then use // the CopyObj2K function to do so. if ( BothWin2K( options ) ) { // Since these are Win2k domains we need to process it with Win2k code. MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); // First of all we need to find out if they are in the same forest. HRESULT hr = pAccess->raw_IsInSameForest(options->srcDomainDns,options->tgtDomainDns, (long*)&bSameForest); if ( SUCCEEDED(hr) ) { options->bSameForest = bSameForest; if ( !bSameForest || (options->flags & F_COMPUTERS) ) // always copy the computer accounts { // Different forest we need to copy. rc = CopyObj2K(options, acctlist, progress, pStatus); if (opt.fixMembership) { // Update the group memberships rc = UpdateGroupMembership(options, acctlist, progress, pStatus); if ( !options->expandMemberOf ) { hr = UpdateMemberToGroups(acctlist, options, FALSE); rc = HRESULT_CODE(hr); } else //if groups migrated, still expand but only for groups { hr = UpdateMemberToGroups(acctlist, options, TRUE); rc = HRESULT_CODE(hr); } } //for user or group, migrate the manager\directReports or //managedBy\managedObjects properties respectively if ((options->flags & F_USERS) || (options->flags & F_GROUP)) UpdateManagement(acctlist, options); } else { // Within a forest we can move the object around. rc = MoveObj2K(options, acctlist, progress, pStatus); } if ( progress ) progress(L""); } else { rc = -1; err.SysMsgWrite(ErrE, hr, DCT_MSG_ACCESS_CHECKER_FAILED_D, hr); Mark(L"errors",L"generic"); } } else { // Create the object. rc = CopyObj2K(options, acctlist, progress, pStatus); if (opt.fixMembership) { rc = UpdateGroupMembership(options, acctlist, progress, pStatus); if ( !options->expandMemberOf ) { hr = UpdateMemberToGroups(acctlist, options, FALSE); rc = HRESULT_CODE(hr); } else //if groups migrated, still expand but only for groups { hr = UpdateMemberToGroups(acctlist, options, TRUE); rc = HRESULT_CODE(hr); } } // Call NT4 Code to update the group memberships //UpdateNT4GroupMembership(options, acctlist, progress, pStatus, WindowUpdate); } return rc; } //------------------------------------------------------------------------------ // BothWin2k: Checks to see if Source and Target domains are both Win2k. //------------------------------------------------------------------------------ bool CAcctRepl::BothWin2K( // True if both domains are win2k Options * pOptions //in- options ) { // This function checks for the version on the Source and Target domain. If either one is // a non Win2K domain then it returns false bool retVal = true; if ( (pOptions->srcDomainVer > -1) && (pOptions->tgtDomainVer > -1) ) return ((pOptions->srcDomainVer > 4) && (pOptions->tgtDomainVer > 4)); MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); HRESULT hr; DWORD verMaj, verMin, sp; hr = pAccess->raw_GetOsVersion(pOptions->srcComp, &verMaj, &verMin, &sp); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE,hr, DCT_MSG_GET_OS_VER_FAILED_SD, pOptions->srcDomain, hr); Mark(L"errors", L"generic"); retVal = false; } else { pOptions->srcDomainVer = verMaj; if (verMaj < 5) retVal = false; } hr = pAccess->raw_GetOsVersion(pOptions->tgtComp, &verMaj, &verMin, &sp); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr,DCT_MSG_GET_OS_VER_FAILED_SD, pOptions->tgtDomain , hr); Mark(L"errors", L"generic"); retVal = false; } else { pOptions->tgtDomainVer = verMaj; if (verMaj < 5) retVal = false; } return retVal; } int CAcctRepl::CopyObj2K( Options * pOptions, //in -Options that we recieved from the user TNodeListSortable * acctlist, //in -AcctList of accounts to be copied. ProgressFn * progress, //in -Progress Function to display messages IStatusObj * pStatus // in -status object to support cancellation ) { // This function copies the object from Win2K domain to another Win2K domain. TNodeTreeEnum tenum; TAcctReplNode * acct; IObjPropBuilderPtr pObjProp(__uuidof(ObjPropBuilder)); IVarSetPtr pVarset(__uuidof(VarSet)); IUnknown * pUnk; HRESULT hr; _bstr_t currentType = L""; // TNodeListSortable pMemberOf; // sort the account list by Source Type\Source Name acctlist->CompareSet(&TNodeCompareAccountType); if ( acctlist->IsTree() ) acctlist->ToSorted(); acctlist->SortedToScrambledTree(); acctlist->Sort(&TNodeCompareAccountType); acctlist->Balance(); if ( pOptions->flags & F_AddSidHistory ) { //Need to Add Sid history on the target account. So lets bind it and go from there g_bAddSidWorks = BindToDS( pOptions->tgtComp, pOptions ); } if ( pOptions->flags & F_TranslateProfiles ) { GetBkupRstrPriv((WCHAR*)NULL); GetPrivilege((WCHAR*)NULL,SE_SECURITY_NAME); } // Get the defaultNamingContext for the source domain _variant_t var; // Get an IUnknown pointer to the Varset for passing it around. hr = pVarset->QueryInterface(IID_IUnknown, (void**)&pUnk); for ( acct = (TAcctReplNode *)tenum.OpenFirst(acctlist) ; acct ; acct = (TAcctReplNode *)tenum.Next() ) { //record group membership for intra-forest computer migrations /* if ((opt.bSameForest) && (pOptions->flags & F_COMPUTERS)) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBEROF_S), acct->GetName()); Progress(mesg); RecordAndRemoveMemberOf( pOptions, acct, &pMemberOf ); } */ if (m_pExt && acct->CallExt()) { hr = m_pExt->Process(acct, pOptions->tgtDomain, pOptions,TRUE); } // We will process accounts only if the corresponding check boxes (for object types to copy) are checked. if ( !NeedToProcessAccount( acct, pOptions ) ) continue; // If we are told not to copy the object then we will obey if ( !acct->CreateAccount() ) continue; //if the UPN name conflicted, then the UPNUpdate extension set the hr to //ERROR_OBJECT_ALREADY_EXISTS. If so, set flag for "no change" mode if (acct->GetHr() == ERROR_OBJECT_ALREADY_EXISTS) { acct->bUPNConflicted = TRUE; acct->SetHr(S_OK); } // Mark processed object count and update the status display Mark(L"processed", acct->GetType()); if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // Create the target object WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_CREATING_S), acct->GetName()); if ( progress ) progress(mesg); HRESULT hrCreate = Create2KObj(acct, pOptions); acct->SetHr(hrCreate); if ( SUCCEEDED(hrCreate) ) { err.MsgWrite(0, DCT_MSG_ACCOUNT_CREATED_S, acct->GetTargetName()); } else { // if the object already exists and the Replce flag is set then we should tell the user that we are replcing the target. if ((HRESULT_CODE(hrCreate) == ERROR_OBJECT_ALREADY_EXISTS) ) { if (pOptions->flags & F_REPLACE) { // don't say we've replaced the account yet, because the replace may fail //err.MsgWrite(0, DCT_MSG_ACCOUNT_REPLACED_S, acct->GetTargetName()); } } else { if ( acct->IsCritical() ) { err.SysMsgWrite(ErrE,ERROR_SPECIAL_ACCOUNT,DCT_MSG_REPLACE_FAILED_SD,acct->GetName(),ERROR_SPECIAL_ACCOUNT); Mark(L"errors", acct->GetType()); } else { if ( HRESULT_CODE(hrCreate) == ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH ) { err.MsgWrite(ErrE, DCT_MSG_CANT_REPLACE_DIFFERENT_TYPE_SS, acct->GetTargetPath(), acct->GetSourcePath() ); Mark(L"errors", acct->GetType()); } else { err.SysMsgWrite(ErrE, hrCreate, DCT_MSG_CREATE_FAILED_SSD, acct->GetName(), pOptions->tgtDomain, hrCreate); Mark(L"errors", acct->GetType()); } } } } if ( acct->WasCreated() ) { // Do we need to add sid history if ( pOptions->flags & F_AddSidHistory ) { // Global flag tells us if we should try the AddSidHistory because // for some special cases if it does not work once it will not work // see the AddSidHistory function for more details. if ( g_bAddSidWorks ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_ADDING_SIDHISTORY_S), acct->GetName()); if ( progress ) progress(mesg); if (! AddSidHistory( pOptions, acct->GetSourceSam(), acct->GetTargetSam(), pStatus ) ) { Mark(L"errors", acct->GetType()); } // CopySidHistoryProperty(pOptions, acct, pStatus); } } } } /* //fix group membership for intra-forest computer migrations if ((opt.bSameForest) && (pOptions->flags & F_COMPUTERS)) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RESET_MEMBERSHIP_S)); Progress(mesg); ResetObjectsMembership( pOptions,&pMemberOf, pOptions->pDb ); } */ tenum.Close(); bool bWin2k = BothWin2K(pOptions); TErrorEventLog evtLog(pOptions->srcComp, GET_STRING(IDS_EVENT_SOURCE)); for ( acct = (TAcctReplNode *)tenum.OpenFirst(acctlist) ; acct ; acct = (TAcctReplNode *)tenum.Next() ) { if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // We are told not to copy the properties to the account so we ignore it. if ( acct->CopyProps() ) { // If the object type is different from the one that was processed prior to this then we need to map properties if ((!pOptions->nochange) && (_wcsicmp(acct->GetType(),currentType) != 0)) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_MAPPING_PROPS_S), acct->GetType()); if ( progress ) progress(mesg); // Set the current type currentType = acct->GetType(); // Clear the current mapping pVarset->Clear(); // Get a new mapping if ( BothWin2K(pOptions) ) { hr = pObjProp->raw_MapProperties(currentType, pOptions->srcDomain, pOptions->srcDomainVer, currentType, pOptions->tgtDomain, pOptions->tgtDomainVer, 0, &pUnk); if (hr == DCT_MSG_PROPERTIES_NOT_MAPPED) { err.MsgWrite(ErrW,DCT_MSG_PROPERTIES_NOT_MAPPED, acct->GetType()); hr = S_OK; } } else hr = S_OK; if ( FAILED( hr ) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_PROPERTY_MAPPING_FAILED_SD, (WCHAR*)currentType, hr); Mark(L"errors", currentType); // No properties should be set if mapping fails pVarset->Clear(); } } // We update the properties if the object was created or it already existed and the replce flag is set. BOOL bExists = FALSE; if (HRESULT_CODE(acct->GetHr()) == ERROR_OBJECT_ALREADY_EXISTS) bExists = TRUE; if ( ((SUCCEEDED(acct->GetHr()) && (!bExists)) || ((bExists) && (pOptions->flags & F_REPLACE))) ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_UPDATING_PROPS_S), acct->GetName()); if ( progress ) progress(mesg); // Create the AccountList object and update the list variable if ( !pOptions->nochange ) { _bstr_t sExcList; if (pOptions->bExcludeProps) { if (!_wcsicmp(acct->GetType(), L"user")) sExcList = pOptions->sExcUserProps; if (!_wcsicmp(acct->GetType(), L"group")) sExcList = pOptions->sExcGroupProps; if (!_wcsicmp(acct->GetType(), L"computer")) sExcList = pOptions->sExcCmpProps; } if ( bWin2k ) { //if ask to, exclude any properties desired by the user and create a new varset if (pOptions->bExcludeProps) { IVarSetPtr pVarsetTemp(__uuidof(VarSet)); IUnknown * pUnkTemp; hr = pVarsetTemp->QueryInterface(IID_IUnknown, (void**)&pUnkTemp); if (SUCCEEDED(hr)) { hr = pObjProp->raw_ExcludeProperties(sExcList, pUnk, &pUnkTemp); } if (SUCCEEDED(hr)) { // Call the win 2k code to copy all but excluded props hr = pObjProp->raw_CopyProperties(const_cast<WCHAR*>(acct->GetSourcePath()), pOptions->srcDomain, const_cast<WCHAR*>(acct->GetTargetPath()), pOptions->tgtDomain, pUnkTemp, pOptions->pDb); } else { // Call the win 2k code to copy all props hr = pObjProp->raw_CopyProperties(const_cast<WCHAR*>(acct->GetSourcePath()), pOptions->srcDomain, const_cast<WCHAR*>(acct->GetTargetPath()), pOptions->tgtDomain, pUnk, pOptions->pDb); } pUnkTemp->Release(); }//end if asked to exclude else { // Call the win 2k code to copy all props hr = pObjProp->raw_CopyProperties(const_cast<WCHAR*>(acct->GetSourcePath()), pOptions->srcDomain, const_cast<WCHAR*>(acct->GetTargetPath()), pOptions->tgtDomain, pUnk, pOptions->pDb); } } else { // Otherwise let the Net APIs do their thing. hr = pObjProp->raw_CopyNT4Props(const_cast<WCHAR*>(acct->GetSourceSam()), const_cast<WCHAR*>(acct->GetTargetSam()), pOptions->srcComp, pOptions->tgtComp, const_cast<WCHAR*>(acct->GetType()), acct->GetGroupType(), sExcList); } } else // we are going to assume that copy properties would work hr = S_OK; if ( FAILED(hr) ) { if ( (acct->GetStatus() & AR_Status_Special) ) { err.MsgWrite(ErrE,DCT_MSG_FAILED_TO_REPLACE_SPECIAL_ACCT_S,acct->GetTargetSam()); } else { err.SysMsgWrite(ErrE, HRESULT_CODE(hr), DCT_MSG_COPY_PROPS_FAILED_SD, acct->GetTargetName(), hr); } acct->MarkError(); Mark(L"errors", acct->GetType()); } else { // Create an event logger to log events to the source PDC if ( !pOptions->nochange ) { evtLog.MsgWrite(0, DCT_MSG_ACCT_COPIED_SSS, acct->GetName(), pOptions->tgtDomain, acct->GetTargetName()); } if (HRESULT_CODE(acct->GetHr()) == ERROR_OBJECT_ALREADY_EXISTS) { acct->MarkAlreadyThere(); acct->MarkReplaced(); Mark(L"replaced",acct->GetType()); err.MsgWrite(0, DCT_MSG_ACCOUNT_REPLACED_S, acct->GetTargetName()); } } } } // do we need to call extensions. Only if Extension flag is set and the object is copied. if ((!pOptions->nochange) && (acct->CallExt()) && (acct->WasCreated() || acct->WasReplaced())) { // Let the Extension objects do their thing. WCHAR mesg[LEN_Path]; wsprintf(mesg,GET_STRING(IDS_RUNNING_EXTS_S), acct->GetName()); if ( progress ) progress(mesg); // Close the log file if it is open WCHAR filename[LEN_Path]; err.LogClose(); if (m_pExt) hr = m_pExt->Process(acct, pOptions->tgtDomain, pOptions,FALSE); safecopy (filename,opt.logFile); err.LogOpen(filename,1 /*append*/); } // only do these updates for account's we're copying // and only do updates if the account was actually created // .. or if the account was replaced, // or if we intentionally didn't replace the account (as in the group merge case) if ( acct->CreateAccount() && ( acct->WasCreated() || ( acct->WasReplaced() || !acct->CopyProps() ) ) ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_TRANSLATE_ROAMING_PROFILE_S), acct->GetName()); if ( progress ) progress(mesg); //Set the new profile if needed if ( pOptions->flags & F_TranslateProfiles && (_wcsicmp(acct->GetType(), L"user") == 0)) { WCHAR tgtProfilePath[MAX_PATH]; GetBkupRstrPriv((WCHAR*)NULL); GetPrivilege((WCHAR*)NULL,SE_SECURITY_NAME); if ( wcslen(acct->GetSourceProfile()) > 0 ) { DWORD ret = TranslateRemoteProfile( acct->GetSourceProfile(), tgtProfilePath, acct->GetSourceSam(), acct->GetTargetSam(), pOptions->srcDomain, pOptions->tgtDomain, pOptions->pDb, pOptions->lActionID, NULL, pOptions->nochange); if ( !ret ) { WCHAR tgtuser[LEN_Path]; USER_INFO_3 * tgtinfo; DWORD nParmErr; wcscpy(tgtuser, acct->GetTargetSam()); // Get information for the target account long rc = NetUserGetInfo(const_cast<WCHAR *>(pOptions->tgtComp), tgtuser, 3, (LPBYTE *) &tgtinfo); if (!pOptions->nochange) { // Set the new profile path tgtinfo->usri3_profile = tgtProfilePath; // Set the information back for the account. rc = NetUserSetInfo(const_cast<WCHAR *>(pOptions->tgtComp), tgtuser, 3, (LPBYTE)tgtinfo, &nParmErr); NetApiBufferFree((LPVOID) tgtinfo); if (rc) { err.MsgWrite(ErrE, DCT_MSG_SETINFO_FAIL_SD, tgtuser, rc); Mark(L"errors", acct->GetType()); } } } } } if ( acct->WasReplaced() ) { // Do we need to add sid history if ( pOptions->flags & F_AddSidHistory ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_ADDING_SIDHISTORY_S), acct->GetName()); if ( progress ) progress(mesg); // Global flag tells us if we should try the AddSidHistory because // for some special cases if it does not work once it will not work // see the AddSidHistory function for more details. if ( g_bAddSidWorks ) { if (! AddSidHistory( pOptions, acct->GetSourceSam(), acct->GetTargetSam(), pStatus ) ) { Mark(L"errors", acct->GetType()); } // CopySidHistoryProperty(pOptions, acct, pStatus); } } } wsprintf(mesg, L"", acct->GetName()); if ( progress ) progress(mesg); } } // Cleanup pUnk->Release(); tenum.Close(); return 0; } void CAcctRepl::LoadOptionsFromVarSet(IVarSet * pVarSet) { _bstr_t text; DWORD rc; MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); //store the name of the wizard being run opt.sWizard = pVarSet->get(GET_BSTR(DCTVS_Options_Wizard)); // Read General Options // open log file first, so we'll be sure to get any errors! text = pVarSet->get(GET_BSTR(DCTVS_Options_Logfile)); safecopy(opt.logFile,(WCHAR*)text); WCHAR filename[MAX_PATH]; safecopy (filename,opt.logFile); err.LogOpen(filename,1 /*append*/); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_SidHistoryCredentials_Domain)); safecopy(opt.authDomain ,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_SidHistoryCredentials_UserName)); safecopy(opt.authUser ,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_SidHistoryCredentials_Password)); safecopy(opt.authPassword,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_Options_SourceDomain)); safecopy(opt.srcDomain,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_Options_TargetDomain)); safecopy(opt.tgtDomain,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_Options_SourceDomainDns)); safecopy(opt.srcDomainDns,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_Options_TargetDomainDns)); safecopy(opt.tgtDomainDns,(WCHAR*)text); _bstr_t strSourceServer = pVarSet->get(GET_BSTR(DCTVS_Options_SourceServer)); _bstr_t strTargetServer = pVarSet->get(GET_BSTR(DCTVS_Options_TargetServer)); if (strSourceServer.length() && strTargetServer.length()) { UStrCpy(opt.srcComp, (WCHAR*)strSourceServer); UStrCpy(opt.tgtComp, (WCHAR*)strTargetServer); } else { if ( GetClosestDC(&opt) ) { pVarSet->put(GET_BSTR(DCTVS_Options_SourceServer), opt.srcComp); pVarSet->put(GET_BSTR(DCTVS_Options_TargetServer), opt.tgtComp); } else { rc = GetLastError(); err.SysMsgWrite(ErrE,rc,DCT_MSG_DOMAIN_NOT_FOUND_S,opt.srcDomain); Mark(L"errors", L"generic"); } } text = pVarSet->get(GET_BSTR(DCTVS_Options_SourceServerOverride)); if ( text.length() ) { UStrCpy(opt.srcComp,(WCHAR*)text); } text = pVarSet->get(GET_BSTR(DCTVS_Options_TargetServerOverride)); if ( text.length() ) { UStrCpy(opt.tgtComp,(WCHAR*)text); } text = pVarSet->get(GET_BSTR(DCTVS_Options_NoChange)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { opt.nochange = TRUE; } else { opt.nochange = FALSE; } // Read Account Replicator Options // initialize safecopy(opt.prefix, L""); safecopy(opt.suffix, L""); safecopy(opt.globalPrefix, L""); safecopy(opt.globalSuffix, L""); DWORD flags = 0; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ReplaceExistingAccounts)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { flags |= F_REPLACE; } else { // Prefix/Suffix only apply if the Replace flag is not set. text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_Prefix)); safecopy(opt.prefix,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_Suffix)); safecopy(opt.suffix,(WCHAR*)text); } // Global flags apply no matter what text = pVarSet->get(GET_BSTR(DCTVS_Options_Prefix)); safecopy(opt.globalPrefix,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_Options_Suffix)); safecopy(opt.globalSuffix,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyContainerContents)); if ( text == _bstr_t(GET_BSTR(IDS_YES)) ) opt.expandContainers = TRUE; else opt.expandContainers = FALSE; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyMemberOf)); if ( text == _bstr_t(GET_BSTR(IDS_YES)) ) opt.expandMemberOf = TRUE; else opt.expandMemberOf = FALSE; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_FixMembership)); if ( text == _bstr_t(GET_BSTR(IDS_YES)) ) opt.fixMembership = TRUE; else opt.fixMembership = FALSE; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_AddToGroup)); safecopy(opt.addToGroup,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_AddToGroupOnSourceDomain)); safecopy(opt.addToGroupSource,(WCHAR*)text); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_TranslateRoamingProfiles)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_TranslateProfiles; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyUsers)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_USERS; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyGlobalGroups)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_GROUP; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyComputers)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_COMPUTERS; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyOUs)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_OUS; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyContainerContents)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_COPY_CONT_CONTENT; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_IncludeMigratedAccts)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_COPY_MIGRATED_ACCT; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyLocalGroups)); if (! UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_LGROUP; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_DisableCopiedAccounts)); if (! UStrICmp(text,GET_STRING(IDS_All)) ) flags |= F_DISABLE_ALL; else if (! UStrICmp(text,GET_STRING(IDS_Special)) ) flags |= F_DISABLE_SPECIAL; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_DisableSourceAccounts)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_DISABLESOURCE; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_GenerateStrongPasswords)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_STRONGPW_ALL; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordFile)); if ( text.length() ) { // don't need this anymore, since it is handled by a plug-in // opt.passwordLog.LogOpen(text,TRUE); } text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_UpdateUserRights)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { m_UpdateUserRights = TRUE; } text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ReplaceExistingGroupMembers)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_REMOVE_OLD_MEMBERS; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_RemoveExistingUserRights)); if ( ! UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_RevokeOldRights; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_MoveReplacedAccounts)); if ( ! UStrICmp(text,GET_STRING(IDS_YES)) ) flags |= F_MOVE_REPLACED_ACCT; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CopyComputers)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { flags |= F_MACHINE; } text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_AddSidHistory)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { flags |= F_AddSidHistory; } opt.flags = flags; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_RenameOnly)); if (! UStrICmp(text,GET_STRING(IDS_YES)) ) { m_RenameOnly = TRUE; } text = pVarSet->get(GET_BSTR(DCTVS_Options_Undo)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) { // this is an undo operation opt.bUndo = TRUE; } else { opt.bUndo = FALSE; } // What undo action are we performing. if ( opt.bUndo ) { _variant_t var = pVarSet->get(L"UndoAction"); if (var.vt == VT_I4) opt.lUndoActionID = var.lVal; else opt.lUndoActionID = -2; } else { _variant_t var = pVarSet->get(L"ActionID"); if (var.vt == VT_I4) opt.lActionID = var.lVal; else opt.lActionID = -1; } // Read the password policy from the varset // We used to get the strong password policy from the target EA Server, so we can generate strong passwords // that meet the policy. // we don't do that anymore, since we have removed all depenedencies on EA. LONG len = 10; // set the password settings to default values opt.policyInfo.bEnforce = TRUE; opt.policyInfo.maxConsecutiveAlpha = (LONG)pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MaxConsecutiveAlpha)); opt.policyInfo.minDigits = (LONG)pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MinDigit)); opt.policyInfo.minLower = (LONG)pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MinLower)); opt.policyInfo.minUpper = (LONG)pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MinUpper)); opt.policyInfo.minSpecial = (LONG)pVarSet->get(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MinSpecial)); HRESULT hrAccess = pAccess->raw_GetPasswordPolicy(opt.tgtDomain,&len); if ( SUCCEEDED(hrAccess) ) { opt.minPwdLength = len; pVarSet->put(GET_BSTR(DCTVS_AccountOptions_PasswordPolicy_MinLength),len); } WriteOptionsToLog(); // Build List of Accounts to Copy // Clear the account list first though TNodeListEnum e; TAcctReplNode * acct; for ( acct = (TAcctReplNode *)e.OpenFirst(&acctList) ; acct ; acct = (TAcctReplNode *)e.Next() ) { acctList.Remove((TNode*)acct); } BothWin2K(&opt); // See if a global operation mask specified. _variant_t vdwOpMask = pVarSet->get(GET_BSTR(DCTVS_Options_GlobalOperationMask)); if ( vdwOpMask.vt == VT_I4 ) g_dwOpMask = (DWORD)vdwOpMask.lVal; // Then build the new list text = pVarSet->get(GET_BSTR(DCTVS_Accounts_InputFile)); if ( text.length() ) { if ( ! PopulateAccountListFromFile(text) ) return; } else { // otherwise, expect a list of accounts to copy in the VarSet if ( ! opt.bUndo ) { rc = PopulateAccountListFromVarSet(pVarSet); if ( rc ) return; // abort } } // If we have an NT5 source domain then we need to fillin the path info DWORD maj, min, sp; HRESULT hr = pAccess->raw_GetOsVersion(opt.srcComp, &maj, &min, &sp); if (SUCCEEDED(hr)) { // Ask the auxiliarry function to fill in the the Path for the source object if the AcctNode is not filled for ( acct = (TAcctReplNode *)e.OpenFirst(&acctList) ; acct ; acct = (TAcctReplNode *)e.Next() ) { if ((!acct->IsFilled) && (maj > 4)) { FillPathInfo(acct, &opt); AddPrefixSuffix(acct, &opt); } else if ((maj == 4) && (!_wcsicmp(acct->GetType(),L"computer"))) FillPathInfo(acct, &opt); } } // Check for incompatible options! if ( (flags & F_RevokeOldRights) && !m_UpdateUserRights ) { err.MsgWrite(ErrW,DCT_MSG_RIGHTS_INCOMPATIBLE_FLAGS); Mark(L"warnings", "generic"); } text = pVarSet->get(GET_BSTR(DCTVS_Options_OuPath)); if ( text.length() ) { wcscpy(opt.tgtOUPath, text); } //store the object property exclusion lists in the options structure opt.sExcUserProps = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ExcludedUserProps)); opt.sExcGroupProps = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ExcludedGroupProps)); opt.sExcCmpProps = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ExcludedComputerProps)); text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_ExcludeProps)); if ( !UStrICmp(text,GET_STRING(IDS_YES)) ) opt.bExcludeProps = TRUE; else opt.bExcludeProps = FALSE; } DWORD CAcctRepl::PopulateAccountListFromVarSet( IVarSet * pVarSet // in - varset containing account list ) { _bstr_t val; long numAccounts; _bstr_t text; DWORD maj, min, sp; PSID pSrcSid = NULL; WCHAR txtSid[200] = L""; DWORD lenTxt = DIM(txtSid); MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); numAccounts = pVarSet->get(GET_BSTR(DCTVS_Accounts_NumItems)); // Set up the account list functionality acctList.CompareSet(&TNodeCompareNameOnly); if ( acctList.IsTree() ) acctList.ToSorted(); //get the source domain's Sid so we can store it as part of the node _bstr_t source = pVarSet->get(GET_BSTR(DCTVS_Options_SourceDomain)); GetSidForDomain((WCHAR*)source,&pSrcSid); for ( int i = 0 ; i < numAccounts ; i++ ) { WCHAR key[LEN_Path]; UCHAR acctName[LEN_Account]; TAcctReplNode * curr = new TAcctReplNode; if (!curr) return ERROR_NOT_ENOUGH_MEMORY; if ( opt.pStatus ) { LONG status = 0; HRESULT hr = opt.pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // The object type must be specified swprintf(key,GET_STRING(DCTVSFmt_Accounts_Type_D),i); val = pVarSet->get(key); curr->SetType(val); swprintf(key,GET_STRING(DCTVSFmt_Accounts_D),i); text = pVarSet->get(key); if ( ! text.length() ) { // oops, no name specified // skip this entry and try the next one err.MsgWrite(ErrW,DCT_MSG_NO_NAME_IN_VARSET_S,key); Mark(L"warnings",L"generic"); delete curr; continue; } //set the source domain's sid curr->SetSourceSid(pSrcSid); // Set the operation to the global mask then check if we need to overwrite with the individual setting. curr->operations = g_dwOpMask; swprintf(key, GET_STRING(DCTVS_Accounts_D_OperationMask), i); _variant_t vOpMask = pVarSet->get(key); if ( vOpMask.vt == VT_I4 ) curr->operations = (DWORD)vOpMask.lVal; // Get the rest of the info from the VarSet. if ( ( (text.length() > 7 ) && (_wcsnicmp((WCHAR*) text, L"LDAP://",UStrLen(L"LDAP://")) == 0) ) || ( (text.length() > 8 ) && (_wcsnicmp((WCHAR*)text, L"WinNT://",UStrLen(L"WinNT://")) == 0)) ) { //hmmmm... They are giving use ADsPath. Lets get all the info we can from the object then. curr->SetSourcePath((WCHAR*) text); FillNodeFromPath(curr, &opt, &acctList); // Get the target name if one is specified. swprintf(key,GET_STRING(DCTVSFmt_Accounts_TargetName_D),i); text = pVarSet->get(key); if ( text.length() ) { // if target name is specified then use that. curr->SetTargetName((WCHAR*) text); curr->SetTargetSam((WCHAR*) text); } curr->IsFilled = true; } else { FillNamingContext(&opt); // if this is a computer account, make sure the trailing $ is included in the name curr->SetName(text); curr->SetTargetName(text); if ( !UStrICmp(val,L"computer") ) { // if ( ((WCHAR*)text)[text.length() - 1] != L'$' ) //comment out to fix 89513. text += L"$"; } curr->SetSourceSam(text); curr->SetTargetSam(text); safecopy(acctName,(WCHAR*)text); // optional target name swprintf(key,GET_STRING(DCTVSFmt_Accounts_TargetName_D),i); text = pVarSet->get(key); if ( text.length() ) curr->SetTargetName(text); // HRESULT hr = pAccess->raw_GetOsVersion(opt.srcComp, &maj, &min, &sp); pAccess->raw_GetOsVersion(opt.srcComp, &maj, &min, &sp); if ( maj < 5 ) AddPrefixSuffix(curr,&opt); // if this is a computer account, make sure the trailing $ is included in the name if ( !UStrICmp(val,L"computer") ) { if ( text.length() && ((WCHAR*)text)[text.length() - 1] != L'$' ) text += L"$"; } if ( text.length() ) { if ( ((WCHAR*)text)[text.length() - 1] != L'$' ) text += L"$"; curr->SetTargetSam(text); } curr->IsFilled = false; } if ( _wcsicmp(val, L"") != 0 ) { acctList.InsertBottom((TNode*)curr); } else { err.MsgWrite(ErrW,DCT_MSG_BAD_ACCOUNT_TYPE_SD,curr->GetName(),val); Mark(L"warnings",L"generic"); delete curr; } } return 0; } BOOL CAcctRepl::PopulateAccountListFromFile( WCHAR const * filename // in - filename containing account list ) { BOOL bSuccess = TRUE; _bstr_t text; FILE * pFile; WCHAR sourceName[UNLEN]; WCHAR targetName[UNLEN]; WCHAR type[UNLEN]; DWORD status; DWORD srcRid; DWORD tgtRid; int count = 0; UCHAR srcName[LEN_Account]; TAcctReplNode * curr; // The input file should have the format: // the last 3 fields can be filled with 0s // SourceName, TargetName, Type, Status, sourceRid, targetRid pFile = _wfopen(filename,L"rb"); if ( pFile ) { int result; do { result = fwscanf(pFile,L"%[^\t]\t%[^\t]\t%[^\t]\t%lx\t%lx\t%lx\r\n",sourceName,targetName,&type,&status,&srcRid, &tgtRid); if ( result != 6 ) break; curr = new TAcctReplNode; if (!curr) return FALSE; curr->SetName(sourceName); curr->SetSourceSam(sourceName); curr->SetTargetName(targetName); curr->SetTargetSam(targetName); if ( _wcsicmp(type, L"") == 0 ) { // TODO: we may want to add code to get the object type if needed // if type is not present, abort for now // Couldn't get the account type, skip this account safecopy(srcName,curr->GetName()); err.MsgWrite(ErrW,DCT_MSG_ACCOUNT_GET_INFO_ERROR_sD,srcName,0); Mark(L"warnings",L"generic"); continue; } else { curr->SetType( type ); } // Do we want to do something with the status field // to allow us to go back and only do operations that failed before? acctList.InsertBottom((TNode*)curr); count++; } while ( result == 6 ); // 6 fields read and assigned if ( result ) { err.MsgWrite(ErrW,DCT_MSG_ERROR_READING_INPUT_FILE_S,filename); Mark(L"warnings",L"generic"); } err.MsgWrite(0,DCT_MSG_ACCOUNTS_READ_FROM_FILE_DS,count,filename); fclose(pFile); } else { err.MsgWrite(ErrE,DCT_MSG_ERROR_OPENING_FILE_S,filename); Mark(L"errors", L"generic"); bSuccess = FALSE; } return bSuccess; } DWORD CAcctRepl::UpdateUserRights( IStatusObj * pStatus // in - status object ) { DWORD rc = 0; TAcctReplNode * acct; TNodeListEnum e; IUserRights * pUserRights = NULL; // Update user rights on the PDC of the target domain HRESULT hr = CoCreateInstance(CLSID_UserRights,NULL,CLSCTX_ALL,IID_IUserRights,(void**)&pUserRights); if ( FAILED(hr) ) { return hr; } hr = pUserRights->OpenSourceServer(SysAllocString(opt.srcComp)); if ( SUCCEEDED(hr) ) { hr = pUserRights->OpenTargetServer(SysAllocString(opt.tgtComp)); } if ( SUCCEEDED(hr) ) { pUserRights->put_NoChange(opt.nochange); pUserRights->put_RemoveOldRightsFromTargetAccounts((opt.flags & F_RevokeOldRights) != 0); if ( acctList.IsTree() ) { acctList.ToSorted(); } for ( acct = (TAcctReplNode *)e.OpenFirst(&acctList) ; acct ; acct = (TAcctReplNode *)e.Next() ) { if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } if ( _wcsicmp(acct->GetType(), L"computer") != 0 ) // only update rights for users and groups, not computer accounts { // if the account wasn't created or replaced, don't bother if ( acct->GetStatus() & ( AR_Status_Created | AR_Status_Replaced ) ) { if ( opt.bSameForest && acct->GetSourceRid() && acct->GetTargetRid() ) { WCHAR srcSidStr[LEN_Path] = L""; WCHAR tgtSidStr[LEN_Path] = L""; PSID srcSid = NULL; PSID tgtSid = NULL; DWORD sidLen = DIM(srcSidStr); srcSid = GetWellKnownSid(acct->GetSourceRid(),&opt,FALSE); tgtSid = GetWellKnownSid(acct->GetTargetRid(),&opt,TRUE); if ( srcSid ) { GetTextualSid(srcSid,srcSidStr,&sidLen); } if ( tgtSid ) { sidLen = DIM(tgtSidStr); GetTextualSid(tgtSid,tgtSidStr,&sidLen); } // build the source and target SIDs for the account hr = pUserRights->CopyUserRightsWithSids(SysAllocString(acct->GetSourceSam()),SysAllocString(srcSidStr),SysAllocString(acct->GetTargetSam()),SysAllocString(tgtSidStr)); FreeSid(srcSid); FreeSid(tgtSid); srcSid = NULL; tgtSid = NULL; } else { hr = pUserRights->CopyUserRights(SysAllocString(acct->GetSourceSam()),SysAllocString(acct->GetTargetSam())); } if ( ! rc ) { err.MsgWrite(0,DCT_MSG_UPDATED_RIGHTS_S,acct->GetTargetName() ); acct->MarkRightsUpdated(); } else { err.SysMsgWrite(ErrE,rc,DCT_MSG_UPDATE_RIGHTS_FAILED_SD,acct->GetTargetName(),rc); acct->MarkError(); Mark(L"errors", acct->GetType()); } } } } e.Close(); } if ( pUserRights ) pUserRights->Release(); Progress(L""); return rc; } void CAcctRepl::WriteOptionsToLog() { // This will make it easier to tell if arguments are ignored because they // were specified in the wrong format, or misspelled, etc. WCHAR cmdline[1000]; UStrCpy(cmdline ,GET_STRING(IDS_AccountMigration)); if ( opt.nochange ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_WriteChanges_No)); } UStrCpy(cmdline + UStrLen(cmdline),L" "); UStrCpy(cmdline + UStrLen(cmdline),opt.srcDomain); UStrCpy(cmdline + UStrLen(cmdline),L" "); UStrCpy(cmdline + UStrLen(cmdline),opt.tgtDomain); UStrCpy(cmdline + UStrLen(cmdline),L" "); if ( opt.flags & F_USERS ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyUsers_Yes)); } else { UStrCpy(cmdline + UStrLen(cmdline), GET_STRING(IDS_CopyUsers_No)); } UStrCpy(cmdline + UStrLen(cmdline),L" "); if ( opt.flags & F_GROUP ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyGlobalGroups_Yes)); } else { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyGlobalGroups_No)); } UStrCpy(cmdline + UStrLen(cmdline),L" "); if ( opt.flags & F_LGROUP ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyLocalGroups_Yes)); } else { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyLocalGroups_No)); } UStrCpy(cmdline + UStrLen(cmdline),L" "); if ( opt.flags & F_MACHINE ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyComputers_Yes)); } else { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_CopyComputers_No)); } UStrCpy(cmdline + UStrLen(cmdline),L" "); if ( opt.flags & F_REPLACE ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_ReplaceExisting_Yes)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } if ( opt.flags & F_DISABLE_ALL ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_DisableAll_Yes)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } else if ( opt.flags & F_DISABLE_SPECIAL ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_DisableSpecial_Yes)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } if ( opt.flags & F_DISABLESOURCE ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_DisableSourceAccounts_Yes)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } if ( opt.flags & F_STRONGPW_ALL ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_StrongPwd_All)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } else if ( opt.flags & F_STRONGPW_SPECIAL ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_StrongPwd_Special)); UStrCpy(cmdline + UStrLen(cmdline),L" "); } if ( *opt.addToGroup ) { UStrCpy(cmdline + UStrLen(cmdline),GET_STRING(IDS_AddToGroup)); UStrCpy(cmdline + UStrLen(cmdline),opt.addToGroup); UStrCpy(cmdline + UStrLen(cmdline),L" "); } err.MsgWrite(0,DCT_MSG_GENERIC_S,cmdline); } void CAcctRepl::LoadResultsToVarSet( IVarSet * pVarSet // i/o - VarSet ) { _bstr_t text; text = pVarSet->get(GET_BSTR(DCTVS_AccountOptions_CSVResultFile)); if ( text.length() ) { CommaDelimitedLog results; if ( results.LogOpen((WCHAR*)text,FALSE) ) { // Write the results to a comma-separated file // as SrcName,TgtName,AccountType,Status, srcRid, tgtRid // This file can be used by ST as input. TNodeListEnum e; TAcctReplNode * tnode; if ( acctList.IsTree() ) { acctList.ToSorted(); } for ( tnode = (TAcctReplNode *)e.OpenFirst(&acctList) ; tnode ; tnode = (TAcctReplNode *)e.Next() ) { results.MsgWrite(L"%s,%s,%lx,%lx,%lx,%lx",tnode->GetName(),tnode->GetTargetSam(), tnode->GetType(),tnode->GetStatus(),tnode->GetSourceRid(),tnode->GetTargetRid()); } e.Close(); results.LogClose(); } else { err.MsgWrite(ErrE,DCT_MSG_FAILED_TO_WRITE_ACCOUNT_STATS_S,text); Mark(L"errors", "generic"); } } long level = pVarSet->get(GET_BSTR(DCTVS_Results_ErrorLevel)); if ( level < err.GetMaxSeverityLevel() ) { pVarSet->put(GET_BSTR(DCTVS_Results_ErrorLevel),(LONG)err.GetMaxSeverityLevel()); } } IADsGroup * GetWellKnownTargetGroup(long groupID,Options * pOptions) { IADsGroup * pGroup = NULL; HRESULT hr; PSID pSid; WCHAR strSid[LEN_Path]; WCHAR sPath[LEN_Path]; CLdapConnection c; // Get the SID for the Domain Computers group pSid = GetWellKnownSid(groupID,pOptions,TRUE); if ( pSid ) { c.BytesToString((LPBYTE)pSid,strSid,GetLengthSid(pSid)); swprintf(sPath,L"LDAP://%ls/<SID=%ls>",pOptions->tgtDomain,strSid); hr = ADsGetObject(sPath,IID_IADsGroup,(void**)&pGroup); FreeSid(pSid); } return pGroup; } void PadCnName(WCHAR * sTarget) { // escape character const WCHAR ESCAPE_CHARACTER = L'\\'; // characters that need escaping for RDN format static WCHAR SPECIAL_CHARACTERS[] = L"\"#+,;<=>\\"; // copy old name WCHAR szOldName[LEN_Path]; wcscpy(szOldName, sTarget); WCHAR* pchNew = sTarget; // for each character in old name... for (WCHAR* pchOld = szOldName; *pchOld; pchOld++) { // if special character... if (wcschr(SPECIAL_CHARACTERS, *pchOld)) { // then add escape character *pchNew++ = ESCAPE_CHARACTER; } // add character *pchNew++ = *pchOld; } // null terminate new name *pchNew = L'\0'; } //------------------------------------------------------------------------------ // Create2KObj: Creates a Win2K object. This code uses LDAP to create a new // object of specified type in the specified container. // If any information is incorrect or If there are any access // problems then it simply returns the Failed HRESULT. //------------------------------------------------------------------------------ HRESULT CAcctRepl::Create2KObj( TAcctReplNode * pAcct, //in -TNode with account information Options * pOptions //in -Options set by the user. ) { // This function creates a Win2K object. IADs * pAds = NULL; WCHAR sAdsPath[LEN_Path]; DWORD nPathLen = LEN_Path; WCHAR sSubPath[LEN_Path]; WCHAR sClass[LEN_Path]; HRESULT hr; WCHAR sTarget[LEN_Path]; _variant_t varT; _bstr_t strName; WCHAR strTarget[LEN_Path]; IADsContainer * pCont = NULL; IDispatch * pDisp = NULL; // Get the name of the class for the source object so we can use that to create the new object. wcscpy(sClass, pAcct->GetType()); // check if the sourceAdsPath, for LDAP paths only, is correct before creating this object on the target. If not fail now. if (!wcsncmp(L"LDAP://", pAcct->GetSourcePath(), 7)) { wcsncpy(sAdsPath, pAcct->GetSourcePath(), nPathLen-1); hr = ADsGetObject(sAdsPath, IID_IADs, (void**)&pAds); if (FAILED(hr)) { err.SysMsgWrite(ErrE,hr, DCT_MSG_LDAP_CALL_FAILED_SD, sAdsPath, hr); Mark(L"errors", pAcct->GetType()); return hr; } } pAds = NULL; // Now that we have the classname we can go ahead and create an object in the target domain. // First we need to get IAdsContainer * to the domain. wcscpy(sSubPath, pOptions->tgtOUPath); if ( !wcsncmp(L"LDAP://", sSubPath, 7) ) StuffComputerNameinLdapPath(sAdsPath, nPathLen, sSubPath, pOptions); else MakeFullyQualifiedAdsPath(sAdsPath, nPathLen, sSubPath, pOptions->tgtComp, pOptions->tgtNamingContext); hr = ADsGetObject(sAdsPath, IID_IADsContainer, (void**)&pCont); if ( FAILED(hr) ) { if ( firstTime ) { err.SysMsgWrite(ErrE,hr,DCT_MSG_CONTAINER_NOT_FOUND_SSD, pOptions->tgtOUPath, pOptions->tgtDomain, hr); firstTime = false; Mark(L"errors", pAcct->GetType()); } if ( _wcsicmp((WCHAR*)sClass, L"computer") == 0 ) { MakeFullyQualifiedAdsPath(sAdsPath, nPathLen, L"CN=Computers", pOptions->tgtDomain, pOptions->tgtNamingContext); hr = ADsGetObject(sAdsPath, IID_IADsContainer, (void**)&pCont); } else { MakeFullyQualifiedAdsPath(sAdsPath, nPathLen, L"CN=Users", pOptions->tgtDomain, pOptions->tgtNamingContext); hr = ADsGetObject(sAdsPath, IID_IADsContainer, (void**)&pCont); } if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_DEFAULT_CONTAINER_NOT_FOUND_SD, sAdsPath, hr); Mark(L"errors", pAcct->GetType()); return (hr); } } WCHAR pref[LEN_Path], suf[LEN_Path]; // Call the create method on the container. wcscpy(sTarget, pAcct->GetTargetName()); // In case of the NT4 source domain the source and the target name have no CN= so we need // to add this to the target name. The target name from the group mapping wizard also needs a "CN=" // added to the target name. if ((pOptions->srcDomainVer < 5) || (!_wcsicmp(sClass, L"computer")) || (!_wcsicmp((WCHAR*)pOptions->sWizard, L"groupmapping"))) { WCHAR sTemp[LEN_Path]; wcscpy(sTemp, pAcct->GetTargetName()); PadCnName(sTemp); // if the CN part is not there add it. if ( _wcsicmp(sClass, L"organizationalUnit") == 0 ) wsprintf(sTarget, L"OU=%s", sTemp); else wsprintf(sTarget, L"CN=%s", sTemp); pAcct->SetTargetName(sTarget); } // we need to truncate CN name to less that 64 characters for ( DWORD z = 0; z < wcslen(sTarget); z++ ) { if ( sTarget[z] == L'=' ) break; } if ( z < wcslen(sTarget) ) { // Get the prefix part ex.CN= wcsncpy(pref, sTarget, z+1); pref[z+1] = 0; wcscpy(suf, sTarget+z+1); } // The CN for the account could be greater than 64 we need to truncate it. WCHAR sTempCn[LEN_Path]; if ( wcslen(suf) > 64 ) { if ( wcslen(pOptions->globalSuffix) ) { // in case of a global suffix we need to remove the suffix and then truncate the account and then readd the suffix. suf[wcslen(suf) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 64 - wcslen(pOptions->globalSuffix); wcsncpy(sTempCn, suf, truncate); sTempCn[truncate] = L'\0'; if (wcslen(pOptions->globalSuffix)) wcscat(sTempCn, pOptions->globalSuffix); err.MsgWrite(1, DCT_MSG_TRUNCATE_CN_SS, pAcct->GetTargetName(), sTempCn); } else wcscpy(sTempCn, suf); wsprintf(sTarget, L"%s%s", pref, sTempCn); pAcct->SetTargetName(sTarget); // even for a local group the object type of the group has to be a local group if ( !_wcsicmp((WCHAR*)sClass, L"lgroup") ) { wcscpy((WCHAR*)sClass,L"group"); } // Call the create method on the container. wcscpy(sTarget, pAcct->GetTargetName()); hr = pCont->Create(sClass, sTarget, &pDisp); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr,DCT_MSG_CREATE_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); return hr; } // Get the IADs interface to get the path to newly created object. hr = pDisp->QueryInterface(IID_IADs, (void**)&pAds); pDisp->Release(); pDisp = NULL; if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_GET_IADS_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); return hr; } // Set the Target Account Sam name if not an OU. wcscpy(strTarget, pAcct->GetTargetSam()); StripSamName(strTarget); pAcct->SetTargetSam(strTarget); // check if the $ is at the end of the SAM name for computer accounts. if ( !_wcsicmp(sClass, L"computer") ) { // also make sure the target SAM name is not too long if ( UStrLen(strTarget) > 16 ) { strTarget[15] = 0; } if (strTarget[wcslen(strTarget)-1] != L'$') { WCHAR sTemp[LEN_Path]; wsprintf(sTemp, L"%s$", strTarget); wcscpy(strTarget, sTemp); pAcct->SetTargetSam(strTarget); } } varT = strTarget; if ( _wcsicmp(sClass, L"organizationalUnit") != 0) // organizational unit has no sam account name hr = pAds->Put(L"sAMAccountName", varT); if ( _wcsicmp(sClass, L"group") == 0 ) { varT = _variant_t(pAcct->GetGroupType()); if ( pOptions->srcDomainVer < 5 ) { // all NT4 accounts are security accounts but they tell us that they are Dist accts so lets set them straight. varT.lVal |= 0x80000000; } hr = pAds->Put(L"groupType", varT); } else if ( !_wcsicmp(sClass, L"user") ) { // Get the source profile path and store it in the path _variant_t var; IADs * pAdsSource = NULL; hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADs, (void**)&pAdsSource); if ( SUCCEEDED(hr) ) { // Don't know why it is different for WinNT to ADSI if ( pOptions->srcDomainVer > 4 ) hr = pAdsSource->Get(L"profilePath", &var); else hr = pAdsSource->Get(L"profile", &var); if ( SUCCEEDED(hr)) { pAcct->SetSourceProfile((WCHAR*) V_BSTR(&var)); } pAdsSource->Release(); } } // In no change mode we do not call the set info. if ( !pOptions->nochange ) { hr = pAds->SetInfo(); if ( FAILED(hr) ) { if (HRESULT_CODE(hr) == ERROR_OBJECT_ALREADY_EXISTS) { if ( wcslen(pOptions->prefix) > 0 ) { WCHAR tgt[LEN_Path]; WCHAR pref[LEN_Path], suf[LEN_Path]; WCHAR sTempSam[LEN_Path]; _variant_t varStr; // Here I am adding a prefix and then lets see if we can setinfo that way // find the '=' sign wcscpy(tgt, pAcct->GetTargetName()); for ( DWORD z = 0; z < wcslen(tgt); z++ ) { if ( tgt[z] == L'=' ) break; } if ( z < wcslen(tgt) ) { // Get the prefix part ex.CN= wcsncpy(pref, tgt, z+1); pref[z+1] = 0; wcscpy(suf, tgt+z+1); } // The CN for the account could be greater than 64 we need to truncate it. WCHAR sTempCn[LEN_Path]; if ( wcslen(suf) + wcslen(pOptions->prefix) > 64 ) { int truncate = 64 - wcslen(pOptions->prefix); wcsncpy(sTempCn, suf, truncate); sTempCn[truncate] = L'\0'; err.MsgWrite(1, DCT_MSG_TRUNCATE_CN_SS, pAcct->GetTargetName(), sTempCn); } else wcscpy(sTempCn, suf); // Remove the \ if it is escaping the space if ( sTempCn[0] == L'\\' && sTempCn[1] == L' ' ) { WCHAR sTemp[LEN_Path]; wcscpy(sTemp, sTempCn+1); wcscpy(sTempCn, sTemp); } // Build the target string with the Prefix wsprintf(tgt, L"%s%s%s", pref, pOptions->prefix, sTempCn); pAcct->SetTargetName(tgt); // Create the object in the container hr = pCont->Create(sClass, tgt, &pDisp); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr,DCT_MSG_CREATE_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); pAds->Release(); pDisp->Release(); return hr; } // Get the IADs interface to get the path to newly created object. pAds->Release(); hr = pDisp->QueryInterface(IID_IADs, (void**)&pAds); pDisp->Release(); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_GET_IADS_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); return hr; } // truncate to allow prefix/suffix to fit in 20 characters. int resLen = wcslen(pOptions->prefix) + wcslen(pAcct->GetTargetSam()); if ( !_wcsicmp(pAcct->GetType(), L"computer") ) { // Computer name can be only 15 characters long + $ if ( resLen > 16 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 16 - wcslen(pOptions->prefix) - wcslen(pOptions->globalSuffix); if ( truncate < 1 ) truncate = 1; wcsncpy(sTempSam, sTruncatedSam, truncate - 1); sTempSam[truncate-1] = L'\0'; // Dont forget the $ sign and terminate string. wcscat(sTempSam, pOptions->globalSuffix); wcscat(sTempSam, L"$"); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the prefix wsprintf(tgt, L"%s%s", pOptions->prefix,sTempSam); } else if ( !_wcsicmp(pAcct->GetType(), L"user") ) { if ( resLen > 20 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 20 - wcslen(pOptions->prefix) - wcslen(pOptions->globalSuffix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, sTruncatedSam, truncate); sTempSam[truncate] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the prefix wsprintf(tgt, L"%s%s", pOptions->prefix,sTempSam); } else wsprintf(tgt, L"%s%s", pOptions->prefix,pAcct->GetTargetSam()); StripSamName(tgt); pAcct->SetTargetSam(tgt); varStr = tgt; pAds->Put(L"sAMAccountName", varStr); if ( _wcsicmp(sClass, L"group") == 0 ) { varT = _variant_t(pAcct->GetGroupType()); if ( pOptions->srcDomainVer < 5 ) { // all NT4 accounts are security accounts but they tell us that they are Dist accts so lets set them straight. varT.lVal |= 0x80000000; } hr = pAds->Put(L"groupType", varT); } hr = pAds->SetInfo(); if ( SUCCEEDED(hr) ) { Mark(L"created", sClass); pAcct->MarkCreated(); WCHAR * sTgtPath; HRESULT temphr = pAds->get_ADsPath(&sTgtPath); if ( SUCCEEDED(temphr) ) pAcct->SetTargetPath(sTgtPath); else pAcct->SetTargetPath(L""); } else if ( HRESULT_CODE(hr) == ERROR_OBJECT_ALREADY_EXISTS ) { pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_PREF_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); } else { pAcct->MarkError(); err.SysMsgWrite(ErrE, hr, DCT_MSG_CREATE_FAILED_SSD, pAcct->GetTargetSam(), pOptions->tgtOUPath, hr); Mark(L"errors",pAcct->GetType()); } } else if ( wcslen(pOptions->suffix) > 0 ) { WCHAR tgt[LEN_Path]; WCHAR pref[LEN_Path], suf[LEN_Path]; WCHAR sTempSam[LEN_Path]; _variant_t varStr; wcscpy(tgt, pAcct->GetTargetName()); for ( DWORD z = 0; z < wcslen(tgt); z++ ) { if ( tgt[z] == L'=' ) break; } if ( z < wcslen(tgt) ) { // Get the prefix part ex.CN= wcsncpy(pref, tgt, z+1); pref[z+1] = 0; wcscpy(suf, tgt+z+1); } // The CN for the account could be greater than 64 we need to truncate it. WCHAR sTempCn[LEN_Path]; if ( wcslen(suf) + wcslen(pOptions->suffix) + wcslen(pOptions->globalSuffix) > 64 ) { if ( wcslen(pOptions->globalSuffix) ) { // in case of a global suffix we need to remove the suffix and then truncate the account and then readd the suffix. suf[wcslen(suf) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 64 - wcslen(pOptions->suffix) - wcslen(pOptions->globalSuffix); wcsncpy(sTempCn, suf, truncate); sTempCn[truncate] = L'\0'; wcscat(sTempCn, pOptions->globalSuffix); err.MsgWrite(1, DCT_MSG_TRUNCATE_CN_SS, pAcct->GetTargetName(), suf); } else wcscpy(sTempCn, suf); // Remove the trailing space \ escape sequence wcscpy(tgt, sTempCn); for ( int i = wcslen(tgt)-1; i >= 0; i-- ) { if ( tgt[i] != L' ' ) break; } if ( tgt[i] == L'\\' ) { WCHAR * pTemp = &tgt[i]; *pTemp = 0; wcscat(pref, tgt); wcscpy(suf, pTemp+1); } else { wcscat(pref, tgt); wcscpy(suf, L""); } wsprintf(tgt, L"%s%s%s", pref, suf, pOptions->suffix); pAcct->SetTargetName(tgt); // Create the object in the container hr = pCont->Create(sClass, tgt, &pDisp); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr,DCT_MSG_CREATE_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); pAds->Release(); return hr; } // Get the IADs interface to get the path to newly created object. pAds->Release(); hr = pDisp->QueryInterface(IID_IADs, (void**)&pAds); pDisp->Release(); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_GET_IADS_FAILED_SSD, pAcct->GetTargetName(), pOptions->tgtOUPath, hr); Mark(L"errors", pAcct->GetType()); pCont->Release(); return hr; } // truncate to allow prefix/suffix to fit in valid length int resLen = wcslen(pOptions->suffix) + wcslen(pAcct->GetTargetSam()); if ( !_wcsicmp(pAcct->GetType(), L"computer") ) { // Computer name can be only 15 characters long + $ if ( resLen > 16 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 16 - wcslen(pOptions->suffix) - wcslen(pOptions->globalSuffix); if ( truncate < 1 ) truncate = 1; wcsncpy(sTempSam, sTruncatedSam, truncate - 1); sTempSam[truncate-1] = L'\0'; // Re add the global suffix after the truncation. wcscat(sTempSam, pOptions->globalSuffix); wcscat(sTempSam, L"$"); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the suffix taking into account the $ sign if ( sTempSam[wcslen(sTempSam) - 1] == L'$' ) sTempSam[wcslen(sTempSam) - 1] = L'\0'; wsprintf(tgt, L"%s%s$", sTempSam, pOptions->suffix); } else if ( !_wcsicmp(pAcct->GetType(), L"user") ) { if ( resLen > 20 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 20 - wcslen(pOptions->suffix) - wcslen(pOptions->globalSuffix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, sTruncatedSam, truncate); sTempSam[truncate] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the suffix. wsprintf(tgt, L"%s%s", sTempSam, pOptions->suffix); } else wsprintf(tgt, L"%s%s", pAcct->GetTargetSam(), pOptions->suffix); StripSamName(tgt); pAcct->SetTargetSam(tgt); varStr = tgt; pAds->Put(L"sAMAccountName", varStr); if ( _wcsicmp(sClass, L"group") == 0 ) { varT = _variant_t(pAcct->GetGroupType()); if ( pOptions->srcDomainVer < 5 ) { // all NT4 accounts are security accounts but they tell us that they are Dist accts so lets set them straight. varT.lVal |= 0x80000000; } hr = pAds->Put(L"groupType", varT); } hr = pAds->SetInfo(); if ( SUCCEEDED(hr) ) { Mark(L"created", sClass); pAcct->MarkCreated(); WCHAR * sTgtPath; HRESULT temphr = pAds->get_ADsPath(&sTgtPath); if ( SUCCEEDED(temphr) ) pAcct->SetTargetPath(sTgtPath); else pAcct->SetTargetPath(L""); } else if ( HRESULT_CODE(hr) == ERROR_OBJECT_ALREADY_EXISTS ) { pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_PREF_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); } else { pAcct->MarkError(); err.SysMsgWrite(ErrE, hr, DCT_MSG_CREATE_FAILED_SSD, pAcct->GetTargetSam(), pOptions->tgtOUPath, hr); Mark(L"errors",pAcct->GetType()); } } else { if (pOptions->flags & F_REPLACE) { WCHAR sPath[LEN_Path], sQuery[LEN_Path]; WCHAR sPath9[LEN_Path]; SAFEARRAY * pszColNames = NULL; BSTR HUGEP * pData; LPWSTR sData[] = { L"ADsPath", L"profilePath", L"objectClass" }; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); IEnumVARIANT * pEnumMem = NULL; _variant_t var; DWORD dwFetch; HRESULT temphr; int nElt = DIM(sData); SAFEARRAYBOUND bd = { nElt, 0 }; BOOL bIsCritical = FALSE; BOOL bIsDifferentType = FALSE; // Since the object already exists we need to get the ADsPath to the object and update the acct structure // Set up the query and the path wsprintf(sPath, L"LDAP://%s/%s", pOptions->tgtComp+2, pOptions->tgtNamingContext); WCHAR sTempSamName[LEN_Path]; wcscpy(sTempSamName, pAcct->GetTargetSam()); if ( sTempSamName[0] == L' ' ) { WCHAR sTemp[LEN_Path]; wsprintf(sTemp, L"\\20%s", sTempSamName + 1); wcscpy(sTempSamName, sTemp); } wsprintf(sQuery, L"(sAMAccountName=%s)", sTempSamName); temphr = pQuery->raw_SetQuery(sPath, pOptions->tgtDomainDns, sQuery, ADS_SCOPE_SUBTREE, FALSE); if ( FAILED(temphr) ) { pCont->Release(); pAds->Release(); return temphr; } // Set up the columns so we get the ADsPath of the object. pszColNames = ::SafeArrayCreate(VT_BSTR, 1, &bd); temphr = ::SafeArrayAccessData(pszColNames, (void HUGEP **)&pData); if ( FAILED(temphr) ) { pCont->Release(); pAds->Release(); SafeArrayDestroy(pszColNames); return temphr; } for ( long i = 0; i < nElt; i++ ) { pData[i] = SysAllocString(sData[i]); } temphr = ::SafeArrayUnaccessData(pszColNames); if ( FAILED(temphr) ) { ::SafeArrayDestroy(pszColNames); pCont->Release(); pAds->Release(); return temphr; } temphr = pQuery->raw_SetColumns(pszColNames); if ( FAILED(temphr) ) { pCont->Release(); pAds->Release(); ::SafeArrayDestroy(pszColNames); return temphr; } // Time to execute the plan. temphr = pQuery->raw_Execute(&pEnumMem); if ( FAILED(temphr) ) { ::SafeArrayDestroy(pszColNames); pCont->Release(); pAds->Release(); return temphr; } ::SafeArrayDestroy(pszColNames); temphr = pEnumMem->Next(1, &var, &dwFetch); if ( temphr == S_OK ) { // This would only happen if the member existed in the target domain. // We now have a Variant containing an array of variants so we access the data _variant_t * pVar; _bstr_t sConfName = pAcct->GetTargetName(); _bstr_t sOldCont; pszColNames = V_ARRAY(&var); SafeArrayAccessData(pszColNames, (void HUGEP **)&pVar); wcscpy(sAdsPath, (WCHAR*)pVar[0].bstrVal); pAcct->SetTargetPath(sAdsPath); // Check if the object we are about to replace is of the same type. if ( _wcsicmp(pAcct->GetType(), (WCHAR*) pVar[2].bstrVal) ) bIsDifferentType = TRUE; SafeArrayUnaccessData(pszColNames); IADs * pAdsNew = NULL; temphr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetTargetPath()), IID_IADs, (void**)&pAdsNew); if ( SUCCEEDED(temphr) ) { //see if critical _variant_t varCritical; temphr = pAdsNew->Get(L"isCriticalSystemObject", &varCritical); if (SUCCEEDED(temphr)) { bIsCritical = V_BOOL(&varCritical) == -1 ? TRUE : FALSE; } //get the name BSTR sTgtName = NULL; temphr = pAdsNew->get_Name(&sTgtName); if ( SUCCEEDED(temphr) ) sConfName = _bstr_t(sTgtName, false); //get the parent container of the conflicting object BSTR sTgtCont = NULL; temphr = pAdsNew->get_Parent(&sTgtCont); if ( SUCCEEDED(temphr) ) sOldCont = _bstr_t(sTgtCont, false); } if ( pAdsNew ) { pAdsNew->Release(); pAdsNew = NULL; } if ( bIsDifferentType ) { // Since the source and target accounts are of different types we do not want to replace these. hr = HRESULT_FROM_WIN32(ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH); } //else if not critical then move the account else if ( !bIsCritical ) { //if user selected to move that account into the user-specified OU, then move it if (pOptions->flags & F_MOVE_REPLACED_ACCT) { temphr = pCont->MoveHere(const_cast<WCHAR*>(pAcct->GetTargetPath()), const_cast<WCHAR*>(pAcct->GetTargetName()), &pDisp); //if move failed due to CN conflict, do not migrate if ( FAILED(temphr) ) { // The move failed one of the reasons might be that there is a conflict in container name ( CN ) DWORD nPathLen = LEN_Path; WCHAR path9[LEN_Path]; IADs * pAds9 = NULL; // Build the path to the target object MakeFullyQualifiedAdsPath(sPath9, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); WCHAR * pRelativeTgtOUPath = wcschr(sPath9 + UStrLen(L"LDAP://") + 2,L'/'); if ( pRelativeTgtOUPath ) { *pRelativeTgtOUPath = 0; swprintf(path9,L"%ls/%ls,%ls",sPath9,pAcct->GetTargetName(),pRelativeTgtOUPath+1); } if ( _wcsicmp(path9, pAcct->GetTargetPath()) ) { HRESULT phr = ADsGetObject(path9, IID_IADs, (void**)&pAds9); if ( SUCCEEDED(phr) ) { // Object with that CN exists so we can not move the object err.MsgWrite(ErrE, DCT_MSG_MOVE_FAILED_CN_CONFLICT_SSS, pAcct->GetTargetName(), pRelativeTgtOUPath+1); Mark(L"errors", pAcct->GetType()); pAds9->Release(); } } pAds->Release(); pCont->Release(); return temphr; } } else //else try to rename the CN of the object (I'll use the same MoveHere API) { IADsContainer * pOldCont = NULL; temphr = ADsGetObject(sOldCont, IID_IADsContainer, (void**)&pOldCont); if (SUCCEEDED(temphr)) { temphr = pOldCont->MoveHere(const_cast<WCHAR*>(pAcct->GetTargetPath()), const_cast<WCHAR*>(pAcct->GetTargetName()), &pDisp); pOldCont->Release(); } //if failed to rename the CN, do not migrate if ( FAILED(temphr) ) { // The CN rename failed due to conflicting CN in this container err.MsgWrite(ErrE, DCT_MSG_CN_RENAME_CONFLICT_SSS, (WCHAR*)sConfName, pAcct->GetTargetName(), (WCHAR*)sOldCont); Mark(L"errors", pAcct->GetType()); pAds->Release(); pCont->Release(); //if we couldn't rename the CN, change the error code so we don't continue migrating this user if ((HRESULT_CODE(temphr) == ERROR_OBJECT_ALREADY_EXISTS)) temphr = HRESULT_FROM_WIN32(ERROR_DS_INVALID_DN_SYNTAX); return temphr; } } // Get the new location of the object. BSTR sNewPath; temphr = pDisp->QueryInterface(IID_IADs, (void**)&pAdsNew); pDisp->Release(); if ( FAILED(temphr) ) { pCont->Release(); pAds->Release(); return temphr; } temphr = pAdsNew->get_ADsPath(&sNewPath); pAdsNew->Release(); if ( FAILED(temphr) ) { pCont->Release(); pAds->Release(); return temphr; } // And store that in the target path pAcct->SetTargetPath((WCHAR*) sNewPath); SysFreeString(sNewPath); // If the account is a group account and the Replace Existing members flag is set then we need to // remove all the members of this group. if ( (_wcsicmp(L"group", pAcct->GetType()) == 0 ) && (pOptions->flags & F_REMOVE_OLD_MEMBERS) ) RemoveMembers(pAcct, pOptions); pAcct->MarkAlreadyThere(); pAcct->MarkReplaced(); } else { //if this is a special account that we need to mark as such if (bIsCritical) { pAcct->MarkCritical(); hr = HRESULT_FROM_WIN32(ERROR_SPECIAL_ACCOUNT); } } } else { // Sam Account name is not in the target domain and we have a conflict see if it is a CN conf WCHAR sPath9[LEN_Path]; DWORD nPathLen = LEN_Path; WCHAR path9[LEN_Path]; IADs * pAdsNew = NULL; // Build the path to the target object MakeFullyQualifiedAdsPath(sPath9, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); WCHAR * pRelativeTgtOUPath = wcschr(sPath9 + UStrLen(L"LDAP://") + 2,L'/'); if ( pRelativeTgtOUPath ) { *pRelativeTgtOUPath = 0; swprintf(path9,L"%ls/%ls,%ls",sPath9,pAcct->GetTargetName(),pRelativeTgtOUPath+1); } temphr = ADsGetObject(path9, IID_IADs, (void**) &pAdsNew); if ( SUCCEEDED(temphr) ) { // Object with that CN exists so we use it BSTR sTgtPath; HRESULT temphr = pAdsNew->get_ADsPath(&sTgtPath); if (SUCCEEDED(temphr)) pAcct->SetTargetPath(sTgtPath); else pAcct->SetTargetPath(L""); // Check if the object we are about to replace is of the same type. BSTR sClass; temphr = pAdsNew->get_Class(&sClass); if ((SUCCEEDED(temphr)) && (!_wcsicmp(pAcct->GetType(), (WCHAR*)sClass))) bIsDifferentType = FALSE; else bIsDifferentType = TRUE; _variant_t varCritical; temphr = pAdsNew->Get(L"isCriticalSystemObject", &varCritical); if (SUCCEEDED(temphr)) bIsCritical = V_BOOL(&varCritical) == -1 ? TRUE : FALSE; //if the source and target accounts are of different types we do not want to replace these. if (bIsDifferentType) { hr = HRESULT_FROM_WIN32(ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH); } //else if not critical then fix the SAM name and other related chores else if ( !bIsCritical ) { //get the old Target Account Sam name _variant_t varOldSAM = pAcct->GetTargetSam(); temphr = pAdsNew->Get(L"sAMAccountName", &varOldSAM); // Set the Target Account Sam name _variant_t varSAM = pAcct->GetTargetSam(); temphr = pAdsNew->Put(L"sAMAccountName", varSAM); if (SUCCEEDED(temphr)) temphr = pAdsNew->SetInfo(); if ( FAILED(temphr) ) { // The SAM rename failed due to conflicting SAM, do not migrate err.MsgWrite(ErrE, DCT_MSG_SAM_RENAME_CONFLICT_SS, (WCHAR*)(varOldSAM.bstrVal), pAcct->GetTargetSam()); Mark(L"errors", pAcct->GetType()); pAds->Release(); pCont->Release(); pAdsNew->Release(); return temphr; } // If the account is a group account and the Replace Existing members flag is set then we need to // remove all the members of this group. if ( (_wcsicmp(L"group", pAcct->GetType()) == 0 ) && (pOptions->flags & F_REMOVE_OLD_MEMBERS) ) RemoveMembers(pAcct, pOptions); pAcct->MarkAlreadyThere(); pAcct->MarkReplaced(); } else { //if this is a special account that we need to mark as such if (bIsCritical) { pAcct->MarkCritical(); hr = HRESULT_FROM_WIN32(ERROR_SPECIAL_ACCOUNT); } } if ( pAdsNew ) { pAdsNew->Release(); pAdsNew = NULL; } } else { // This should only happen if the replace fails because the object that already has // this SAM Account Name is a special Win2K builtin object or container // One example of this problem is "Service". pAcct->SetStatus(pAcct->GetStatus()|AR_Status_Special); err.SysMsgWrite(ErrE,ERROR_SPECIAL_ACCOUNT,DCT_MSG_REPLACE_FAILED_SD,pAcct->GetName(),ERROR_SPECIAL_ACCOUNT); Mark(L"errors", pAcct->GetType()); } } pEnumMem->Release(); VariantInit(&var); } else { pAcct->MarkAlreadyThere(); err.MsgWrite(ErrW,DCT_MSG_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"warnings",pAcct->GetType()); } } } } else { Mark(L"created", pAcct->GetType()); pAcct->MarkCreated(); BSTR sTgtPath = NULL; HRESULT temphr = pAds->get_ADsPath(&sTgtPath); if ( SUCCEEDED(temphr) ) { pAcct->SetTargetPath(sTgtPath); SysFreeString(sTgtPath); } else pAcct->SetTargetPath(L""); // Add computers to if ( !_wcsicmp(sClass,L"computer") ) { IADsGroup * pGroup = GetWellKnownTargetGroup(DOMAIN_COMPUTERS,pOptions); if ( pGroup ) { temphr = pGroup->Add(SysAllocString(pAcct->GetTargetPath())); pGroup->Release(); if ( SUCCEEDED(temphr) ) { // if we successfully added the computer to Domain computers, now set Domain Computers as // the primary group temphr = pAds->Put(L"primaryGroupID",_variant_t(LONG(515))); if ( SUCCEEDED(temphr) ) { temphr = pAds->SetInfo(); } if ( SUCCEEDED(hr) ) { // if this worked, now we can remove the computer from Domain Users pGroup = GetWellKnownTargetGroup(DOMAIN_USERS,pOptions); if ( pGroup ) { temphr = pGroup->Remove(SysAllocString(pAcct->GetTargetPath())); pGroup->Release(); } } } } } } } else { // This is the No change mode. All we need to do here is to see if there might be a collision. WCHAR sPath[LEN_Path]; WCHAR sPath9[LEN_Path]; DWORD nPathLen = LEN_Path; WCHAR path9[LEN_Path]; IADs * pAdsNew = NULL; BOOL bConflict = FALSE; /* see if the CN conflicts */ // Build the path to the target object MakeFullyQualifiedAdsPath(sPath9, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); WCHAR * pRelativeTgtOUPath = wcschr(sPath9 + UStrLen(L"LDAP://") + 2,L'/'); if ( pRelativeTgtOUPath ) { *pRelativeTgtOUPath = 0; swprintf(path9,L"%ls/%ls,%ls",sPath9,pAcct->GetTargetName(),pRelativeTgtOUPath+1); } HRESULT temphr = ADsGetObject(path9, IID_IADs, (void**) &pAdsNew); if (SUCCEEDED(temphr)) { bConflict = TRUE; pAdsNew->Release(); pAdsNew = NULL; } /* if no CN conflict, see if the SAM conflicts */ if (!bConflict) { hr = LookupAccountInTarget(pOptions, const_cast<WCHAR*>(pAcct->GetTargetSam()), sPath); if ( hr == S_OK ) bConflict = TRUE; } if (!bConflict) { // There is no such account on the target. We can go ahead and assume that it would have worked. hr = S_OK; Mark(L"created", pAcct->GetType()); pAcct->MarkCreated(); //if the UPN conflicted, post a message if (pAcct->bUPNConflicted) err.MsgWrite(ErrE, DCT_MSG_UPN_CONF, pAcct->GetTargetSam()); } else { bConflict = FALSE; //reset the conflict flag // there is a conflict. See if we need to add prefix or suffix. Or simply replace the account. if ( wcslen(pOptions->prefix) > 0 ) { // Prefix was specified so we need to try that. WCHAR tgt[LEN_Path]; WCHAR pref[LEN_Path], suf[LEN_Path]; _variant_t varStr; // Here I am adding a prefix and then lets see if we can setinfo that way // find the '=' sign wcscpy(tgt, pAcct->GetTargetName()); for ( DWORD z = 0; z < wcslen(tgt); z++ ) { if ( tgt[z] == L'=' ) break; } if ( z < wcslen(tgt) ) { // Get the prefix part ex.CN= wcsncpy(pref, tgt, z+1); pref[z+1] = 0; wcscpy(suf, tgt+z+1); } // Build the target string with the Prefix wsprintf(tgt, L"%s%s%s", pref, pOptions->prefix, suf); pAcct->SetTargetName(tgt); // Build the target SAM name with the prefix. wsprintf(tgt, L"%s%s", pOptions->prefix, pAcct->GetTargetSam()); StripSamName(tgt); pAcct->SetTargetSam(tgt); //see if the CN still conflicts swprintf(path9,L"%ls/%ls,%ls",sPath9,pAcct->GetTargetName(),pRelativeTgtOUPath+1); temphr = ADsGetObject(path9, IID_IADs, (void**) &pAdsNew); if (SUCCEEDED(temphr)) { bConflict = TRUE; pAdsNew->Release(); pAdsNew = NULL; } //if no CN conflict, see if the SAM name conflicts if (!bConflict) { hr = LookupAccountInTarget(pOptions, const_cast<WCHAR*>(pAcct->GetTargetSam()), sPath); if ( hr == S_OK ) bConflict = TRUE; } if (!bConflict) { hr = 0; Mark(L"created", sClass); pAcct->MarkCreated(); } else { hr = HRESULT_FROM_WIN32(ERROR_OBJECT_ALREADY_EXISTS); pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); } //if the UPN conflicted, post a message if (pAcct->bUPNConflicted) err.MsgWrite(ErrE, DCT_MSG_UPN_CONF, pAcct->GetTargetSam()); } else if ( wcslen(pOptions->suffix) > 0 ) { // Suffix was specified so we will try that. WCHAR tgt[LEN_Path]; _variant_t varStr; // Here I am adding a prefix and then lets see if we can setinfo that way wsprintf(tgt, L"%s%s", pAcct->GetTargetName(), pOptions->suffix); // Build the target SAM name with the prefix. wsprintf(tgt, L"%s%s", pAcct->GetTargetSam(), pOptions->suffix); StripSamName(tgt); pAcct->SetTargetSam(tgt); //see if the CN still conflicts swprintf(path9,L"%ls/%ls,%ls",sPath9,pAcct->GetTargetName(),pRelativeTgtOUPath+1); temphr = ADsGetObject(path9, IID_IADs, (void**) &pAdsNew); if (SUCCEEDED(temphr)) { bConflict = TRUE; pAdsNew->Release(); pAdsNew = NULL; } //if no CN conflict, see if the SAM name conflicts if (!bConflict) { hr = LookupAccountInTarget(pOptions, const_cast<WCHAR*>(pAcct->GetTargetSam()), sPath); if ( hr == S_OK ) bConflict = TRUE; } if (!bConflict) { hr = 0; Mark(L"created", sClass); pAcct->MarkCreated(); } else { hr = HRESULT_FROM_WIN32(ERROR_OBJECT_ALREADY_EXISTS); pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); } //if the UPN conflicted, post a message if (pAcct->bUPNConflicted) err.MsgWrite(ErrE, DCT_MSG_UPN_CONF, pAcct->GetTargetSam()); } else if (pOptions->flags & F_REPLACE) { // Replace the account. hr = HRESULT_FROM_WIN32(ERROR_OBJECT_ALREADY_EXISTS); } else { // The account is already there and we really cant do anything about it. So tell the user. hr = HRESULT_FROM_WIN32(ERROR_OBJECT_ALREADY_EXISTS); pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); } } } // Cleanup pCont->Release(); pAds->Release(); return hr; } void VariantSidToString(_variant_t & varSid) { if ( varSid.vt == VT_BSTR ) { return; } else if ( varSid.vt == ( VT_ARRAY | VT_UI1) ) { // convert the array of bits to a string CLdapConnection c; LPBYTE pByte = NULL; WCHAR str[LEN_Path]; SafeArrayAccessData(varSid.parray,(void**)&pByte); c.BytesToString(pByte,str,GetLengthSid(pByte)); SafeArrayUnaccessData(varSid.parray); varSid = SysAllocString(str); } else { varSid.ChangeType(VT_BSTR); } } HRESULT CAcctRepl::UpdateGroupMembership( Options * pOptions, //in -Options set by the user TNodeListSortable * acctlist, //in -List of all accounts being copied ProgressFn * progress, //in -Progress update IStatusObj * pStatus //in -Status update ) { IADsGroup * pGroup = NULL; IADsGroup * pTarget = NULL; IADsMembers * pMem = NULL; IVarSetPtr pVs(__uuidof(VarSet)); TAcctReplNode * acct = NULL; MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); IEnumVARIANT * pVar = NULL; _variant_t var, v2; BSTR sPath; WCHAR sTgtPath[LEN_Path]; _bstr_t sSam; IADs * pAds = NULL; IIManageDBPtr pDB = pOptions->pDb; IUnknown * pUnk = NULL; TNodeTreeEnum tenum; HRESULT hr = S_OK; DWORD ret = 0; IDispatch * pDisp = NULL; bool bFoundGroups = false; WCHAR sDomain[LEN_Path]; BSTR sClass; DWORD grpType = 0; pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); // sort the account list by Source Type\Source Sam Name if ( acctlist->IsTree() ) acctlist->ToSorted(); acctlist->SortedToScrambledTree(); acctlist->Sort(&TNodeCompareAccountSam); acctlist->Balance(); for ( acct = (TAcctReplNode *)tenum.OpenFirst(acctlist) ; acct ; acct = (TAcctReplNode *)tenum.Next() ) { if ( !acct->ProcessMem() ) continue; if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // Since the list is sorted by account type we can continue to ignore everything till we get to the // group type and once it is found and processed the rest of types can be ignored if ( _wcsicmp(acct->GetType(), L"group") != 0 ) { if ( !bFoundGroups ) continue; else break; } else { bFoundGroups = true; } // If we are here this must be a group type so tell the progrss function what we are doing WCHAR mesg[LEN_Path]; PSID pSid = NULL; bool bGotPrimaryGroups = false; wsprintf(mesg, GET_STRING(IDS_UPDATING_GROUP_MEMBERSHIPS_S), acct->GetName()); if ( progress ) progress(mesg); if ( acct->CreateAccount() && (!acct->WasCreated() && !acct->WasReplaced()) ) // if the account was not copied then why should we even process it? // Bad idea. We need to process the account membership because the group may have been previously copied and // in this run we simply need to update the membership. Changing the expansion code to mark the account as created. // that should fix the problem. continue; if ( !_wcsicmp(acct->GetType(), L"group") && *acct->GetTargetPath() ) { err.MsgWrite(0, DCT_MSG_PROCESSING_GROUP_MEMBER_S, (WCHAR*) acct->GetTargetName()); if ( !pOptions->nochange ) { hr = ADsGetObject(const_cast<WCHAR*>(acct->GetTargetPath()), IID_IADsGroup, (void**) &pTarget); if (FAILED(hr)) { err.SysMsgWrite(ErrE, 0, DCT_MSG_OBJECT_NOT_FOUND_SSD, acct->GetTargetPath(), pOptions->tgtDomain, hr ); Mark(L"errors", acct->GetType()); continue; // we cant possibly do any thing without the source group } } else hr = S_OK; hr = GetTargetGroupType(const_cast<WCHAR*>(acct->GetTargetPath()), grpType); hr = ADsGetObject(const_cast<WCHAR*>(acct->GetSourcePath()), IID_IADsGroup, (void**) &pGroup); if (FAILED(hr)) { if ( pTarget )pTarget->Release(); err.SysMsgWrite(ErrE, 0, DCT_MSG_OBJECT_NOT_FOUND_SSD, acct->GetSourcePath(), pOptions->srcDomain, hr ); Mark(L"errors", acct->GetType()); continue; // we cant possibly do any thing for this group without the target group } // Now we get the members interface. if ( SUCCEEDED(hr) ) hr = pGroup->Members(&pMem); // Ask for an enumeration of the members if ( SUCCEEDED(hr) ) hr = pMem->get__NewEnum((IUnknown **)&pVar); // Now enumerate through all the objects in the Group while ( SUCCEEDED(pVar->Next(1, &var, &ret)) ) { // Check if user wants to abort the operation if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // If no values are returned that means we are done with all members if ( ret == 0 || var.vt == VT_EMPTY) { if ( bGotPrimaryGroups ) break; else { // Go through and add all the users that have this group as their primary group. bGotPrimaryGroups = true; if (pVar) pVar->Release(); pVar = NULL; hr = GetThePrimaryGroupMembers(pOptions, const_cast<WCHAR*>(acct->GetSourceSam()), pVar); continue; } } // Depending on what we are looking at we get two variant types. In case of members we get // IDispatch pointer in a variant. In case of primary group members we get variant(bstr) array // So we need to branch here depending on what we get if ( bGotPrimaryGroups ) { // first element is the ADsPath of the object so use that to get the object and continue if ( var.vt == (VT_ARRAY | VT_VARIANT) ) { SAFEARRAY * pArray = var.parray; _variant_t * pDt; hr = SafeArrayAccessData(pArray, (void**) &pDt); if (SUCCEEDED(hr)) { if ( pDt[0].vt == VT_BSTR ) hr = ADsGetObject((WCHAR*)pDt[0].bstrVal, IID_IADs, (void**) &pAds); else hr = E_FAIL; SafeArrayUnaccessData(pArray); } VariantInit(&var); } else hr = E_FAIL; } else { // We have a dispatch pointer in the VARIANT so we will get the IADs pointer to it and // then get the ADs path to that object and then remove it from the group pDisp = V_DISPATCH(&var); hr = pDisp->QueryInterface(IID_IADs, (void**) &pAds); } if ( SUCCEEDED(hr) ) { hr = pAds->get_ADsPath(&sPath); if ( SUCCEEDED(hr) ) { // Parse out the domain name from the LDAP path. if ( !wcsncmp(L"WinNT://", (WCHAR*)sPath, 8) ) { //Grab the domain name from the WinNT path. WCHAR sTemp[LEN_Path]; WCHAR * p = (WCHAR*)sPath; wcscpy(sTemp, p+8); p = wcschr(sTemp, L'/'); if ( p ) *p = L'\0'; else { //we have the path in this format "WinNT://S-1-5....." // in this case we need to get the SID and then try and get its domain and account name PSID pSid = NULL; WCHAR sName[255]; DWORD rc = 1; pSid = SidFromString(sTemp); if ( pSid ) { rc = GetName(pSid, sName, sTemp); if ( !rc ) { // Give it a winnt path. This way we get the path that we can use sPath = _bstr_t(L"WinNT://") + sTemp + _bstr_t(L"/") + sName; } FreeSid(pSid); } if ( rc ) { // Log a message that we cant resolve this guy err.SysMsgWrite(ErrE, rc, DCT_MSG_PATH_NOT_RESOLVED_SD, sTemp, rc); if ( pAds ) pAds->Release(); pAds = NULL; Mark("errors", acct->GetType()); continue; } } wcscpy(sDomain, sTemp); } else { // Get the domain name from the LDAP path. Convert domain name to the NETBIOS name. WCHAR sTemp[LEN_Path]; WCHAR sp[LEN_Path]; WCHAR * p = (WCHAR*)sPath; wcscpy(sTemp, p+7); p = wcschr(sTemp, L'/'); if ( p ) *p = L'\0'; // Now run this domain name through the Function to get the NETBIOS name. GetDnsAndNetbiosFromName(sTemp, sDomain, sp); } } if ( SUCCEEDED(hr) ) { if ( !(acct->GetGroupType() & 4) ) { // Global/Universal groups are easy all we have to do is use the path we got back and get the info from that object hr = pAds->get_Class(&sClass); hr = pAds->Get(L"samAccountName", &v2); if ( SUCCEEDED(hr) ) sSam = v2; else { // make sure it is a WinNT:// path sSam = L""; if ( !wcsncmp((WCHAR*)sPath, L"WinNT://", 8) ) { // it must be a non NT4 account we are going to have to parse the path to get samName // ignore the WinNT://<domain>/ part and you got yourself the sam name WCHAR * t = (WCHAR*) sPath; WCHAR * sTemp = wcschr(t+(8), L'/'); if ( sTemp ) { sSam = ++sTemp; hr = S_OK; } } } //if universal group change domain if foreign security principal if ((acct->GetGroupType() & 8)) { _bstr_t sTempDomain = GetDomainOfMigratedForeignSecPrincipal(sPath); if (sTempDomain.length()) wcscpy(sDomain, sTempDomain); } } else { // Local group we need to get the SID LDAP path and then use that to add the account to the group. WCHAR sSidPath[LEN_Path]; WCHAR sSamName[LEN_Path]; HRESULT hrGetSid; if ( pSid ) { delete pSid; pSid = NULL; } hrGetSid = BuildSidPath(sPath, sSidPath, sSamName, sDomain, pOptions,&pSid); if (SUCCEEDED(hrGetSid)) { _bstr_t sTempDomain = GetDomainOfMigratedForeignSecPrincipal(sPath); if (sTempDomain.length()) wcscpy(sDomain, sTempDomain); sPath = sSidPath; sSam = sSamName; } } } } if ( pAds ) pAds->Release(); if ( SUCCEEDED(hr) ) { // Now that we have the SamAccountname and the path we can lookup the info from the DB hr = pDB->GetAMigratedObject((WCHAR*)sSam, sDomain, pOptions->tgtDomain, &pUnk); if ( pOptions->nochange ) { WCHAR targetPath[LEN_Path]; // in this case the account was not really copied so we need to make sure that we // we include the accounts that would have been added if this was a true migration. Lookup p; p.pName = (WCHAR*) sSam; p.pType = (WCHAR*) sClass; TAcctReplNode * pNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pNode) { v2 = pNode->GetTargetSam(); pVs->put(L"MigratedObjects.TargetSamName", v2); v2 = pNode->GetTargetName(); BuildTargetPath( (WCHAR*) v2.bstrVal, pOptions->tgtOUPath, targetPath); v2 = targetPath; pVs->put(L"MigratedObjects.TargetAdsPath", v2); hr = S_OK; } } if ( hr == S_OK ) { // Since we have previously copied the account we can simply add the one that we copied. v2 = pVs->get(L"MigratedObjects.TargetAdsPath"); if ( v2.vt == VT_BSTR ) { if ( !pOptions->nochange ) hr = pTarget->Add(v2.bstrVal); else hr = S_OK; if ( SUCCEEDED(hr) ) { err.MsgWrite(0, DCT_MSG_ADDED_TO_GROUP_S, (WCHAR*)v2.bstrVal); //if this is not a global group, remove the source account from the group, if there if (!(acct->GetGroupType() & 2)) RemoveSourceAccountFromGroup(pTarget, pVs, pOptions); } else { hr = BetterHR(hr); switch ( HRESULT_CODE(hr) ) { case NERR_UserNotFound: case 0x5000: err.SysMsgWrite(0, hr, DCT_MSG_MEMBER_NONEXIST_SS, (WCHAR *)v2.bstrVal, acct->GetTargetName(), hr); break; default: { err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_ADD_TO_GROUP_SSD, (WCHAR *)v2.bstrVal, acct->GetTargetName(), hr); Mark(L"warnings", acct->GetType()); } } } } } else { // We have not migrated the accounts from source domain to the target domain. // so we now have to branch for different group types. WCHAR domain[LEN_Path]; DWORD cbDomain = DIM(domain); // DWORD rc = 0; SID_NAME_USE use; if ( grpType & 2 ) { // For the global groups we simply say that account has not been migrated. err.MsgWrite(0, DCT_MSG_MEMBER_NONEXIST_SS, (WCHAR*)sSam, acct->GetTargetName()); } else { //Process local/universal groups ( can add objects from non-target domains ) // 1. See if we have migrated this account to some other domain. // 2. Is the Source accounts SID valid here (trust) if so add that. // 3. See if we can find an account with the same name in the target. // if any of these operations yield a valid account then just add it. // we are going to lookup migrated objects table to find migration of this object // from source domain to any other domain. hr = pDB->raw_GetAMigratedObjectToAnyDomain((WCHAR*)sSam, sDomain, &pUnk); if ( hr == S_OK ) { // we have migrated the object to some other domain. So we will get the path to that object and try to add it to the group // it may fail if there is no trust/forest membership of the target domain and the domain that this object resides in. v2 = pVs->get(L"MigratedObjects.TargetAdsPath"); if ( v2.vt == VT_BSTR ) { // Since the object is in a different domain, we will have to get the SID of the object, // and use that for the Add IADs * pAds = NULL; _variant_t varSid; hr = ADsGetObject(v2.bstrVal,IID_IADs,(void**)&pAds); if ( SUCCEEDED(hr) ) { hr = pAds->Get(SysAllocString(L"objectSid"),&varSid); pAds->Release(); } if ( SUCCEEDED(hr) ) { // Make sure the SID we got was in string format VariantSidToString(varSid); UStrCpy(sTgtPath,L"LDAP://<SID="); UStrCpy(sTgtPath + UStrLen(sTgtPath),varSid.bstrVal); UStrCpy(sTgtPath + UStrLen(sTgtPath),L">"); if ( !pOptions->nochange ) hr = pTarget->Add(sTgtPath); else hr = S_OK; } if ( SUCCEEDED(hr) ) { err.MsgWrite(0, DCT_MSG_ADDED_TO_GROUP_S, (WCHAR*)v2.bstrVal); //remove the source account from the group, if there RemoveSourceAccountFromGroup(pTarget, pVs, pOptions); } else { hr = BetterHR(hr); if ( HRESULT_CODE(hr) == NERR_UserExists ) { err.MsgWrite(0,DCT_MSG_USER_IN_GROUP_SS,(WCHAR*)v2.bstrVal,acct->GetTargetName()); } else if ( HRESULT_CODE(hr) == NERR_UserNotFound ) { err.SysMsgWrite(0, hr, DCT_MSG_MEMBER_NONEXIST_SS, (WCHAR*)v2.bstrVal, acct->GetTargetName(), hr); } else { // message for the generic failure case err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_ADD_TO_GROUP_SSD, (WCHAR*)v2.bstrVal, acct->GetTargetName(), hr); Mark(L"warnings", acct->GetType()); } } } } else { // we have never migrated this account. So we will try to add the original account to the target domain. // This would work if the target domain and the domain where this object is satisfy the requirements of // forest membership/ trusts imposed by Universal/Local groups respectively. // Get the sid of the source account // IADs * pAds = NULL; _variant_t varSid; // check whether the target domain knows this sid // Before we try to add, make sure the target domain knows this account WCHAR name[LEN_Path]; DWORD lenName = DIM(name); cbDomain = DIM(domain); if ( grpType & 8 ) { // in case of the Universal group we need to make sure that domains are in // the same forest. We will use access checker for this BOOL bIsSame = FALSE; _bstr_t sSrcDomainDNS = GetDomainDNSFromPath(sPath); hr = pAccess->raw_IsInSameForest(pOptions->tgtDomainDns, sSrcDomainDNS, (long*)&bIsSame); if ( SUCCEEDED(hr) && bIsSame ) { // We have accounts that are in same forest so we can simply add the account. if ( !pOptions->nochange ) hr = pTarget->Add(sPath); else hr = S_OK; } else hr = HRESULT_FROM_WIN32(NERR_UserNotFound); if ( SUCCEEDED(hr) ) { WCHAR sWholeName[LEN_Path]; wcscpy(sWholeName, sSrcDomainDNS); wcscat(sWholeName, L"\\"); wcscat(sWholeName, sSam); err.MsgWrite(0, DCT_MSG_ADDED_TO_GROUP_S, sWholeName); } else { hr = BetterHR(hr); err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_ADD_TO_GROUP_SSD, (WCHAR*) sSam, acct->GetTargetName(), hr); Mark(L"warnings", acct->GetType()); } } else { if ( !pOptions->nochange ) hr = pTarget->Add(sPath); else hr = S_OK; // In case of local groups If we know the SID in the target domain then we can simply // add that account to the target group if ( LookupAccountSid(pOptions->tgtComp,pSid,name,&lenName,domain,&cbDomain,&use) ) { WCHAR sWholeName[LEN_Path]; wcscpy(sWholeName, domain); wcscat(sWholeName, L"\\"); wcscat(sWholeName, sSam); err.MsgWrite(0, DCT_MSG_ADDED_TO_GROUP_S, sWholeName); } else { // log the fact that the SID could not be resolved in the target domain // this will happen when the target domain does not trust the source domain WCHAR sWholeName[LEN_Path]; wcscpy(sWholeName, sDomain); wcscat(sWholeName, L"\\"); wcscat(sWholeName, sSam); err.MsgWrite(0, DCT_MSG_CANNOT_RESOLVE_SID_IN_TARGET_SS, sWholeName, acct->GetTargetName(), HRESULT_FROM_WIN32(GetLastError())); } } } } // if group type } // if not migrated to the target domain. } // if can get to the member. VariantClear(&var); } //while if ( pMem ) pMem->Release(); if ( pGroup ) pGroup->Release(); if ( pVar ) pVar->Release(); if ( pTarget ) pTarget->Release(); } if( pSid ) delete pSid; } if ( pUnk ) pUnk->Release(); return hr; } HRESULT CAcctRepl::LookupAccountInTarget(Options * pOptions, WCHAR * sSam, WCHAR * sPath) { if ( pOptions->tgtDomainVer < 5 ) { // for NT4 we can just build the path and send it back. wsprintf(sPath, L"WinNT://%s/%s", pOptions->tgtDomain, sSam); return S_OK; } // Use the net object enumerator to lookup the account in the target domain. INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); IEnumVARIANT * pEnum = NULL; SAFEARRAYBOUND bd = { 1, 0 }; SAFEARRAY * pszColNames; BSTR HUGEP * pData = NULL; LPWSTR sData[] = { L"aDSPath" }; WCHAR sQuery[LEN_Path]; WCHAR sDomPath[LEN_Path]; DWORD ret = 0; _variant_t var, varVal; HRESULT hr = S_OK; wsprintf(sDomPath, L"LDAP://%s/%s", pOptions->tgtDomainDns, pOptions->tgtNamingContext); WCHAR sTempSamName[LEN_Path]; wcscpy(sTempSamName, sSam); if ( sTempSamName[0] == L' ' ) { WCHAR sTemp[LEN_Path]; wsprintf(sTemp, L"\\20%s", sTempSamName + 1); wcscpy(sTempSamName, sTemp); } wsprintf(sQuery, L"(sAMAccountName=%s)", sTempSamName); hr = pQuery->raw_SetQuery(sDomPath, pOptions->tgtDomain, sQuery, ADS_SCOPE_SUBTREE, FALSE); // Set up the columns that we want back from the query ( in this case we need SAM accountname ) pszColNames = ::SafeArrayCreate(VT_BSTR, 1, &bd); hr = ::SafeArrayAccessData(pszColNames, (void HUGEP **)&pData); if ( SUCCEEDED(hr) ) pData[0] = SysAllocString(sData[0]); if ( SUCCEEDED(hr) ) hr = ::SafeArrayUnaccessData(pszColNames); if ( SUCCEEDED(hr) ) hr = pQuery->raw_SetColumns(pszColNames); // Time to execute the plan. if ( SUCCEEDED(hr) ) hr = pQuery->raw_Execute(&pEnum); if ( SUCCEEDED(hr) ) { // if this worked that means we can only have one thing in the result. if ( (pEnum->Next(1, &var, &ret) == S_OK) && ( ret > 0 ) ) { SAFEARRAY * pArray = var.parray; long ndx = 0; hr = SafeArrayGetElement(pArray,&ndx,&varVal); if ( SUCCEEDED(hr) ) wcscpy(sPath, (WCHAR*)varVal.bstrVal); else hr = HRESULT_FROM_WIN32(NERR_UserNotFound); } else hr = HRESULT_FROM_WIN32(NERR_UserNotFound); VariantInit(&var); } if ( pEnum ) pEnum->Release(); return hr; } //---------------------------------------------------------------------------- // RemoveMembers : This function enumerates through all the members of the // given group and removes them one at a time. //---------------------------------------------------------------------------- HRESULT CAcctRepl::RemoveMembers( TAcctReplNode * pAcct, //in- AccountReplicator Node with the Account info Options * pOptions //in- Options set by the user. ) { IADsMembers * pMem = NULL; IADs * pAds = NULL; IADsGroup * pGrp = NULL; // IUnknown * pUnk; IEnumVARIANT * pVar = NULL; IDispatch * pDisp = NULL; DWORD ret = 0; _variant_t var; WCHAR * sPath; // First we make sure that this is really a group otherwise we ignore it. if (_wcsicmp((WCHAR*)pAcct->GetType(),L"group")) return S_OK; // Lets get a IADsGroup * to the group object. HRESULT hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetTargetPath()), IID_IADsGroup, (void **) &pGrp); // Now we get the members interface. if ( SUCCEEDED(hr) ) hr = pGrp->Members(&pMem); // Ask for an enumeration of the members if ( SUCCEEDED(hr) ) hr = pMem->get__NewEnum((IUnknown **)&pVar); // Now enumerate through all the objects in the Group and for each one remove it from the group while ( SUCCEEDED(pVar->Next(1, &var, &ret)) ) { // If no values are returned that means we are done with all members so break out of this loop if ( ret == 0 ) break; // We hace a dispatch pointer in the VARIANT so we will get the IADs pointer to it and // then get the ADs path to that object and then remove it from the group pDisp = V_DISPATCH(&var); hr = pDisp->QueryInterface(IID_IADs, (void**) &pAds); if ( SUCCEEDED(hr) ) hr = pAds->get_ADsPath(&sPath); if ( pAds ) pAds->Release(); if ( SUCCEEDED(hr) ) { _bstr_t bstrPath(sPath); if ( !pOptions->nochange ) hr = pGrp->Remove(bstrPath); } VariantClear(&var); } if ( pMem ) pMem->Release(); if ( pGrp ) pGrp->Release(); if ( pVar ) pVar->Release(); return hr; } //---------------------------------------------------------------------------- // FillPathInfo : This function looks up the ADs path from the source domain // for a given SAMAccountName //---------------------------------------------------------------------------- bool CAcctRepl::FillPathInfo( TAcctReplNode * pAcct, //in- AccountReplicator Node with the Account info Options * pOptions //in- Options set by the user. ) { WCHAR sPath[LEN_Path]; _bstr_t sTgtPath; WCHAR sQuery[LEN_Path]; // WCHAR sPrefix[LEN_Path]; // WCHAR sTgtName[LEN_Path]; WCHAR sProfPath[LEN_Path]; WCHAR sName[LEN_Path]; // Fill the naming context for the domains. If the Naming context does not work then it is not a Win2kDomain // so we need to stop right here. if ( wcslen(pOptions->srcNamingContext) == 0 ) FillNamingContext(pOptions); if ( wcslen(pOptions->srcNamingContext) == 0 ) { // this is probably an NT 4 source domain // construct the source path if ( ! *pAcct->GetSourcePath() ) { swprintf(sPath,L"WinNT://%ls/%ls",pOptions->srcDomain,pAcct->GetName()); pAcct->SetSourcePath(sPath); } return true; } WCHAR strName[LEN_Path]; wcscpy(strName, pAcct->GetName()); // Check if the Name field is a LDAP sub path or not. If we have LDAP subpath then we // call the AcctReplFullPath function to fillup the path information. if ( (wcslen(strName) > 3) && (strName[2] == (L'=')) ) { AcctReplFullPath(pAcct, pOptions); return true; } INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); HRESULT hr; LPWSTR sData[] = { L"ADsPath", L"distinguishedName", L"name", L"profilePath", L"groupType" }; long nElt = DIM(sData); BSTR HUGEP * pData; SAFEARRAY * pszColNames; IEnumVARIANT * pEnum; _variant_t var; DWORD dwFetch; // We are going to update all fields that we know about // pAcct->SetSourceSam(pAcct->GetName()); // Set the LDAP path to the whole domain and then the query to the SAMAccountname wsprintf(sPath, L"LDAP://%s/%s", pOptions->srcDomain, pOptions->srcNamingContext); WCHAR sTempSamName[LEN_Path]; wcscpy(sTempSamName, pAcct->GetSourceSam()); if ( sTempSamName[0] == L' ' ) { WCHAR sTemp[LEN_Path]; wsprintf(sTemp, L"\\20%s", sTempSamName + 1); wcscpy(sTempSamName, sTemp); } wsprintf(sQuery, L"(sAMAccountName=%s)", sTempSamName); // Set the enumerator query hr = pQuery->raw_SetQuery(sPath, pOptions->srcDomain, sQuery, ADS_SCOPE_SUBTREE, FALSE); if (SUCCEEDED(hr)) { // Create a safearray of columns we need from the enumerator. SAFEARRAYBOUND bd = { nElt, 0 }; pszColNames = ::SafeArrayCreate(VT_BSTR, 1, &bd); HRESULT hr = ::SafeArrayAccessData(pszColNames, (void HUGEP **)&pData); if ( SUCCEEDED(hr) ) { for( long i = 0; i < nElt; i++) { pData[i] = SysAllocString(sData[i]); } hr = ::SafeArrayUnaccessData(pszColNames); } if (SUCCEEDED(hr)) { // Set the columns on the enumerator object. hr = pQuery->raw_SetColumns(pszColNames); } } if (SUCCEEDED(hr)) { // Now execute. hr = pQuery->raw_Execute(&pEnum); } if (SUCCEEDED(hr)) { // We should have recieved only one value. So we will get the value and set it into the Node. hr = pEnum->Next(1, &var, &dwFetch); } if ( SUCCEEDED(hr) && ( var.vt & VT_ARRAY) ) { // This would only happen if the member existed in the target domain. // We now have a Variant containing an array of variants so we access the data _variant_t * pVar; pszColNames = V_ARRAY(&var); SafeArrayAccessData(pszColNames, (void HUGEP **)&pVar); // Get the AdsPath first sTgtPath = pVar[0].bstrVal; if (sTgtPath.length() > 0) { // Set the source Path in the Account node pAcct->SetSourcePath(sTgtPath); // Then we get the distinguishedName to get the prefix string sTgtPath = V_BSTR(&pVar[1]); // We also get the name value to set the target name wcscpy(sName, (WCHAR*) V_BSTR(&pVar[2])); // We also get the profile path so we can translate it wcscpy(sProfPath, (WCHAR*) V_BSTR(&pVar[3])); pAcct->SetTargetProfile(sProfPath); if ( pVar[4].vt == VT_I4 ) { // We have the object type property so lets set it. pAcct->SetGroupType(pVar[4].lVal); } SafeArrayUnaccessData(pszColNames); pEnum->Release(); VariantInit(&var); return true; } else { //There is no account with this SAM name in this domain err.SysMsgWrite(ErrE, 2, DCT_MSG_PATH_NOT_FOUND_SS, pAcct->GetName(), pOptions->tgtDomain); Mark(L"errors", pAcct->GetType()); SafeArrayUnaccessData(pszColNames); } } if (SUCCEEDED(hr)) pEnum->Release(); return false; } //-------------------------------------------------------------------------- // AcctReplFullPath : Fills up Account node when the account information // coming in is a LDAP sub path. //-------------------------------------------------------------------------- bool CAcctRepl::AcctReplFullPath( TAcctReplNode * pAcct, //in- AccountReplicator Node with the Account info Options * pOptions //in- Options set by the user. ) { WCHAR sName[LEN_Path]; WCHAR sPath[LEN_Path]; IADs * pAds; _variant_t var; // Build a full path and save it to the Account node wsprintf(sPath, L"LDAP://%s/%s,%s", pOptions->srcDomain, pAcct->GetName(), pOptions->srcNamingContext); pAcct->SetSourcePath(sPath); // Do the same for Target account. wcscpy(sName, pAcct->GetTargetName()); if ( !wcslen(sName) ) { // Since Target name not specified we will go ahead and use the source name as the target name, wcscpy(sName, pAcct->GetName()); pAcct->SetTargetName(sName); } // Build a full path from the sub path /* wsprintf(sPath, L"LDAP://%s/%s,%s", pOptions->tgtDomain, sName, pOptions->tgtNamingContext); pAcct->SetTargetPath(sPath); */ // Lets try and get the SAM name for the source account HRESULT hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADs, (void**) &pAds); if ( FAILED(hr)) return false; hr = pAds->Get(L"sAMAccountName", &var); pAds->Release(); if ( SUCCEEDED(hr) ) pAcct->SetSourceSam((WCHAR*)var.bstrVal); // SAM account name for the target account // Since we are here we have a LDAP sub path. So we can copy string from 3rd character to end of line or // till the first ',' wcscpy(sName, pAcct->GetTargetName()); WCHAR * p = wcschr(sName, L','); int ndx = wcslen(sName); if ( p ) { // There is a , So we can find how many characters that is by subtracting two pointers ndx = (int)(p - sName); } ndx -= 3; // We are going to ignore the first three characters // Copy from third character on to the , or End of line this is going to be the SAM name for target wcsncpy(sPath, sName + 3, ndx); sPath[ndx] = 0; // Truncate it. pAcct->SetTargetSam(sPath); return true; } //-------------------------------------------------------------------------- // NeedToProcessAccount : This function tells us if the user has set the // options to copy certain types of accounts. //-------------------------------------------------------------------------- BOOL CAcctRepl::NeedToProcessAccount( TAcctReplNode * pAcct, //in- AccountReplicator Node with the Account info Options * pOptions //in- Options set by the user. ) { if (_wcsicmp(pAcct->GetType(), L"user") == 0) return (pOptions->flags & F_USERS); else if ( _wcsicmp(pAcct->GetType(), L"group") == 0) return ((pOptions->flags & F_GROUP) || (pOptions->flags & F_LGROUP)); else if ( _wcsicmp(pAcct->GetType(), L"computer") == 0) return pOptions->flags & F_COMPUTERS; else if ( _wcsicmp(pAcct->GetType(), L"organizationalUnit") == 0) return pOptions->flags & F_OUS; else { err.MsgWrite(0,DCT_MSG_SKIPPING_OBJECT_TYPE_SS,pAcct->GetName(),pAcct->GetType()); return false; } } // Compares the DC=...,DC=com part of two ads paths to determine if the objects // are in the same domain. BOOL CompareDCPath(WCHAR const * sPath, WCHAR const * sPath2) { WCHAR * p1 = NULL, * p2 = NULL; p1 = wcsstr(sPath, L"DC="); p2 = wcsstr(sPath2, L"DC="); if ( p1 && p2 ) return !_wcsicmp(p1, p2); else return FALSE; } _bstr_t PadDN(_bstr_t sDN) { _bstr_t retVal = sDN; int offset = 0; WCHAR sLine[LEN_Path]; WCHAR sOut[LEN_Path]; safecopy(sLine, (WCHAR*) sDN); for ( DWORD i = 0; i < wcslen(sLine); i++ ) { if ( sLine[i] == L'/' ) { sOut[i + offset] = L'\\'; offset++; } sOut[i + offset] = sLine[i]; } sOut[i+offset] = 0; retVal = sOut; return retVal; } //-------------------------------------------------------------------------- // ExpandContainers : Adds all the members of a container/group to the // account list recursively. //-------------------------------------------------------------------------- BOOL CAcctRepl::ExpandContainers( TNodeListSortable *acctlist, //in- Accounts being processed Options *pOptions, //in- Options specified by the user ProgressFn *progress //in- Show status ) { TAcctReplNode * pAcct; IEnumVARIANT * pEnum; HRESULT hr; _variant_t var; DWORD dwf; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); LPWSTR sCols[] = { L"member" }; LPWSTR sCols1[] = { L"ADsPath" }; int nElt = DIM(sCols); SAFEARRAY * cols; SAFEARRAY * vals; SAFEARRAY * multiVals; SAFEARRAYBOUND bd = { nElt, 0 }; BSTR HUGEP * pData = NULL; // _bstr_t * pBstr = NULL; _variant_t * pDt = NULL; _variant_t * pVar = NULL; _variant_t vx; _bstr_t sCont, sQuery; _bstr_t sPath; _bstr_t sSam; _bstr_t sType; _bstr_t sName; DWORD dwMaj, dwMin, dwSP; // IIManageDBPtr pDb(__uuidof(IManageDB)); IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk; long lgrpType; WCHAR sAcctType[LEN_Path]; WCHAR mesg[LEN_Path]; WCHAR sSourcePath[LEN_Path]; bool bExpanded = true; pVs->QueryInterface(IID_IUnknown, (void **) &pUnk); MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); // Change from a tree to a sorted list if ( acctlist->IsTree() ) acctlist->ToSorted(); // Check the domain type for the source domain. hr = pAccess->raw_GetOsVersion(pOptions->srcComp, &dwMaj, &dwMin, &dwSP); if (FAILED(hr)) return FALSE; if ( dwMaj < 5 ) { while ( bExpanded ) { bExpanded = false; pAcct = (TAcctReplNode *)acctlist->Head(); while (pAcct) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // If we have already expanded the account then we dont need to process it again. if ( pAcct->bExpanded ) { pAcct = (TAcctReplNode *) pAcct->Next(); continue; } //Set the flag to say that we expanded something. bExpanded = true; pAcct->bExpanded = true; if ( UStrICmp(pAcct->GetType(), L"group") || UStrICmp(pAcct->GetType(), L"lgroup") ) { // Build the column array cols = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(cols, (void HUGEP **) &pData); for ( int i = 0; i < nElt; i++) pData[i] = SysAllocString(sCols1[i]); SafeArrayUnaccessData(cols); // Build the NT4 recognizable container name sCont = _bstr_t(pAcct->GetName()) + L",CN=GROUPS"; sQuery = L""; // ignored. // Query the information hr = pQuery->raw_SetQuery(sCont, pOptions->srcDomain, sQuery, ADS_SCOPE_SUBTREE, TRUE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(cols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; while (pEnum->Next(1, &var, &dwf) == S_OK) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } vals = var.parray; // Get the first column which is the name of the object. SafeArrayAccessData(vals, (void HUGEP**) &pDt); sPath = pDt[0]; SafeArrayUnaccessData(vals); // Enumerator returns empty strings which we need to ignore. if ( sPath.length() > 0 ) { // Look if we have migrated the group if ( pOptions->flags & F_COPY_MIGRATED_ACCT ) // We want to copy it again even if it was already copied. hr = S_FALSE; else hr = pOptions->pDb->raw_GetAMigratedObject(sPath, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr != S_OK ) { if ( !IsBuiltinAccount(pOptions, (WCHAR*)sPath) ) { // We don't care about the objects that we have migrated because they will be picked up automatically // Find the type of this account. if ( GetNt4Type(pOptions->srcComp, (WCHAR*) sPath, sAcctType) ) { // Expand the containers and the membership wsprintf(mesg, GET_STRING(IDS_EXPANDING_ADDING_SS) , pAcct->GetName(), (WCHAR*) sPath); Progress(mesg); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName((WCHAR*)sPath); pNode->SetTargetName((WCHAR*)sPath); pNode->SetSourceSam((WCHAR*)sPath); WCHAR tgtName[LEN_Path]; wcscpy(tgtName, (WCHAR*) sPath); TruncateSam(tgtName, pNode, pOptions, acctlist); pNode->SetTargetSam(tgtName); pNode->SetType(sAcctType); if ( !UStrICmp(sAcctType,L"group") ) { // in NT4, only global groups can be members of other groups pNode->SetGroupType(2); } //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); // build a source WinNT path wsprintf(sSourcePath, L"WinNT://%s/%s", pOptions->srcDomain, (WCHAR*)sPath); pNode->SetSourcePath(sSourcePath); if (! acctlist->InsertIfNew(pNode) ) delete pNode; } else { wsprintf(mesg,GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sPath); Progress(mesg); } } else { err.MsgWrite(ErrW, DCT_MSG_IGNORING_BUILTIN_S, (WCHAR*)sPath); Mark("warnings", pAcct->GetType()); } } else { wsprintf(mesg, GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sPath); Progress(mesg); } } } pEnum->Release(); VariantInit(&var); } pAcct = (TAcctReplNode *) pAcct->Next(); } } pUnk->Release(); return TRUE; } // If we are here that means that we are dealing with Win2k while ( bExpanded ) { bExpanded = false; // Go through the list of accounts and expand them one at a time pAcct = (TAcctReplNode *)acctlist->Head(); while (pAcct) { // If we have already expanded the account then we dont need to process it again. if ( pAcct->bExpanded ) { pAcct = (TAcctReplNode *) pAcct->Next(); continue; } //Set the flag to say that we expanded something. bExpanded = true; pAcct->bExpanded = true; if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } DWORD scope = 0; sCont = pAcct->GetSourcePath(); sQuery = L"(objectClass=*)"; if ( wcslen(pAcct->GetSourceSam()) == 0 ) { scope = ADS_SCOPE_SUBTREE; // Build the column array cols = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(cols, (void HUGEP **) &pData); for ( int i = 0; i < nElt; i++) pData[i] = SysAllocString(sCols1[i]); SafeArrayUnaccessData(cols); } else { scope = ADS_SCOPE_BASE; // Build the column array cols = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(cols, (void HUGEP **) &pData); for ( int i = 0; i < nElt; i++) pData[i] = SysAllocString(sCols[i]); SafeArrayUnaccessData(cols); } hr = pQuery->raw_SetQuery(sCont, pOptions->srcDomain, sQuery, scope, TRUE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(cols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; while (pEnum->Next(1, &var, &dwf) == S_OK) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } vals = var.parray; // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); vx = pDt[0]; SafeArrayUnaccessData(vals); if ( vx.vt == VT_BSTR ) { // We got back a BSTR which could be the value that we are looking for sPath = V_BSTR(&vx); // Enumerator returns empty strings which we need to ignore. if ( sPath.length() > 0 ) { if ( GetSamFromPath(sPath, sSam, sType, sName,lgrpType, pOptions) && CompareDCPath((WCHAR*)sPath, pAcct->GetSourcePath())) { if ( pOptions->flags & F_COPY_MIGRATED_ACCT ) hr = S_FALSE; else hr = pOptions->pDb->raw_GetAMigratedObject(sSam, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr != S_OK ) { // We don't care about the objects that we have migrated because they will be picked up automatically if ( _wcsicmp((WCHAR*) sType, L"computer") != 0 ) { TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetSourceSam((WCHAR*)sSam); pNode->SetTargetSam((WCHAR*)sSam); pNode->SetName((WCHAR*)sName); pNode->SetTargetName((WCHAR*)sName); pNode->SetType((WCHAR*)sType); pNode->SetSourcePath((WCHAR*)sPath); pNode->SetGroupType(lgrpType); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); if ( ! acctlist->InsertIfNew(pNode) ) delete pNode; wsprintf(mesg, GET_STRING(IDS_EXPANDING_ADDING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } else { wsprintf(mesg, GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } } else { wsprintf(mesg, GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } } } // continue; } // if (! ( vx.vt & VT_ARRAY ) ) // continue; if ( vx.vt & VT_ARRAY ) // We must have got an Array of multivalued properties multiVals = vx.parray; else { // We need to also process the accounts that have this group as its primary group. SAFEARRAYBOUND bd = { 0, 0 }; multiVals = SafeArrayCreate(VT_VARIANT, 1, &bd); } AddPrimaryGroupMembers(pOptions, multiVals, const_cast<WCHAR*>(pAcct->GetTargetSam())); // Access the BSTR elements of this variant array SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } _bstr_t sDN = _bstr_t(pVar[dw]); sDN = PadDN(sDN); sPath = _bstr_t(L"LDAP://") + _bstr_t(pOptions->srcDomain) + _bstr_t(L"/") + sDN; if ( GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions) && CompareDCPath((WCHAR*)sPath, pAcct->GetSourcePath())) { if ( pOptions->flags & F_COPY_MIGRATED_ACCT ) hr = S_FALSE; else hr = pOptions->pDb->raw_GetAMigratedObject(sSam, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr != S_OK ) { // We don't care about the objects that we have migrated because they will be picked up automatically if ( _wcsicmp((WCHAR*) sType, L"computer") != 0 ) { TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetSourceSam((WCHAR*)sSam); pNode->SetTargetSam((WCHAR*)sSam); pNode->SetName((WCHAR*)sName); pNode->SetTargetName((WCHAR*)sName); pNode->SetType((WCHAR*)sType); pNode->SetSourcePath((WCHAR*)sPath); pNode->SetGroupType(lgrpType); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); if (! acctlist->InsertIfNew(pNode) ) delete pNode; wsprintf(mesg, GET_STRING(IDS_EXPANDING_ADDING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } else { wsprintf(mesg, GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } } else { wsprintf(mesg, GET_STRING(IDS_EXPANDING_IGNORING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); } } } SafeArrayUnaccessData(multiVals); } pEnum->Release(); VariantInit(&var); pAcct = (TAcctReplNode*)pAcct->Next(); } } pUnk->Release(); return TRUE; } //-------------------------------------------------------------------------- // IsContainer : Checks if the account in question is a container type // if it is then it returns a IADsContainer * to it. //-------------------------------------------------------------------------- BOOL CAcctRepl::IsContainer(TAcctReplNode *pNode, IADsContainer **ppCont) { HRESULT hr; hr = ADsGetObject(const_cast<WCHAR*>(pNode->GetSourcePath()), IID_IADsContainer, (void**)ppCont); return SUCCEEDED(hr); } BOOL CAcctRepl::GetSamFromPath(_bstr_t sPath, _bstr_t &sSam, _bstr_t &sType, _bstr_t &sName, long& grpType, Options * pOptions) { HRESULT hr; IADs * pAds = NULL; _variant_t var; BSTR sClass; BOOL bIsCritical = FALSE; BOOL rc = TRUE; sSam = L""; // Get the object so we can ask the questions from it. hr = ADsGetObject((WCHAR*)sPath, IID_IADs, (void**)&pAds); if ( FAILED(hr) ) return FALSE; if ( SUCCEEDED(hr)) { hr = pAds->Get(L"isCriticalSystemObject", &var); if ( SUCCEEDED(hr) ) { // This will only succeed for the Win2k objects. bIsCritical = V_BOOL(&var) == -1 ? TRUE : FALSE; } else { // This must be a NT4 account. We need to get the SID and check if // it's RID belongs to the BUILTIN rids. hr = pAds->Get(L"objectSID", &var); if ( SUCCEEDED(hr) ) { SAFEARRAY * pArray = V_ARRAY(&var); PSID pSid; hr = SafeArrayAccessData(pArray, (void**)&pSid); if ( SUCCEEDED(hr) ) { DWORD * dwCnt = (DWORD *) GetSidSubAuthorityCount(pSid); DWORD * rid = (DWORD *) GetSidSubAuthority(pSid, (*dwCnt)-1); bIsCritical = BuiltinRid(*rid); if ( bIsCritical ) { BSTR sName; hr = pAds->get_Name(&sName); bIsCritical = CheckBuiltInWithNTApi(pSid, (WCHAR*)sName, pOptions); } hr = SafeArrayUnaccessData(pArray); } } } } // Get the class from the object. If it is a container/ou class then it will not have a SAM name so put the CN= or OU= into the list hr = pAds->get_Class(&sClass); if ( FAILED(hr) ) rc = FALSE; if ( rc ) { sType = _bstr_t(sClass); if (UStrICmp((WCHAR*) sType, L"organizationalUnit") == 0) { hr = pAds->get_Name(&sClass); sName = _bstr_t(L"OU=") + _bstr_t(sClass); sSam = L""; if ( FAILED(hr) ) rc = FALSE; } else if (UStrICmp((WCHAR*) sType, L"container") == 0) { hr = pAds->get_Name(&sClass); sName = _bstr_t(L"CN=") + _bstr_t(sClass); sSam = L""; if ( FAILED(hr) ) rc = FALSE; } else { hr = pAds->get_Name(&sClass); sName = _bstr_t(sClass); //if the name includes a '/', then we have to get the escaped version from the path //due to a bug in W2K. if (wcschr((WCHAR*)sName, L'/')) { _bstr_t sCNName = GetCNFromPath(sPath); if (sCNName.length() != 0) sName = sCNName; } hr = pAds->Get(L"sAMAccountName", &var); if ( FAILED(hr)) rc = FALSE; sSam = var; if ( UStrICmp((WCHAR*) sType, L"group") == 0) { // we need to get and set the group type pAds->Get(L"groupType", &var); if ( SUCCEEDED(hr)) grpType = V_INT(&var); } } if ( bIsCritical ) { // Builtin account so we are going to ignore this account. //Don't log this message in IntraForest because we do mess with it // Also if it is a Domain Users group we add the migrated objects to it by default. if ( !pOptions->bSameForest && _wcsicmp((WCHAR*) sSam, pOptions->sDomUsers)) { err.MsgWrite(ErrW, DCT_MSG_IGNORING_BUILTIN_S, (WCHAR*)sPath); Mark(L"warnings", (WCHAR*) sType); } rc = FALSE; } } if (pAds) pAds->Release(); return rc; } //----------------------------------------------------------------------------- // ExpandMembership : This method expands the account list to encorporate the // groups that contain the members in the account list. //----------------------------------------------------------------------------- BOOL CAcctRepl::ExpandMembership( TNodeListSortable *acctlist, //in- Accounts being processed Options *pOptions, //in- Options specified by the user TNodeListSortable *pNewAccts, //out-The newly Added accounts. ProgressFn *progress, //in- Show status BOOL bGrpsOnly //in- Expand for groups only ) { TAcctReplNode * pAcct; HRESULT hr = S_OK; _variant_t var; WCHAR sGrpPath[LEN_Path]; MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); DWORD dwMaj, dwMin, dwSP; IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; PSID pSid = NULL; SID_NAME_USE use; DWORD dwNameLen = LEN_Path; DWORD dwDomName = LEN_Path; WCHAR sDomUsers[LEN_Path], sDomain[LEN_Path]; BOOL rc = FALSE; long lgrpType; WCHAR mesg[LEN_Path]; pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); // Change from a tree to a sorted list if ( acctlist->IsTree() ) acctlist->ToSorted(); // Get the Domain Users group name pSid = GetWellKnownSid(DOMAIN_USERS, pOptions,FALSE); if ( pSid ) { // since we have the well known SID now we can get its name if ( ! LookupAccountSid(pOptions->srcComp, pSid, sDomUsers, &dwNameLen, sDomain, &dwDomName, &use) ) hr = HRESULT_FROM_WIN32(GetLastError()); else wcscpy(pOptions->sDomUsers, sDomUsers); FreeSid(pSid); } // Check the domain type for the source domain. if ( SUCCEEDED(hr) ) hr = pAccess->raw_GetOsVersion(pOptions->srcComp, &dwMaj, &dwMin, &dwSP); if ( SUCCEEDED(hr)) { if ( dwMaj < 5 ) { // NT4 objects we need to use NT API to get the groups that this account is a member of. LPGROUP_USERS_INFO_0 pBuf = NULL; DWORD dwLevel = 0; DWORD dwPrefMaxLen = 0xFFFFFFFF; DWORD dwEntriesRead = 0; DWORD dwTotalEntries = 0; NET_API_STATUS nStatus; WCHAR sGrpName[LEN_Path]; WCHAR sNewGrpName[LEN_Path]; WCHAR sType[LEN_Path]; BOOL bBuiltin; for ( pAcct = (TAcctReplNode*)acctlist->Head(); pAcct; pAcct = (TAcctReplNode*)pAcct->Next()) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //if user if (!_wcsicmp(pAcct->GetType(), L"user")) { //User object nStatus = NetUserGetGroups(pOptions->srcComp, pAcct->GetName(), 0, (LPBYTE*)&pBuf, dwPrefMaxLen, &dwEntriesRead, &dwTotalEntries ); if (nStatus == NERR_Success) { for ( DWORD i = 0; i < dwEntriesRead; i++ ) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //see if this group was not migrated due to a conflict, if so then //we need to fix up this membership bool bInclude = true; Lookup p; p.pName = sGrpName; p.pType = sType; TAcctReplNode * pFindNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pFindNode && (pFindNode->WasCreated() || pFindNode->WasReplaced()) && (bGrpsOnly)) bInclude = false; bBuiltin = IsBuiltinAccount(pOptions, pBuf[i].grui0_name); // Ignore the Domain users group. if ( (_wcsicmp(pBuf[i].grui0_name, sDomUsers) != 0) && !bBuiltin && bInclude) { wsprintf(mesg, GET_STRING(IDS_EXPANDING_GROUP_ADDING_SS), pAcct->GetName(), pBuf[i].grui0_name); Progress(mesg); // This is the global group type by default wcscpy(sType, L"group"); // Get the name of the group and add it to the list if it does not already exist in the list. wcscpy(sGrpName, pBuf[i].grui0_name); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; // Source name stays as is pNode->SetName(sGrpName); pNode->SetSourceSam(sGrpName); pNode->SetType(sType); pNode->SetGroupType(2); pNode->SetTargetName(sGrpName); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); // Look if we have migrated the group hr = pOptions->pDb->raw_GetAMigratedObject(sGrpName, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr == S_OK ) { var = pVs->get(L"MigratedObjects.SourceAdsPath"); pNode->SetSourcePath(var.bstrVal); //Get the target name and assign that to the node var = pVs->get(L"MigratedObjects.TargetSamName"); wcscpy(sNewGrpName, (WCHAR*)V_BSTR(&var)); pNode->SetTargetSam(sNewGrpName); // Get the path too var = pVs->get(L"MigratedObjects.TargetAdsPath"); wcscpy(sGrpPath, (WCHAR*)V_BSTR(&var)); pNode->SetTargetPath(sGrpPath); // Get the type too var = pVs->get(L"MigratedObjects.Type"); wcscpy(sType, (WCHAR*)V_BSTR(&var)); pNode->SetType(sType); //if they dont want to copy migrated objects, or they do but it was . if (!(pOptions->flags & F_COPY_MIGRATED_ACCT)) { pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } //else if already migrated, mark already there so that we fix group membership whether we migrate the group or not else if (bInclude) { if (pOptions->flags & F_REPLACE) pNode->operations |= OPS_Process_Members; else pNode->operations = OPS_Create_Account | OPS_Process_Members; pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNode->MarkAlreadyThere(); } if ( !pOptions->expandMemberOf ) { // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); } } else { // account has not been previously copied so we will set it up if ( pOptions->expandMemberOf ) { TruncateSam(sGrpName, pNode, pOptions, acctlist); pNode->SetTargetSam(sGrpName); FillPathInfo(pNode,pOptions); AddPrefixSuffix(pNode, pOptions); } else { delete pNode; } } if ( pOptions->expandMemberOf ) { if ( ! pNewAccts->InsertIfNew((TNode*) pNode) ) delete pNode; } } if (bBuiltin) { // BUILTIN account error message err.MsgWrite(ErrW, DCT_MSG_IGNORING_BUILTIN_S, pBuf[i].grui0_name); Mark(L"warnings", pAcct->GetType()); } }//end for each group }//if got groups if (pBuf != NULL) NetApiBufferFree(pBuf); // Process local groups pBuf = NULL; dwLevel = 0; dwPrefMaxLen = 0xFFFFFFFF; dwEntriesRead = 0; dwTotalEntries = 0; DWORD dwFlags = 0 ; nStatus = NetUserGetLocalGroups(pOptions->srcComp, pAcct->GetName(), 0, dwFlags, (LPBYTE*)&pBuf, dwPrefMaxLen, &dwEntriesRead, &dwTotalEntries ); if (nStatus == NERR_Success) { for ( DWORD i = 0; i < dwEntriesRead; i++ ) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //see if this group was not migrated due to a conflict, if so then //we need to fix up this membership bool bInclude = true; Lookup p; p.pName = sGrpName; p.pType = sType; TAcctReplNode * pFindNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pFindNode && (pFindNode->WasCreated() || pFindNode->WasReplaced()) && (bGrpsOnly)) bInclude = false; if (!IsBuiltinAccount(pOptions, pBuf[i].grui0_name)) { wcscpy(sType, L"group"); // Get the name of the group and add it to the list if it does not already exist in the list. wcscpy(sGrpName, pBuf[i].grui0_name); wsprintf(mesg, GET_STRING(IDS_EXPANDING_GROUP_ADDING_SS), pAcct->GetName(), (WCHAR*) sGrpName); Progress(mesg); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName(sGrpName); pNode->SetSourceSam(sGrpName); pNode->SetType(sType); pNode->SetGroupType(4); pNode->SetTargetName(sGrpName); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); // Look if we have migrated the group hr = pOptions->pDb->raw_GetAMigratedObject(sGrpName, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr == S_OK ) { var = pVs->get(L"MigratedObjects.SourceAdsPath"); pNode->SetSourcePath(var.bstrVal); //Get the target name and assign that to the node var = pVs->get(L"MigratedObjects.TargetSamName"); wcscpy(sNewGrpName, (WCHAR*)V_BSTR(&var)); // Get the path too var = pVs->get(L"MigratedObjects.TargetAdsPath"); wcscpy(sGrpPath, (WCHAR*)V_BSTR(&var)); pNode->SetTargetPath(sGrpPath); // Get the type too var = pVs->get(L"MigratedObjects.Type"); wcscpy(sType, (WCHAR*)V_BSTR(&var)); //if they dont want to copy migrated objects, or they do but it was . if (!(pOptions->flags & F_COPY_MIGRATED_ACCT)) { pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } //else if already migrated, mark already there so that we fix group membership whether we migrate the group or not else if (bInclude) { if (pOptions->flags & F_REPLACE) pNode->operations |= OPS_Process_Members; else pNode->operations = OPS_Create_Account | OPS_Process_Members; pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNode->MarkAlreadyThere(); } pNode->SetType(sType); pNode->SetGroupType(4); pNode->SetTargetName(sGrpName); pNode->SetTargetSam(sNewGrpName); if ( !pOptions->expandMemberOf ) { // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); } }//if migrated else { // account has not been previously copied so we will set it up if ( pOptions->expandMemberOf ) { TruncateSam(sGrpName, pNode, pOptions, acctlist); pNode->SetTargetSam(sGrpName); FillPathInfo(pNode,pOptions); AddPrefixSuffix(pNode, pOptions); } else { delete pNode; } } if ( pOptions->expandMemberOf ) { if ( ! pNewAccts->InsertIfNew((TNode*) pNode) ) { delete pNode; } } }//end if not built-in else { // BUILTIN account error message err.MsgWrite(ErrW, DCT_MSG_IGNORING_BUILTIN_S, pBuf[i].grui0_name); Mark(L"warnings", pAcct->GetType()); } }//for each local group }//if any local groups if (pBuf != NULL) NetApiBufferFree(pBuf); }//end if user and should expand //if group, expand membership of previously migrated groups if (!_wcsicmp(pAcct->GetType(), L"group")) { long numGroups = 0, ndx = 0; //fill a varset with all migrated groups hr = pOptions->pDb->raw_GetMigratedObjectByType(-1, _bstr_t(L""), _bstr_t(L"group"), &pUnk); if ( SUCCEEDED(hr) ) { //get the num of objects in the varset numGroups = pVs->get(L"MigratedObjects"); //for each group, find local groups and check for account as member for (ndx = 0; ndx < numGroups; ndx++) { _bstr_t tgtAdsPath = L""; WCHAR text[MAX_PATH]; IADsGroup * pGrp = NULL; VARIANT_BOOL bIsMem = VARIANT_FALSE; _variant_t var; //check for abort if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //get this group's target ADSPath swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_TargetAdsPath)); tgtAdsPath = pVs->get(text); if (!tgtAdsPath.length()) break; //connect to the target group hr = ADsGetObject(tgtAdsPath, IID_IADsGroup, (void**)&pGrp); if (FAILED(hr)) continue; //get this group's type hr = pGrp->Get(L"groupType", &var); //if this is a local group, see if this account is a member if ((SUCCEEDED(hr)) && (var.lVal & 4)) { //get the source object's sid from the migrate objects table //(source AdsPath will not work) WCHAR strSid[MAX_PATH]; WCHAR strRid[MAX_PATH]; DWORD lenStrSid = DIM(strSid); GetTextualSid(pAcct->GetSourceSid(), strSid, &lenStrSid); _bstr_t sSrcDmSid = strSid; _ltow((long)(pAcct->GetSourceRid()), strRid, 10); _bstr_t sSrcRid = strRid; if ((!sSrcDmSid.length()) || (!sSrcRid.length())) continue; //build an LDAP path to the src object in the group _bstr_t sSrcSid = sSrcDmSid + _bstr_t(L"-") + sSrcRid; _bstr_t sSrcLDAPPath = L"LDAP://"; sSrcLDAPPath += _bstr_t(pOptions->tgtComp + 2); sSrcLDAPPath += L"/CN="; sSrcLDAPPath += sSrcSid; sSrcLDAPPath += L",CN=ForeignSecurityPrincipals,"; sSrcLDAPPath += pOptions->tgtNamingContext; //got the source LDAP path, now see if that account is in the group hr = pGrp->IsMember(sSrcLDAPPath, &bIsMem); //if it is a member, then add this groups to the list if (SUCCEEDED(hr) && bIsMem) { _bstr_t sTemp; //create a new node to add to the list swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_SourceSamName)); sTemp = pVs->get(text); wsprintf(mesg, GET_STRING(IDS_EXPANDING_GROUP_ADDING_SS), pAcct->GetName(), (WCHAR*)sTemp); Progress(mesg); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName(sTemp); pNode->SetSourceSam(sTemp); pNode->SetTargetName(sTemp); pNode->SetGroupType(4); pNode->SetTargetPath(tgtAdsPath); swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_TargetSamName)); sTemp = pVs->get(text); pNode->SetTargetSam(sTemp); swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_SourceDomainSid)); sTemp = pVs->get(text); pNode->SetSourceSid(SidFromString((WCHAR*)sTemp)); swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_SourceAdsPath)); sTemp = pVs->get(text); pNode->SetSourcePath(sTemp); swprintf(text,L"MigratedObjects.%ld.%s",ndx,GET_STRING(DB_Type)); sTemp = pVs->get(text); pNode->SetType(sTemp); if ( !(pOptions->flags & F_COPY_MIGRATED_ACCT)) { // Since the account already exists we can tell it just to update group memberships pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); }//end if local group has as member }//end if local group if (pGrp) pGrp->Release(); }//end for each group }//end if got migrated groups }//end if group }//for each account in the list }//end if NT 4.0 objects else { // Win2k objects so we need to go to active directory and query the memberOf field of each of these objects and update the // list. IEnumVARIANT * pEnum; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); LPWSTR sCols[] = { L"memberOf" }; int nCols = DIM(sCols); SAFEARRAY * psaCols; SAFEARRAYBOUND bd = { nCols, 0 }; BSTR HUGEP * pData; WCHAR sQuery[LEN_Path]; _variant_t HUGEP * pDt, * pVar; _variant_t vx; _variant_t varMain; DWORD dwf = 0; for ( pAcct = (TAcctReplNode*)acctlist->Head(); pAcct; pAcct = (TAcctReplNode*)pAcct->Next()) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // Get the Accounts Primary group. This is not in the memberOf property for some reason.(Per Richard Ault in Firstwave NewsGroup) IADs * pAds; _variant_t varRid; _bstr_t sPath; _bstr_t sSam; _bstr_t sType; _bstr_t sName; hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADs, (void**)&pAds); if ( SUCCEEDED(hr)) { hr = pAds->Get(L"primaryGroupID", &varRid); pAds->Release(); } if ( SUCCEEDED(hr) ) { WCHAR sAcctName[LEN_Path]; WCHAR sDomain[LEN_Path]; DWORD cbName = LEN_Path; DWORD cbDomain = LEN_Path; SID_NAME_USE sidUse; // Get the SID from the RID PSID sid = GetWellKnownSid(varRid.lVal, pOptions); // Lookup the sAMAccountNAme from the SID if ( LookupAccountSid(pOptions->srcComp, sid, sAcctName, &cbName, sDomain, &cbDomain, &sidUse) ) { //see if this group was not migrated due to a conflict, if so then //we need to fix up this membership bool bInclude = true; Lookup p; p.pName = (WCHAR*)sSam; p.pType = (WCHAR*)sType; TAcctReplNode * pFindNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pFindNode && (pFindNode->WasCreated() || pFindNode->WasReplaced()) && (bGrpsOnly)) bInclude = false; // We have the SAM Account name for the Primary group so lets Fill the node and add it to the list. // Ignore in case of the Domain Users group. if ( varRid.lVal != DOMAIN_GROUP_RID_USERS) { TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName((WCHAR*)sAcctName); pNode->SetTargetName((WCHAR*) sAcctName); pNode->SetSourceSam((WCHAR*) sAcctName); pNode->SetTargetSam((WCHAR*) sAcctName); pNode->SetType(L"group"); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); FillPathInfo(pNode, pOptions); // See if the object is migrated hr = pOptions->pDb->raw_GetAMigratedObject((WCHAR*)sAcctName, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr == S_OK ) { if ((!(pOptions->expandMemberOf) || ((pOptions->expandMemberOf) && ((!(pOptions->flags & F_COPY_MIGRATED_ACCT)) || (bInclude)))) || (!_wcsicmp(pAcct->GetType(), L"group"))) { // Get the target name var = pVs->get(L"MigratedObjects.TargetSamName"); sSam = V_BSTR(&var); pNode->SetTargetSam((WCHAR*) sSam); // Also Get the Ads path var = pVs->get(L"MigratedObjects.TargetAdsPath"); sPath = V_BSTR(&var); pNode->SetTargetPath((WCHAR*)sPath); // Since the account is already copied we only want it to update its Group memberships if (!(pOptions->flags & F_COPY_MIGRATED_ACCT)) { pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } else if (bInclude)//else if already migrated, mark already there so that we fix group membership whether we migrate the group or not { if (pOptions->flags & F_REPLACE) pNode->operations |= OPS_Process_Members; else pNode->operations = OPS_Create_Account | OPS_Process_Members; pNode->MarkAlreadyThere(); } if ((!pOptions->expandMemberOf) || (!_wcsicmp(pAcct->GetType(), L"group")) || (bInclude)) { // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); } } } else if ( !pOptions->expandMemberOf ) { delete pNode; } if (( pOptions->expandMemberOf ) && (_wcsicmp(pAcct->GetType(), L"group"))) { if ( ! pNewAccts->InsertIfNew(pNode) ) delete pNode; } } } if ( sid ) FreeSid(sid); } // Build query stuff if (!_wcsicmp(pAcct->GetType(), L"user")) wsprintf(sQuery, L"(&(sAMAccountName=%s)(objectCategory=Person)(objectClass=user))", pAcct->GetSourceSam()); else wsprintf(sQuery, L"(&(sAMAccountName=%s)(objectCategory=Group))", pAcct->GetSourceSam()); psaCols = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(psaCols, (void HUGEP **)&pData); for ( int i = 0; i < nCols; i++ ) pData[i] = SysAllocString(sCols[i]); SafeArrayUnaccessData(psaCols); // Tell the object to run the query and report back to us hr = pQuery->raw_SetQuery(const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions->srcDomain, sQuery, ADS_SCOPE_BASE, TRUE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(psaCols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; while (pEnum->Next(1, &varMain, &dwf) == S_OK) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } SAFEARRAY * vals = V_ARRAY(&varMain); // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); vx = pDt[0]; SafeArrayUnaccessData(vals); if ( vx.vt == VT_BSTR ) { _bstr_t sDN = _bstr_t(_bstr_t(vx)); if (wcslen((WCHAR*)sDN) == 0) continue; sDN = PadDN(sDN); sPath = _bstr_t(L"LDAP://") + _bstr_t(pOptions->srcDomainDns) + _bstr_t(L"/") + sDN; if ( GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions) && CompareDCPath((WCHAR*)sPath, pAcct->GetSourcePath())) { //see if this group was not migrated due to a conflict, if so then //we need to fix up this membership bool bInclude = true; Lookup p; p.pName = (WCHAR*)sSam; p.pType = (WCHAR*)sType; TAcctReplNode * pFindNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pFindNode && (pFindNode->WasCreated() || pFindNode->WasReplaced()) && (bGrpsOnly)) bInclude = false; // Ignore the Domain users group and group already being migrated if ((_wcsicmp(sSam, sDomUsers) != 0) && (bInclude)) { wsprintf(mesg, GET_STRING(IDS_EXPANDING_GROUP_ADDING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName((WCHAR*)sName); pNode->SetTargetName((WCHAR*) sName); pNode->SetType((WCHAR*)sType); pNode->SetSourcePath((WCHAR*)sPath); pNode->SetSourceSam((WCHAR*) sSam); pNode->SetTargetSam((WCHAR*)sSam); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); pNode->SetGroupType(lgrpType); // See if the object is migrated hr = pOptions->pDb->raw_GetAMigratedObject((WCHAR*)sSam, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr == S_OK ) { if ((!(pOptions->expandMemberOf) || ((pOptions->expandMemberOf) && ((!(pOptions->flags & F_COPY_MIGRATED_ACCT)) || (bInclude)))) || (!_wcsicmp(pAcct->GetType(), L"group"))) { // Get the target name var = pVs->get(L"MigratedObjects.TargetSamName"); sSam = V_BSTR(&var); pNode->SetTargetSam((WCHAR*) sSam); // Also Get the Ads path var = pVs->get(L"MigratedObjects.TargetAdsPath"); sPath = V_BSTR(&var); pNode->SetTargetPath((WCHAR*)sPath); // Since the account is already copied we only want it to update its Group memberships if (!(pOptions->flags & F_COPY_MIGRATED_ACCT)) { pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } else if (bInclude)//else if already migrated, mark already there so that we fix group membership whether we migrate the group or not { if (pOptions->flags & F_REPLACE) pNode->operations |= OPS_Process_Members; else pNode->operations = OPS_Create_Account | OPS_Process_Members; pNode->MarkAlreadyThere(); } if ((!pOptions->expandMemberOf) || (!_wcsicmp(pAcct->GetType(), L"group")) || (bInclude)) { // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); } } } else if ( ! pOptions->expandMemberOf ) { // if the user doesn't want to copy the member-ofs, we just add them to update their memberships delete pNode; } if (( pOptions->expandMemberOf ) && (_wcsicmp(pAcct->GetType(), L"group"))) { if (! pNewAccts->InsertIfNew(pNode) ) delete pNode; } } } } else if ( vx.vt & VT_ARRAY ) { // We must have got an Array of multivalued properties // Access the BSTR elements of this variant array SAFEARRAY * multiVals = vx.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } WCHAR sTemp[LEN_Path]; _bstr_t sDN = _bstr_t(V_BSTR(&pVar[dw])); sDN = PadDN(sDN); wsprintf(sTemp, L"LDAP://%s/%s", pOptions->srcDomainDns, (WCHAR*)sDN); sPath = sTemp; if ( GetSamFromPath(sPath, sSam, sType, sName,lgrpType, pOptions) && CompareDCPath((WCHAR*)sPath, pAcct->GetSourcePath())) { //see if this group was not migrated due to a conflict, if so then //we need to fix up this membership bool bInclude = true; Lookup p; p.pName = (WCHAR*)sSam; p.pType = (WCHAR*)sType; TAcctReplNode * pFindNode = (TAcctReplNode *) acctlist->Find(&TNodeFindAccountName, &p); if (pFindNode && (pFindNode->WasCreated() || pFindNode->WasReplaced()) && (bGrpsOnly)) bInclude = false; // Ignore the Domain users group and group already being migrated if ((_wcsicmp(sSam, sDomUsers) != 0) && (bInclude)) { wsprintf(mesg, GET_STRING(IDS_EXPANDING_GROUP_ADDING_SS), pAcct->GetName(), (WCHAR*) sSam); Progress(mesg); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return FALSE; pNode->SetName((WCHAR*)sName); pNode->SetTargetName((WCHAR*) sName); pNode->SetType((WCHAR*)sType); pNode->SetSourcePath((WCHAR*)sPath); pNode->SetSourceSam((WCHAR*) sSam); pNode->SetTargetSam((WCHAR*) sSam); //Get the source domain sid from the user pNode->SetSourceSid(pAcct->GetSourceSid()); AddPrefixSuffix(pNode, pOptions); pNode->SetGroupType(lgrpType); // See if the object is migrated hr = pOptions->pDb->raw_GetAMigratedObject((WCHAR*)sSam, pOptions->srcDomain, pOptions->tgtDomain, &pUnk); if ( hr == S_OK ) { if ((!(pOptions->expandMemberOf) || ((pOptions->expandMemberOf) && ((!(pOptions->flags & F_COPY_MIGRATED_ACCT)) || (bInclude)))) || (!_wcsicmp(pAcct->GetType(), L"group"))) { // Get the target name var = pVs->get(L"MigratedObjects.TargetSamName"); sSam = V_BSTR(&var); pNode->SetTargetSam((WCHAR*) sSam); // Also Get the Ads path var = pVs->get(L"MigratedObjects.TargetAdsPath"); sPath = V_BSTR(&var); pNode->SetTargetPath((WCHAR*)sPath); // Since the account is already copied we only want it to update its Group memberships if (!(pOptions->flags & F_COPY_MIGRATED_ACCT)) { pNode->operations = 0; pNode->operations |= OPS_Process_Members; // Since the account has already been created we should go ahead and mark it created // so that the processing of group membership can continue. pNode->MarkCreated(); } else if (bInclude)//else if already migrated, mark already there so that we fix group membership whether we migrate the group or not { if (pOptions->flags & F_REPLACE) pNode->operations |= OPS_Process_Members; else pNode->operations = OPS_Create_Account | OPS_Process_Members; pNode->MarkAlreadyThere(); } if ((!pOptions->expandMemberOf) || (!_wcsicmp(pAcct->GetType(), L"group")) || (bInclude)) { // We need to add the account to the list with the member field set so that we can add the // member to the migrated group pNode->sMemberName = pAcct->GetSourceSam(); pNode->sMemberType = pAcct->GetType(); pNewAccts->Insert((TNode *) pNode); pNode = NULL; } } } else if ( ! pOptions->expandMemberOf ) { // if the user doesn't want to copy the member-ofs, we just add them to update their memberships delete pNode; pNode = NULL; } if (pNode) { if (( pOptions->expandMemberOf ) && (_wcsicmp(pAcct->GetType(), L"group"))) { if (! pNewAccts->InsertIfNew(pNode) ) delete pNode; } else { delete pNode; } } } } } SafeArrayUnaccessData(multiVals); } } pEnum->Release(); VariantInit(&vx); VariantInit(&varMain); SafeArrayDestroy(psaCols); } } rc = TRUE; } if ( pUnk ) pUnk->Release(); return rc; } HRESULT CAcctRepl::BuildSidPath( WCHAR const * sPath, //in- path returned by the enumerator. WCHAR * sSidPath, //out-path to the LDAP://<SID=###> object WCHAR * sSam, //out-Sam name of the object WCHAR * sDomain, //out-Domain name where this object resides. Options * pOptions, //in- Options PSID * ppSid //out- pointer to the binary SID ) { HRESULT hr = S_OK; IADs * pAds = NULL; DWORD cbName = LEN_Path, cbDomain = LEN_Path; PSID sid = (PSID) new BYTE[100]; CLdapConnection c; SID_NAME_USE use; _variant_t var; if (!sid) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); // Get the object and get the objectSID hr = ADsGetObject(const_cast<WCHAR*>(sPath), IID_IADs, (void**) &pAds); if ( SUCCEEDED(hr) ) hr = pAds->Get(L"objectSid", &var); if ( SUCCEEDED(hr) ) { // Make sure the SID we got was in string format VariantSidToString(var); UStrCpy(sSidPath,L"LDAP://<SID="); UStrCpy(sSidPath + UStrLen(sSidPath),var.bstrVal); UStrCpy(sSidPath + UStrLen(sSidPath),L">"); } if (c.StringToBytes(var.bstrVal, (BYTE*)sid)) { if (!LookupAccountSid(pOptions->srcComp, sid, sSam, &cbName, sDomain, &cbDomain, &use)) hr = HRESULT_FROM_WIN32(GetLastError()); } else hr = HRESULT_FROM_WIN32(GetLastError()); if ( SUCCEEDED(hr) ) { (*ppSid) = sid; } else { delete [] sid; (*ppSid) = NULL; } return hr; } BOOL CAcctRepl::CanMoveInMixedMode(TAcctReplNode *pAcct,TNodeListSortable * acctlist, Options * pOptions) { HRESULT hr = S_OK; BOOL ret = TRUE; IADsGroup * pGroup = NULL; IADsMembers * pMembers = NULL; IEnumVARIANT * pEnum = NULL; IDispatch * pDisp = NULL; IADs * pAds = NULL; _bstr_t sSam; _variant_t vSam; BSTR sClass; IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); // in case of a global group we need to check if we have/are migrating all the members. If we // are then we can move it and if not then we need to use the parallel group theory. if ( pAcct->GetGroupType() & 2 ) { // This is a global group. What we need to do now is to see if we have/will migrate all its members. // First enumerate the members. hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADsGroup, (void**)&pGroup); if ( SUCCEEDED(hr) ) hr = pGroup->Members(&pMembers); if (SUCCEEDED(hr)) hr = pMembers->get__NewEnum((IUnknown**)&pEnum); if ( SUCCEEDED(hr) ) { _variant_t var; DWORD fetch = 0; while ( pEnum->Next(1, &var, &fetch) == S_OK ) { // Get the sAMAccount name from the object so we can do the lookups pDisp = V_DISPATCH(&var); hr = pDisp->QueryInterface(IID_IADs, (void**)&pAds); if (SUCCEEDED(hr)) hr = pAds->Get(L"sAMAccountName", &vSam); if (SUCCEEDED(hr)) hr = pAds->get_Class(&sClass); if ( SUCCEEDED(hr)) { sSam = vSam; // To see if we will migrate all its members check the account list. Lookup lup; lup.pName = (WCHAR*) sSam; lup.pType = (WCHAR*) sClass; TAcctReplNode * pNode = (TAcctReplNode*)acctlist->Find(&TNodeFindAccountName, &lup); if ( !pNode ) { // we are not copying this in this pirticular instance but we might have copied it // in previous instances so we need to check the migrated objects table. hr = pOptions->pDb->raw_GetAMigratedObject(sSam, pOptions->srcDomain, pOptions->tgtDomain, (IUnknown**) &pUnk); if ( hr != S_OK ) { // This member has never been copied and it is not in the account list this time so we need to copy this group ret = FALSE; err.MsgWrite(0,DCT_MSG_CANNOT_MOVE_GG_FROM_MIXED_MODE_SS,pAcct->GetSourceSam(),(WCHAR*)sSam); break; } } } } if ( pEnum ) pEnum->Release(); if ( pAds ) pAds->Release(); if ( pGroup ) pGroup->Release(); if ( pMembers ) pMembers->Release(); } } else // For a local group we always return false because we can not truely move a local group ret = TRUE; // Local groups can be moved, if all of their members are removed first return ret; } HRESULT CAcctRepl::CheckClosedSetGroups( Options * pOptions, // in - options for the migration TNodeListSortable * pAcctList, // in - list of accounts to migrate ProgressFn * progress, // in - progress function to display progress messages IStatusObj * pStatus // in - status object to support cancellation ) { HRESULT hr = S_OK; TNodeListEnum e; TAcctReplNode * pAcct; if ( pAcctList->IsTree() ) pAcctList->ToSorted(); for ( pAcct = (TAcctReplNode*)e.OpenFirst(pAcctList) ; pAcct ; pAcct = (TAcctReplNode*)e.Next() ) { if ( (pAcct->operations & OPS_Create_Account ) == 0 ) continue; if ( !UStrICmp(pAcct->GetType(),L"user") ) { // users, we will always move err.MsgWrite(0,DCT_MSG_USER_WILL_BE_MOVED_S,pAcct->GetName()); pAcct->operations = OPS_Move_Object | OPS_Call_Extensions; } else if (! UStrICmp(pAcct->GetType(),L"group") ) { if ( CanMoveInMixedMode(pAcct,pAcctList,pOptions) ) { pAcct->operations = OPS_Move_Object | OPS_Call_Extensions; err.MsgWrite(0,DCT_MSG_GROUP_WILL_BE_MOVED_S,pAcct->GetName()); } } else { err.MsgWrite(0,DCT_MSG_CANT_MOVE_UNKNOWN_TYPE_SS,pAcct->GetName(), pAcct->GetType()); } } e.Close(); pAcctList->SortedToTree(); return hr; } void LoadNecessaryFunctions() { HMODULE hPro = LoadLibrary(L"advapi32.dll"); if ( hPro ) ConvertStringSidToSid = (TConvertStringSidToSid)GetProcAddress(hPro, "ConvertStringSidToSidW"); else { err.SysMsgWrite(ErrE, GetLastError(), DCT_MSG_LOAD_LIBRARY_FAILED_SD, L"advapi32.dll"); Mark(L"errors", L"generic"); } } //--------------------------------------------------------------------------------------------------------- // MoveObj2k - This function moves objects within a forest. //--------------------------------------------------------------------------------------------------------- int CAcctRepl::MoveObj2K( Options * pOptions, //in -Options that we recieved from the user TNodeListSortable * acctlist, //in -AcctList of accounts to be copied. ProgressFn * progress, //in -Progress Function to display messages IStatusObj * pStatus // in -status object to support cancellation ) { MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); IObjPropBuilderPtr pClass(__uuidof(ObjPropBuilder)); TNodeListSortable pMemberOf, pMember; LoadNecessaryFunctions(); FillNamingContext(pOptions); // Make sure we are connecting to the DC that has RID Pool Allocator FSMO role. GetRidPoolAllocator(pOptions); // Since we are in the same forest we need to turn off the AddSidHistory functionality. // because it is always going to fail. pOptions->flags &= ~F_AddSidHistory; BOOL bSrcNative = false; BOOL bTgtNative = false; HRESULT hr = S_OK; _variant_t var; _bstr_t sTargetDomain = pOptions->tgtDomain; pAccess->raw_IsNativeMode(pOptions->srcDomain, (long*)&bSrcNative); pAccess->raw_IsNativeMode(pOptions->tgtDomain, (long*)&bTgtNative); IMoverPtr pMover(__uuidof(Mover)); TNodeTreeEnum e; // build the source and target DSA names WCHAR sourceDSA[LEN_Path]; WCHAR targetDSA[LEN_Path]; WCHAR sSubPath[LEN_Path]; WCHAR sAdsPath[LEN_Path]; DWORD nPathLen = LEN_Path; TAcctReplNode * pAcct = NULL; UStrCpy(sourceDSA,pOptions->srcComp); UStrCpy(sourceDSA + UStrLen(sourceDSA),L"."); UStrCpy(sourceDSA + UStrLen(sourceDSA),pOptions->srcDomainDns); UStrCpy(targetDSA,pOptions->tgtComp); UStrCpy(targetDSA + UStrLen(targetDSA),L"."); UStrCpy(targetDSA + UStrLen(targetDSA),pOptions->tgtDomainDns); err.LogClose(); // In this call the fourth parameter is the log file name. We are piggy backing this value // so that we will not have to change the interface for the IMover object. hr = pMover->raw_Connect(sourceDSA, targetDSA, pOptions->authDomain, pOptions->authUser, pOptions->authPassword, pOptions->logFile, L"", L""); err.LogOpen(pOptions->logFile, 1); if ( SUCCEEDED(hr) ) { // make sure the target OU Path is in the proper format wcscpy(sSubPath, pOptions->tgtOUPath); if ( !wcsncmp(L"LDAP://", sSubPath, 7) ) StuffComputerNameinLdapPath(sAdsPath, nPathLen, sSubPath, pOptions); else MakeFullyQualifiedAdsPath(sAdsPath, nPathLen, sSubPath, pOptions->tgtComp, pOptions->tgtNamingContext); // make sure the account list is in the proper format if (acctlist->IsTree()) acctlist->ToSorted(); acctlist->CompareSet(&TNodeCompareAccountType); // sort the account list by Source Type\Source Name if ( acctlist->IsTree() ) acctlist->ToSorted(); acctlist->CompareSet(&TNodeCompareAccountType); acctlist->SortedToScrambledTree(); acctlist->Sort(&TNodeCompareAccountType); acctlist->Balance(); pMemberOf.CompareSet(&TNodeCompareMember); pMember.CompareSet(&TNodeCompareMember); /* The account list is sorted in descending order by type, then in ascending order by object name this means that the user accounts will be moved first. Here are the steps we will perform for native mode MoveObject. 1. For each object to be copied, Remove (and record) the group memberships 2. If the object is a group, convert it to universal (to avoid having to remove any members that are not being migrated. 3. Move the object. 4. For each migrated group that was converted to a universal group, change it back to its original type, if possible. 5. Restore the group memberships for all objects. Here are the steps we will perform for mixed mode MoveObject 1. If closed set is not achieved, copy the groups, rather than moving them 2. For each object to be copied, Remove (and record) the group memberships 3. If the object is a group, remove all of its members 4. Move the object. 5. For each migrated group try to add all of its members back 6. Restore the group memberships for all objects. */ if ( ! bSrcNative ) { CheckClosedSetGroups(pOptions,acctlist,progress,pStatus); // this will copy any groups that cannot be moved from the source domain // if groups are copied in this fashion, SIDHistory cannot be used, and reACLing must be performed CopyObj2K(pOptions,acctlist,progress,pStatus); } // This is the start of the Move loop try { for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist); pAcct; pAcct = (TAcctReplNode *)e.Next() ) { if ( m_pExt ) { if ( pAcct->operations & OPS_Call_Extensions ) { m_pExt->Process(pAcct,sTargetDomain,pOptions,TRUE); } } // Do we need to abort ? if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } // in the mixed-mode case, skip any accounts that we've already copied if ( ! bSrcNative && ((pAcct->operations & OPS_Move_Object)==0 ) ) continue; if ( bSrcNative && ( (pAcct->operations & OPS_Create_Account)==0 ) ) continue; //if the UPN name conflicted, then the UPNUpdate extension set the hr to //ERROR_OBJECT_ALREADY_EXISTS. If so, set flag for "no change" mode if (pAcct->GetHr() == ERROR_OBJECT_ALREADY_EXISTS) { pAcct->bUPNConflicted = TRUE; pAcct->SetHr(S_OK); } Mark(L"processed", pAcct->GetType()); WCHAR mesg[LEN_Path] = L""; if ( progress ) progress(mesg); if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { // First, record the group type, so we can change it back later if needed IADsGroup * pGroup = NULL; VARIANT var; VariantInit(&var); // get the group type hr = ADsGetObject( const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADsGroup, (void**) &pGroup); if (SUCCEEDED(hr) ) { hr = pGroup->Get(L"groupType", &var); pGroup->Release(); } if ( SUCCEEDED(hr) ) { pAcct->SetGroupType(var.lVal); } else { pAcct->SetGroupType(0); } // make sure it is native and group is a global group if ( bSrcNative && bTgtNative ) { if ( pAcct->GetGroupType() & 2) { // We are going to convert the group type to universal groups so we can easily move them WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_CHANGE_GROUP_TYPE_S), pAcct->GetName()); Progress(mesg); // Convert global groups to universal, so we can move them without de-populating if ( ! pOptions->nochange ) { WCHAR sPath[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPath, nPathLen, const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions, FALSE); hr = pClass->raw_ChangeGroupType(sPath, 8); } else { hr = S_OK; } if (FAILED(hr)) { err.SysMsgWrite(ErrE,hr,DCT_MSG_FAILED_TO_CONVERT_GROUP_TO_UNIVERSAL_SD, pAcct->GetSourceSam(), hr); pAcct->MarkError(); Mark(L"errors", pAcct->GetType()); continue; // skip any further processing of this group. } } else if ( ! ( pAcct->GetGroupType() & 8 ) ) // don't need to depopulate universal groups { // For local groups we are going to depopulate the group and move it and then repopulate it. // In mixed mode, there are no universal groups, so we must depopulate all of the groups // before we can move them out to the new domain. We will RecordAndRemove members of all Group type // move them to the target domain and then change their type to Universal and then add all of its // members back to it. WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBER_S), pAcct->GetName()); Progress(mesg); RecordAndRemoveMember(pOptions, pAcct, &pMember); } } else { // for mixed mode source domain, we must depopulate all of the groups WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBER_S), pAcct->GetName()); if ( progress ) progress(mesg); RecordAndRemoveMember(pOptions, pAcct, &pMember); } } // We need to remove this object from any global groups so that it can be moved. if ( ! pOptions->nochange ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBEROF_S), pAcct->GetName()); Progress(mesg); RecordAndRemoveMemberOf( pOptions, pAcct, &pMemberOf ); } BOOL bObjectExists = DoesTargetObjectAlreadyExist(pAcct, pOptions); if ( bObjectExists ) { // The object exists, see if we need to rename if ( wcslen(pOptions->prefix) > 0 ) { // Add a prefix to the account name WCHAR tgt[LEN_Path]; WCHAR pref[LEN_Path], suf[LEN_Path]; WCHAR sTempSam[LEN_Path]; _variant_t varStr; // find the '=' sign wcscpy(tgt, pAcct->GetTargetName()); for ( DWORD z = 0; z < wcslen(tgt); z++ ) { if ( tgt[z] == L'=' ) break; } if ( z < wcslen(tgt) ) { // Get the prefix part ex.CN= wcsncpy(pref, tgt, z+1); pref[z+1] = 0; wcscpy(suf, tgt+z+1); } // Build the target string with the Prefix wsprintf(tgt, L"%s%s%s", pref, pOptions->prefix, suf); pAcct->SetTargetName(tgt); // truncate to allow prefix/suffix to fit in 20 characters. int resLen = wcslen(pOptions->prefix) + wcslen(pAcct->GetTargetSam()); if ( !_wcsicmp(pAcct->GetType(), L"computer") ) { // Computer name can be only 15 characters long + $ if ( resLen > 16 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 16 - wcslen(pOptions->prefix) - wcslen(pOptions->globalSuffix); if ( truncate < 1 ) truncate = 1; wcsncpy(sTempSam, sTruncatedSam, truncate - 1); sTempSam[truncate - 1] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); wcscat(sTempSam, L"$"); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the prefix wsprintf(tgt, L"%s%s", pOptions->prefix,sTempSam); } else if ( !_wcsicmp(pAcct->GetType(), L"group") ) { if ( resLen > 64 ) { int truncate = 64 - wcslen(pOptions->prefix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, pAcct->GetTargetSam(), truncate); sTempSam[truncate] = L'\0'; } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the prefix wsprintf(tgt, L"%s%s", pOptions->prefix,sTempSam); } else { if ( resLen > 20 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 20 - wcslen(pOptions->prefix) - wcslen(pOptions->globalSuffix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, sTruncatedSam, truncate); sTempSam[truncate] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the prefix wsprintf(tgt, L"%s%s", pOptions->prefix,sTempSam); } StripSamName(tgt); // TruncateSam(tgt,pAcct,pOptions,acctlist); pAcct->SetTargetSam(tgt); if ( DoesTargetObjectAlreadyExist(pAcct, pOptions) ) { // Double collision lets log a message and forget about this account pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_PREF_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); continue; } } else if ( wcslen(pOptions->suffix) > 0 ) { // Add a suffix to the account name WCHAR tgt[LEN_Path]; WCHAR sTempSam[LEN_Path]; wsprintf(tgt, L"%s%s", pAcct->GetTargetName(), pOptions->suffix); pAcct->SetTargetName(tgt); //Update the sam account name // truncate to allow prefix/suffix to fit in valid length int resLen = wcslen(pOptions->suffix) + wcslen(pAcct->GetTargetSam()); if ( !_wcsicmp(pAcct->GetType(), L"computer") ) { // Computer name can be only 15 characters long + $ if ( resLen > 16 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 16 - wcslen(pOptions->suffix) - wcslen(pOptions->globalSuffix); if ( truncate < 1 ) truncate = 1; wcsncpy(sTempSam, sTruncatedSam, truncate - 1); sTempSam[truncate - 1] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); wcscat(sTempSam, L"$"); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the suffix taking into account the $ sign if ( sTempSam[wcslen(sTempSam) - 1] == L'$' ) sTempSam[wcslen(sTempSam) - 1] = L'\0'; wsprintf(tgt, L"%s%s$", sTempSam, pOptions->suffix); } else if ( !_wcsicmp(pAcct->GetType(), L"group") ) { if ( resLen > 64 ) { int truncate = 64 - wcslen(pOptions->suffix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, pAcct->GetTargetSam(), truncate); sTempSam[truncate] = L'\0'; } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the suffix. wsprintf(tgt, L"%s%s", sTempSam, pOptions->suffix); } else { if ( resLen > 20 ) { WCHAR sTruncatedSam[LEN_Path]; wcscpy(sTruncatedSam, pAcct->GetTargetSam()); if ( wcslen( pOptions->globalSuffix ) ) { // We must remove the global suffix if we had one. sTruncatedSam[wcslen(sTruncatedSam) - wcslen(pOptions->globalSuffix)] = L'\0'; } int truncate = 20 - wcslen(pOptions->suffix) - wcslen(pOptions->globalSuffix); if ( truncate < 0 ) truncate = 0; wcsncpy(sTempSam, sTruncatedSam, truncate); sTempSam[truncate] = L'\0'; wcscat(sTempSam, pOptions->globalSuffix); } else wcscpy(sTempSam, pAcct->GetTargetSam()); // Add the suffix. wsprintf(tgt, L"%s%s", sTempSam, pOptions->suffix); } StripSamName(tgt); // TruncateSam(tgt,pAcct,pOptions,acctlist); pAcct->SetTargetSam(tgt); if ( DoesTargetObjectAlreadyExist(pAcct, pOptions) ) { // Double collision lets log a message and forget about this account pAcct->MarkAlreadyThere(); err.MsgWrite(ErrE, DCT_MSG_PREF_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); Mark(L"errors",pAcct->GetType()); continue; } } else { // if the skip existing option is specified, and the object exists in the target domain, // we just skip it err.MsgWrite(0, DCT_MSG_ACCOUNT_EXISTS_S, pAcct->GetTargetSam()); continue; } } // If a prefix/suffix is added to the target sam name then we need to rename the account. // on the source domain and then move it to the target domain. if ( bObjectExists || (_wcsicmp(pAcct->GetSourceSam(), pAcct->GetTargetSam()) && !pOptions->bUndo )) { // we need to rename the account to the target SAM name before we try to move it // Get an ADs pointer to the account IADs * pADs = NULL; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPaths, nPathLen, const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions, FALSE); hr = ADsGetObject(sPaths,IID_IADs,(void**)&pADs); if ( SUCCEEDED(hr) ) { hr = pADs->Put(SysAllocString(L"sAMAccountName"),_variant_t(pAcct->GetTargetSam())); if ( SUCCEEDED(hr) && !pOptions->nochange ) { hr = pADs->SetInfo(); if ( SUCCEEDED(hr) ) err.MsgWrite(0,DCT_MSG_ACCOUNT_RENAMED_SS,pAcct->GetSourceSam(),pAcct->GetTargetSam()); } if ( FAILED(hr) ) { err.SysMsgWrite(ErrE,hr,DCT_MSG_RENAME_FAILED_SSD,pAcct->GetSourceSam(),pAcct->GetTargetSam(), hr); Mark(L"errors",pAcct->GetType()); } pADs->Release(); } } WCHAR sName[MAX_PATH]; DWORD cbDomain = MAX_PATH, cbSid = MAX_PATH; PSID pSrcSid = new BYTE[MAX_PATH]; WCHAR sDomain[MAX_PATH]; SID_NAME_USE use; if (!pSrcSid) return ERROR_NOT_ENOUGH_MEMORY; // Get the source account's rid wsprintf(sName, L"%s\\%s", pOptions->srcDomain, pAcct->GetSourceSam()); if (LookupAccountName(pOptions->srcComp, sName, pSrcSid, &cbSid, sDomain, &cbDomain, &use)) { pAcct->SetSourceSid(pSrcSid); } // Now we move it hr = MoveObject( pAcct, pOptions, pMover ); // don't bother with this in nochange mode if ( pOptions->nochange ) { // we haven't modified the accounts in any way, so nothing else needs to be done for nochange mode continue; } // Now, we have attempted to move the object - we need to put back the memberships // UNDO -- if ( _wcsicmp(pAcct->GetSourceSam(), pAcct->GetTargetSam()) && pAcct->WasReplaced() && pOptions->bUndo ) { // Since we undid a prior migration that renamed the account we need // to rename the account back to its original name. // Get an ADs pointer to the account IADs * pADs = NULL; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPaths, nPathLen, const_cast<WCHAR*>(pAcct->GetTargetPath()), pOptions, TRUE); hr = ADsGetObject(sPaths,IID_IADs,(void**)&pADs); if ( SUCCEEDED(hr) ) { hr = pADs->Put(SysAllocString(L"sAMAccountName"),_variant_t(pAcct->GetTargetSam())); if ( SUCCEEDED(hr) && !pOptions->nochange ) { hr = pADs->SetInfo(); if ( SUCCEEDED(hr) ) err.MsgWrite(0,DCT_MSG_ACCOUNT_RENAMED_SS,pAcct->GetSourceSam(),pAcct->GetTargetSam()); } if ( FAILED(hr) ) { err.SysMsgWrite(ErrE,hr,DCT_MSG_RENAME_FAILED_SSD,pAcct->GetSourceSam(),pAcct->GetTargetSam(), hr); Mark(L"errors",pAcct->GetType()); } pADs->Release(); } } // -- UNDO // FAILED Move ---- if ( (bObjectExists || _wcsicmp(pAcct->GetSourceSam(), pAcct->GetTargetSam())) && ! pAcct->WasReplaced() ) { // if we changed the SAM account name, and the move still failed, we need to change it back now IADs * pADs = NULL; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPaths, nPathLen, const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions, FALSE); hr = ADsGetObject(sPaths,IID_IADs,(void**)&pADs); if ( SUCCEEDED(hr) ) { hr = pADs->Put(SysAllocString(L"sAMAccountName"),_variant_t(pAcct->GetSourceSam())); if ( SUCCEEDED(hr) ) { hr = pADs->SetInfo(); if ( SUCCEEDED(hr) ) err.MsgWrite(0,DCT_MSG_ACCOUNT_RENAMED_SS,pAcct->GetTargetSam(),pAcct->GetSourceSam()); } if ( FAILED(hr) ) { err.SysMsgWrite(ErrE,hr,DCT_MSG_RENAME_FAILED_SSD,pAcct->GetTargetSam(),pAcct->GetSourceSam(), hr); Mark(L"errors",pAcct->GetType()); } pADs->Release(); } }// --- Failed Move } // end of Move-Loop e.Close(); } catch ( ... ) { err.MsgWrite(ErrE,DCT_MSG_MOVE_EXCEPTION); Mark(L"errors", L"generic"); } try { // if we've moved any of the members, update the member records to use the target names WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_UPDATE_MEMBER_LIST_S)); Progress(mesg); UpdateMemberList(&pMember,acctlist); UpdateMemberList(&pMemberOf,acctlist); } catch (... ) { err.MsgWrite(ErrE,DCT_MSG_RESET_MEMBER_EXCEPTION); Mark(L"errors", L"generic"); } for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist); pAcct; pAcct = (TAcctReplNode *)e.Next() ) { if ( m_pExt && !pOptions->nochange ) { if ( pAcct->WasReplaced() && (pAcct->operations & OPS_Call_Extensions) ) { m_pExt->Process(pAcct,sTargetDomain,pOptions,FALSE); } } //translate the roaming profile if requested if ( pOptions->flags & F_TranslateProfiles && (_wcsicmp(pAcct->GetType(), L"user") == 0)) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_TRANSLATE_ROAMING_PROFILE_S), pAcct->GetName()); if ( progress ) progress(mesg); WCHAR tgtProfilePath[MAX_PATH]; GetBkupRstrPriv((WCHAR*)NULL); GetPrivilege((WCHAR*)NULL,SE_SECURITY_NAME); if ( wcslen(pAcct->GetSourceProfile()) > 0 ) { DWORD ret = TranslateRemoteProfile(pAcct->GetSourceProfile(), tgtProfilePath, pAcct->GetSourceSam(), pAcct->GetTargetSam(), pOptions->srcDomain, pOptions->tgtDomain, pOptions->pDb, pOptions->lActionID, pAcct->GetSourceSid(), pOptions->nochange); } } } e.Close(); for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist); pAcct; pAcct = (TAcctReplNode *)e.Next() ) { try { if (bSrcNative && bTgtNative) { if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(IDS_UPDATING_GROUP_MEMBERSHIPS_S), pAcct->GetName()); if ( progress ) progress(mesg); if ( pAcct->GetGroupType() & 4 ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RESET_GROUP_MEMBERS_S), pAcct->GetName()); Progress(mesg); ResetGroupsMembers(pOptions, pAcct, &pMember, pOptions->pDb); } else { // we need to update the members of these Universal/Global groups to // point members to the target domain if those members have been migrated // in previous runs. ResetMembersForUnivGlobGroups(pOptions, pAcct); } } } else { if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RESET_GROUP_MEMBERS_S), pAcct->GetName()); if ( progress ) progress(mesg); ResetGroupsMembers(pOptions, pAcct, &pMember, pOptions->pDb); } } } catch (... ) { err.MsgWrite(ErrE,DCT_MSG_GROUP_MEMBERSHIPS_EXCEPTION); Mark(L"errors", pAcct->GetType()); } } bool bChangedAny = true; // Have to go through it atleast once. while ( bChangedAny ) { bChangedAny = false; for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist); pAcct; pAcct = (TAcctReplNode *)e.Next() ) { if ( pOptions->nochange ) continue; if ( bSrcNative && bTgtNative ) { // We have changed the migrated global groups to universal groups // now we need to change them back to their original types, if possible if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { if ( pAcct->GetGroupType() & 2 ) { if ( pAcct->bChangedType ) continue; // attempt to change it back to its original type if ( pAcct->WasReplaced() ) { // the account was moved, use the target name hr = pClass->raw_ChangeGroupType(const_cast<WCHAR*>(pAcct->GetTargetPath()), pAcct->GetGroupType()); } else { // we failed to move the account, use the source name hr = pClass->raw_ChangeGroupType(const_cast<WCHAR*>(pAcct->GetSourcePath()), pAcct->GetGroupType()); } pAcct->SetHr(hr); if ( SUCCEEDED(hr) ) { pAcct->bChangedType = true; bChangedAny = true; } } } } else { // for mixed->native mode migration we can change the group type and add all the members back if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { if ( !(pAcct->GetGroupType() & 4) && !pAcct->bChangedType ) { if ( pAcct->WasReplaced() ) { hr = pClass->raw_ChangeGroupType(const_cast<WCHAR*>(pAcct->GetTargetPath()), pAcct->GetGroupType()); } else { hr = pClass->raw_ChangeGroupType(const_cast<WCHAR*>(pAcct->GetSourcePath()), pAcct->GetGroupType()); } pAcct->SetHr(hr); if ( SUCCEEDED(hr) ) { pAcct->bChangedType = true; bChangedAny = true; } } } // if group } // Native/Mixed } //for } // Log a message for all the groups that we were not able to change back to original type for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist); pAcct; pAcct = (TAcctReplNode *)e.Next() ) { if ( pOptions->nochange ) continue; if ( bSrcNative && bTgtNative ) { // We have changed the migrated global groups to universal groups // now we need to change them back to their original types, if possible if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { if ( pAcct->GetGroupType() & 2 ) { if (FAILED(pAcct->GetHr())) { err.SysMsgWrite(ErrE,hr,DCT_MSG_GROUP_CHANGETYPE_FAILED_SD, pAcct->GetTargetPath(), hr); Mark(L"errors", pAcct->GetType()); } } } } else { // for mixed->native mode migration we can change the group type and add all the members back if ( _wcsicmp(pAcct->GetType(), L"group") == 0 || _wcsicmp(pAcct->GetType(), L"lgroup") == 0 ) { if ( !(pAcct->GetGroupType() & 4) ) { if (FAILED(pAcct->GetHr())) { err.SysMsgWrite(ErrE,hr,DCT_MSG_GROUP_CHANGETYPE_FAILED_SD, pAcct->GetTargetPath(), hr); Mark(L"errors", pAcct->GetType()); } } } // if group } // Native/Mixed } //for WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RESET_MEMBERSHIP_S)); Progress(mesg); ResetObjectsMembership( pOptions,&pMemberOf, pOptions->pDb ); } else { // Connection failed. err.SysMsgWrite(ErrE,hr,DCT_MSG_MOVEOBJECT_CONNECT_FAILED_D,hr); Mark(L"errors", ((TAcctReplNode*)acctlist->Head())->GetType()); } if ( progress ) progress(L""); pMover->Close(); return 0; } //--------------------------------------------------------------------------------------------------------- // MoveObject - This method does the actual move on the object calling the Mover object. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::MoveObject( TAcctReplNode * pAcct, Options * pOptions, IMoverPtr pMover ) { HRESULT hr = S_OK; WCHAR sourcePath[LEN_Path]; WCHAR targetPath[LEN_Path]; DWORD nPathLen = LEN_Path; WCHAR * pRelativeTgtOUPath = NULL; safecopy(sourcePath,pAcct->GetSourcePath()); WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_MOVING_S), pAcct->GetName()); Progress(mesg); if ( ! pOptions->bUndo ) { MakeFullyQualifiedAdsPath(targetPath, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); } else { swprintf(targetPath,L"LDAP://%ls/%ls",pOptions->tgtDomain,pOptions->tgtOUPath); } //make sourcePath and targetPath all lowercase to avoid a W2K bug in ntdsa.dll _wcslwr(targetPath); _wcslwr(sourcePath); //due to lowercase force above, we have to replace "ldap://" with "LDAP://" in //order for subsequent ADsGetObjects calls to succeed if ( !_wcsnicmp(L"LDAP://", targetPath, 7) ) { WCHAR aNewPath[LEN_Path] = L"LDAP"; UStrCpy(aNewPath+UStrLen(aNewPath), targetPath+UStrLen(aNewPath)); wcscpy(targetPath, aNewPath); } if ( !_wcsnicmp(L"LDAP://", sourcePath, 7) ) { WCHAR aNewPath[LEN_Path] = L"LDAP"; UStrCpy(aNewPath+UStrLen(aNewPath), sourcePath+UStrLen(aNewPath)); wcscpy(sourcePath, aNewPath); } WCHAR sTargetRDN[LEN_Path]; wcscpy(sTargetRDN, pAcct->GetTargetName()); WCHAR * pTemp = NULL; pTemp = wcsstr(sTargetRDN, L"CN="); if ( pTemp != sTargetRDN ) { wsprintf(sTargetRDN, L"CN=%s", pAcct->GetTargetName()); pAcct->SetTargetName(sTargetRDN); } if ( ! pOptions->nochange ) { hr = pMover->raw_MoveObject(sourcePath,sTargetRDN,targetPath); //if the Move operation failed due to a W2K bug for CNs which //include a '/', un-escape the '/' and try again if ((hr == E_INVALIDARG) && (wcschr(sTargetRDN, L'/'))) { _bstr_t strName = GetUnEscapedNameWithFwdSlash(_bstr_t(sTargetRDN)); //remove any escape characters added hr = pMover->raw_MoveObject(sourcePath,(WCHAR*)strName,targetPath); } } else { hr = pMover->raw_CheckMove(sourcePath,sTargetRDN,targetPath); //if the Check Move operation failed due to a W2K bug for CNs which //include a '/', un-escape the '/' and try again if ((hr == E_INVALIDARG) && (wcschr(sTargetRDN, L'/'))) { _bstr_t strName = GetUnEscapedNameWithFwdSlash(_bstr_t(sTargetRDN)); //remove any escape characters added hr = pMover->raw_CheckMove(sourcePath,(WCHAR*)strName,targetPath); } if ( HRESULT_CODE(hr) == ERROR_DS_CANT_MOVE_ACCOUNT_GROUP || HRESULT_CODE(hr) == ERROR_DS_CANT_MOVE_RESOURCE_GROUP || HRESULT_CODE(hr) == ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS || HRESULT_CODE(hr) == ERROR_USER_EXISTS ) { hr = 0; } } if ( SUCCEEDED(hr) ) { WCHAR path[LEN_Path]; DWORD nPathLen = LEN_Path; pAcct->MarkReplaced(); Mark(L"created", pAcct->GetType()); // set the target path UStrCpy(path,pAcct->GetTargetName()); if ( *pOptions->tgtOUPath ) { wcscat(path, L","); wcscat(path, pOptions->tgtOUPath); } pRelativeTgtOUPath = wcschr(targetPath + wcslen(L"LDAP://") + 2, L'/'); if ( pRelativeTgtOUPath ) { *pRelativeTgtOUPath = 0; swprintf(path,L"%ls/%ls,%ls",targetPath,pAcct->GetTargetName(),pRelativeTgtOUPath+1); } else { MakeFullyQualifiedAdsPath(path, nPathLen, pOptions->tgtOUPath, pOptions->tgtComp, pOptions->tgtNamingContext); } pAcct->SetTargetPath(path); err.MsgWrite(0,DCT_MSG_OBJECT_MOVED_SS,pAcct->GetSourcePath(),pAcct->GetTargetPath()); } else { pAcct->MarkError(); Mark(L"errors", pAcct->GetType()); if ( hr == 8524 ) { err.MsgWrite(ErrE,DCT_MSG_MOVEOBJECT_FAILED_S8524,pAcct->GetName(),hr); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_MOVEOBJECT_FAILED_SD,pAcct->GetName(),hr); } } return hr; } //--------------------------------------------------------------------------------------------------------- // RecordAndRemoveMemberOf : This method removes all values in the memberOf property and then records these // memberships. These memberships are later updated. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::RecordAndRemoveMemberOf ( Options * pOptions, //in- Options specified by the user TAcctReplNode * pAcct, //in- Account being migrated. TNodeListSortable * pMember //out-List containing the MemberOf values. ) { // First Enumerate all the objects in the member of property INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); IEnumVARIANT * pEnum; LPWSTR sCols[] = { L"memberOf" }; SAFEARRAY * pSa; BSTR * pData; SAFEARRAYBOUND bd = { 1, 0 }; // long ind = 0; IADs * pAds; _bstr_t sObjDN; _bstr_t sGrpName; _variant_t var; _variant_t * pDt; _variant_t vx; DWORD ulFetch; _bstr_t sDN; WCHAR sPath[LEN_Path]; IADsGroup * pGroup; _variant_t * pVar; if ( pMember->IsTree() ) pMember->ToSorted(); WCHAR sPathSource[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPathSource, nPathLen, const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions, FALSE); err.MsgWrite(0,DCT_STRIPPING_GROUP_MEMBERSHIPS_SS,pAcct->GetName(),sPathSource); // Get this users distinguished name. HRESULT hr = ADsGetObject(sPathSource, IID_IADs, (void**) &pAds); if ( FAILED(hr) ) { err.SysMsgWrite(ErrE, hr, DCT_MSG_SOURCE_ACCOUNT_NOT_FOUND_SSD, pAcct->GetName(), pOptions->srcDomain, hr); Mark(L"errors", pAcct->GetType()); return hr; } hr = pAds->Get(L"distinguishedName", &var); pAds->Release(); if ( FAILED(hr)) return hr; sObjDN = V_BSTR(&var); // Set up the column array pSa = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(pSa, (void HUGEP **) &pData); pData[0] = SysAllocString(sCols[0]); SafeArrayUnaccessData(pSa); // hr = pQuery->raw_SetQuery(const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions->srcDomain, L"(objectClass=*)", ADS_SCOPE_BASE, TRUE); hr = pQuery->raw_SetQuery(sPathSource, pOptions->srcDomain, L"(objectClass=*)", ADS_SCOPE_BASE, TRUE); hr = pQuery->raw_SetColumns(pSa); hr = pQuery->raw_Execute(&pEnum); while ( pEnum->Next(1, &var, &ulFetch) == S_OK ) { SAFEARRAY * vals = var.parray; // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); vx = pDt[0]; SafeArrayUnaccessData(vals); // Single value in the property. Good enough for me though if ( vx.vt == VT_BSTR ) { sDN = V_BSTR(&vx); sDN = PadDN(sDN); if ( sDN.length() > 0 ) { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBEROF_SS), pAcct->GetName(), (WCHAR*) sDN); Progress(mesg); SimpleADsPathFromDN(pOptions, sDN, sPath); WCHAR sSourcePath[LEN_Path]; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; wcscpy(sSourcePath, (WCHAR*) sPath); if ( !wcsncmp(L"LDAP://", sSourcePath, 7) ) StuffComputerNameinLdapPath(sPaths, nPathLen, sSourcePath, pOptions, FALSE); // Get the IADsGroup pointer to each of the objects in member of and remove this object from the group hr = ADsGetObject(sPaths, IID_IADsGroup, (void**) &pGroup); if ( FAILED(hr) ) continue; pGroup->Get(L"sAMAccountName", &var); sGrpName = V_BSTR(&var); hr = pGroup->Get(L"groupType",&var); if ( SUCCEEDED(hr) ) { if ( var.lVal & 2 ) { // this is a global group if ( !pOptions->nochange ) hr = pGroup->Remove(sPathSource); else hr = S_OK; if ( SUCCEEDED(hr) ) { // err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,sPath2,(WCHAR*)sGrpName); err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,sPathSource,(WCHAR*)sPaths); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_REMOVE_MEMBER_FAILED_SSD,sPathSource,sPaths,hr); Mark(L"errors", pAcct->GetType()); } } else { err.MsgWrite(0,DCT_MSG_NOT_REMOVING_MEMBER_FROM_GROUP_SS,sPathSource,sPaths); pGroup->Release(); continue; } } pGroup->Release(); if (FAILED(hr)) continue; // Record this path into the list TRecordNode * pNode = new TRecordNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); pNode->SetMember((WCHAR*)sPath); pNode->SetMemberSam((WCHAR*)sGrpName); pNode->SetDN((WCHAR*)sDN); pNode->SetARNode(pAcct); if (! pMember->InsertIfNew((TNode*) pNode) ) delete pNode; } } else if ( vx.vt & VT_ARRAY ) { // We must have got an Array of multivalued properties // Access the BSTR elements of this variant array SAFEARRAY * multiVals = vx.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { sDN = _bstr_t(pVar[dw]); sDN = PadDN(sDN); SimpleADsPathFromDN(pOptions, sDN, sPath); WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBEROF_SS), pAcct->GetName(), (WCHAR*) sDN); Progress(mesg); WCHAR sSourcePath[LEN_Path]; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; wcscpy(sSourcePath, (WCHAR*) sPath); if ( !wcsncmp(L"LDAP://", sSourcePath, 7) ) StuffComputerNameinLdapPath(sPaths, nPathLen, sSourcePath, pOptions, FALSE); // Get the IADsGroup pointer to each of the objects in member of and remove this object from the group hr = ADsGetObject(sPaths, IID_IADsGroup, (void**) &pGroup); if ( FAILED(hr) ) continue; pGroup->Get(L"sAMAccountName", &var); sGrpName = V_BSTR(&var); hr = pGroup->Get(L"groupType",&var); if ( SUCCEEDED(hr) ) { if ( var.lVal & 2 ) { // This is a global group if ( !pOptions->nochange ) hr = pGroup->Remove(sPathSource); else hr = S_OK; if ( SUCCEEDED(hr) ) { err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,sPathSource,sPaths); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_REMOVE_MEMBER_FAILED_SSD,sPathSource,sPaths); Mark(L"errors", pAcct->GetType()); } } else { err.MsgWrite(0,DCT_MSG_NOT_REMOVING_MEMBER_FROM_GROUP_SS,sPathSource,sPaths); pGroup->Release(); continue; } } pGroup->Release(); if (FAILED(hr)) continue; // Record this path into the list TRecordNode * pNode = new TRecordNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); pNode->SetMember(sPath); pNode->SetMemberSam((WCHAR*)sGrpName); pNode->SetDN((WCHAR*)sDN); pNode->SetARNode(pAcct); if (! pMember->InsertIfNew((TNode*) pNode) ) delete pNode; } SafeArrayUnaccessData(multiVals); } } pEnum->Release(); VariantInit(&var); return S_OK; } //--------------------------------------------------------------------------------------------------------- // ResetObjectsMembership : This method restores the memberOf property of the object being migrated. It uses // the information that was stored by RecordAndRemoveMemberOf function. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::ResetObjectsMembership( Options * pOptions, //in- Options set by the user. TNodeListSortable * pMember, //in- The member list that is used to restore the values IIManageDBPtr pDb //in- Database object to lookup migrated accounts. ) { IVarSetPtr pVs(__uuidof(VarSet)); _bstr_t sMember; IADs * pAds; IUnknown * pUnk; _bstr_t sPath; _variant_t var; _bstr_t sMyDN; IADsGroup * pGroup = NULL; TAcctReplNode * pAcct = NULL; HRESULT hr; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; // Sort the member list by the account nodes pMember->Sort(&TNodeCompareAcctNode); // For all the items in the member list lets add the member to the group. // First check in the migrated objects table to see if it has been migrated. for ( TRecordNode * pNode = (TRecordNode *)pMember->Head(); pNode; pNode = (TRecordNode *)pNode->Next()) { pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); // get the needed information from the account node if ( pAcct != pNode->GetARNode() ) { if ( pNode->GetARNode()->WasReplaced() ) { // the account was moved successfully - add the target account to all of its old groups StuffComputerNameinLdapPath(sPaths, nPathLen, const_cast<WCHAR*>(pNode->GetARNode()->GetTargetPath()), pOptions); hr = ADsGetObject(sPaths, IID_IADs, (void**) &pAds); } else { // the move failed, add the source account back to its groups StuffComputerNameinLdapPath(sPaths, nPathLen, const_cast<WCHAR*>(pNode->GetARNode()->GetSourcePath()), pOptions, FALSE); hr = ADsGetObject(sPaths, IID_IADs, (void**) &pAds); } if ( SUCCEEDED(hr) ) { pAds->Get(L"distinguishedName", &var); pAds->Release(); sMyDN = V_BSTR(&var); } else { continue; } pAcct = pNode->GetARNode(); if ( pAcct->WasReplaced() ) { err.MsgWrite(0,DCT_READDING_GROUP_MEMBERS_SS,pAcct->GetTargetName(),sPaths); } else { err.MsgWrite(0,DCT_READDING_GROUP_MEMBERS_SS,pAcct->GetName(),sPaths); } } sMember = pNode->GetMemberSam(); if ( pAcct->WasReplaced() ) { pVs->Clear(); hr = pDb->raw_GetAMigratedObject((WCHAR*)sMember,pOptions->srcDomain, pOptions->tgtDomain, &pUnk); pUnk->Release(); if ( hr == S_OK ) // Since we have already migrated this object lets use the target objects information. sPath = pVs->get(L"MigratedObjects.TargetAdsPath"); else // Other wise use the source objects path to add. sPath = pNode->GetMember(); } else { sPath = pNode->GetMember(); } // We have a path to the object lets get the group interface and add this object as a member WCHAR sPath2[LEN_Path]; DWORD nPathLen = LEN_Path; if ( SUCCEEDED(hr) ) { StuffComputerNameinLdapPath(sPath2, nPathLen, (WCHAR*) sPath, pOptions, TRUE); hr = ADsGetObject(sPath2, IID_IADsGroup, (void**) &pGroup); } if ( SUCCEEDED(hr) ) { if ( pAcct->WasReplaced() ) { if ( ! pOptions->nochange ) hr = pGroup->Add(sPaths); else hr = 0; if ( SUCCEEDED(hr) ) { err.MsgWrite(0,DCT_MSG_READDED_MEMBER_SS,pAcct->GetTargetPath(),sPath2); } else { //hr = BetterHR(hr); if ( HRESULT_CODE(hr) == ERROR_DS_UNWILLING_TO_PERFORM ) { err.MsgWrite(0,DCT_MSG_READD_MEMBER_FAILED_CONSTRAINTS_SS,pAcct->GetTargetPath(),sPath2); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_READD_TARGET_MEMBER_FAILED_SSD,pAcct->GetTargetPath(),(WCHAR*)sPath2,hr); } Mark(L"errors", pAcct->GetType()); } } else { WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RESET_OBJECT_MEMBERSHIP_SS), (WCHAR*) sPath2, pAcct->GetTargetName()); Progress(mesg); if ( ! pOptions->nochange ) hr = pGroup->Add(sPaths); else hr = 0; if ( SUCCEEDED(hr) ) { err.MsgWrite(0,DCT_MSG_READDED_MEMBER_SS,pAcct->GetSourcePath(),(WCHAR*)sPath2); } else { //hr = BetterHR(hr); if ( HRESULT_CODE(hr) == ERROR_DS_UNWILLING_TO_PERFORM ) { err.MsgWrite(0,DCT_MSG_READD_MEMBER_FAILED_CONSTRAINTS_SS,pAcct->GetTargetPath(),(WCHAR*)sPath2); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_READD_SOURCE_MEMBER_FAILED_SSD,pAcct->GetSourcePath(),(WCHAR*)sPath2,hr); } Mark(L"errors", pAcct->GetType()); } } } else { // the member could not be added to the group hr = BetterHR(hr); err.SysMsgWrite(ErrW,hr,DCT_MSG_FAILED_TO_GET_OBJECT_SD,(WCHAR*)sPath2,hr); Mark(L"warnings", pAcct->GetType()); } if ( pGroup ) { pGroup->Release(); pGroup = NULL; } } return hr; } //--------------------------------------------------------------------------------------------------------- // RecordAndRemoveMember : Records and removes the objects in the member property of the object(group) being // migrated. The recorded information is later used to restore membership. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::RecordAndRemoveMember ( Options * pOptions, //in- Options set by the user. TAcctReplNode * pAcct, //in- Account being copied. TNodeListSortable * pMember //out-Membership list to be used later to restore membership ) { HRESULT hr; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); IEnumVARIANT * pEnum; LPWSTR sCols[] = { L"member" }; SAFEARRAY * pSa; SAFEARRAYBOUND bd = { 1, 0 }; // long ind = 0; WCHAR sPath[LEN_Path]; DWORD nPathLen = LEN_Path; _bstr_t sDN; IADsGroup * pGroup; _variant_t var; DWORD ulFetch=0; IADs * pAds; _bstr_t sGrpName; _variant_t * pDt; _variant_t vx; BSTR HUGEP * pData; WCHAR sSourcePath[LEN_Path]; WCHAR sAdsPath[LEN_Path]; wcscpy(sSourcePath, pAcct->GetSourcePath()); if ( !wcsncmp(L"LDAP://", sSourcePath, 7) ) StuffComputerNameinLdapPath(sAdsPath, nPathLen, sSourcePath, pOptions, FALSE); hr = ADsGetObject(sAdsPath, IID_IADsGroup, (void**) &pGroup); if ( FAILED(hr) ) return hr; pSa = SafeArrayCreate(VT_BSTR, 1, &bd); hr = SafeArrayAccessData(pSa, (void HUGEP **)&pData); pData[0] = SysAllocString(sCols[0]); hr = SafeArrayUnaccessData(pSa); hr = pQuery->raw_SetQuery(sAdsPath, pOptions->srcDomain, L"(objectClass=*)", ADS_SCOPE_BASE, TRUE); hr = pQuery->raw_SetColumns(pSa); hr = pQuery->raw_Execute(&pEnum); err.MsgWrite(0,DCT_STRIPPING_GROUP_MEMBERS_SS,pAcct->GetName(),sAdsPath); while ( pEnum->Next(1, &var, &ulFetch) == S_OK ) { SAFEARRAY * vals = var.parray; // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); vx = pDt[0]; SafeArrayUnaccessData(vals); // Single value in the property. Good enough for me though if ( vx.vt == VT_BSTR ) { sDN = V_BSTR(&vx); sDN = PadDN(sDN); if ( sDN.length() ) { ADsPathFromDN(pOptions, sDN, sPath); WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBER_SS), pAcct->GetName(), (WCHAR*) sDN); Progress(mesg); // Get the IADs pointer to each of the objects in member and remove the object from the group hr = ADsGetObject((WCHAR*)sPath, IID_IADs, (void**) &pAds); if ( SUCCEEDED(hr) ) { pAds->Get(L"sAMAccountName", &var); sGrpName = V_BSTR(&var); pAds->Get(L"distinguishedName", &var); sDN = V_BSTR(&var); } if ( !pOptions->nochange ) hr = pGroup->Remove((WCHAR*) sPath); else hr = S_OK; if (FAILED(hr)) { err.SysMsgWrite(ErrE,hr,DCT_MSG_REMOVE_MEMBER_FAILED_SSD,sAdsPath,(WCHAR*)sPath,hr); Mark(L"errors", pAcct->GetType()); continue; } else { err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,(WCHAR*)sPath,sAdsPath); } // Record this path into the list TRecordNode * pNode = new TRecordNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); pNode->SetMember((WCHAR*)sPath); pNode->SetMemberSam((WCHAR*)sGrpName); pNode->SetDN((WCHAR*)sDN); pNode->SetARNode(pAcct); if (! pMember->InsertIfNew((TNode*) pNode) ) delete pNode; } } else if ( vx.vt & VT_ARRAY ) { // We must have got an Array of multivalued properties // Access the BSTR elements of this variant array _variant_t * pVar; SAFEARRAY * multiVals = vx.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { sDN = _bstr_t(pVar[dw]); _bstr_t sPadDN = PadDN(sDN); ADsPathFromDN(pOptions, sPadDN, sPath); WCHAR tempPath[LEN_Path]; wcscpy(tempPath, sPath); if ( !wcsncmp(L"LDAP://", tempPath, 7) ) StuffComputerNameinLdapPath(sPath, nPathLen, tempPath, pOptions, FALSE); WCHAR mesg[LEN_Path]; wsprintf(mesg, (WCHAR*)GET_STRING(DCT_MSG_RECORD_REMOVE_MEMBER_SS), pAcct->GetName(), (WCHAR*) sPadDN); Progress(mesg); // Get the IADsGroup pointer to each of the objects in member of and remove this object from the group hr = ADsGetObject((WCHAR*)sPath, IID_IADs, (void**) &pAds); if ( SUCCEEDED(hr) ) { hr = pAds->Get(L"sAMAccountName", &var); if ( SUCCEEDED(hr) ) { sGrpName = V_BSTR(&var); } hr = pAds->Get(L"distinguishedName", &var); if ( SUCCEEDED(hr) ) { sDN = V_BSTR(&var); } if ( !pOptions->nochange ) hr = pGroup->Remove((WCHAR*)sPath); else hr = S_OK; if ( SUCCEEDED(hr) ) { err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,(WCHAR*)sPath,sAdsPath); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_REMOVE_MEMBER_FAILED_SSD,sAdsPath,(WCHAR*)sPath,hr); Mark(L"errors", pAcct->GetType()); } if ( SUCCEEDED(hr) ) { // Record this path into the list TRecordNode * pNode = new TRecordNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); pNode->SetMember((WCHAR*)sPath); pNode->SetMemberSam((WCHAR*)sGrpName); pNode->SetDN((WCHAR*)sDN); pNode->SetARNode(pAcct); if ( ! pMember->InsertIfNew((TNode*) pNode) ) delete pNode; } } else { // Since we were not able to get this user. it has probably been migrated to another domain. // we should use the DN to find where the object is migrated to and then use the migrated object // to establish the membership instead. // Remove the rogue member if ( !pOptions->nochange ) hr = pGroup->Remove((WCHAR*)sPath); else hr = S_OK; if ( SUCCEEDED(hr) ) { err.MsgWrite(0,DCT_MSG_REMOVED_MEMBER_FROM_GROUP_SS,(WCHAR*)sPath,sAdsPath); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_REMOVE_MEMBER_FAILED_SSD,sAdsPath,(WCHAR*)sPath,hr); Mark(L"errors", pAcct->GetType()); } // Check in the DB to see where this object may have been migrated IUnknown * pUnk = NULL; IVarSetPtr pVsMigObj(__uuidof(VarSet)); hr = pVsMigObj->QueryInterface(IID_IUnknown, (void**)&pUnk); if ( SUCCEEDED(hr) ) hr = pOptions->pDb->raw_GetMigratedObjectBySourceDN(sPadDN, &pUnk); if (pUnk) pUnk->Release(); if ( hr == S_OK ) { // Record this path into the list TRecordNode * pNode = new TRecordNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); WCHAR sKey[500]; wsprintf(sKey, L"MigratedObjects.%s", GET_STRING(DB_TargetAdsPath)); pNode->SetMember((WCHAR*)pVsMigObj->get(sKey).bstrVal); wsprintf(sKey, L"MigratedObjects.%s", GET_STRING(DB_TargetSamName)); pNode->SetMemberSam((WCHAR*)pVsMigObj->get(sKey).bstrVal); pNode->SetDN((WCHAR*)sDN); pNode->SetARNode(pAcct); if ( ! pMember->InsertIfNew((TNode*) pNode) ) delete pNode; } else { //Log a message saying we can not find this object and the membership will not be updated on the other side. err.MsgWrite(ErrE,DCT_MSG_MEMBER_NOT_FOUND_SS, pAcct->GetName(), (WCHAR*)sDN); } } } pAds->Release(); SafeArrayUnaccessData(multiVals); } } pEnum->Release(); VariantInit(&var); return S_OK; } void CAcctRepl::UpdateMemberList(TNodeListSortable * pMemberList,TNodeListSortable * acctlist) { // for each moved object in the account list, look it up in the member list TNodeTreeEnum e; TAcctReplNode * pAcct; TRecordNode * pRec; // HRESULT hr = S_OK; WCHAR dn[LEN_Path]; WCHAR const * slash; pMemberList->Sort(TNodeCompareMemberDN); for ( pAcct = (TAcctReplNode *)e.OpenFirst(acctlist) ; pAcct ; pAcct = (TAcctReplNode *)e.Next()) { if ( pAcct->WasReplaced() ) { //err.DbgMsgWrite(0,L"UpdateMemberList:: %ls was replaced",pAcct->GetSourcePath()); slash = wcschr(pAcct->GetSourcePath()+8,L'/'); if ( slash ) { safecopy(dn,slash+1); // err.DbgMsgWrite(0,L"Searching the member list for %ls",dn); // if the account was replaced, find any instances of it in the member list, and update them pRec = (TRecordNode *)pMemberList->Find(&TNodeCompareMemberItem,dn); while ( pRec ) { // err.DbgMsgWrite(0,L"Found record: Member=%ls, changing it to %ls",pRec->GetMember(),pAcct->GetTargetPath()); // change the member data to refer to the new location of the account pRec->SetMember(pAcct->GetTargetPath()); pRec->SetMemberSam(pAcct->GetTargetSam()); pRec->SetMemberMoved(); pRec = (TRecordNode*)pRec->Next(); if ( pRec && UStrICmp(pRec->GetDN(),dn) ) { // the next record is for a different node pRec = NULL; } } } } // else // err.DbgMsgWrite(0,L"UpdateMemberList:: %ls was not replaced",pAcct->GetSourcePath()); } e.Close(); // put the list back like it was before pMemberList->Sort(TNodeCompareMember); } void CAcctRepl::SimpleADsPathFromDN( Options * pOptions, WCHAR const * sDN, WCHAR * sPath ) { WCHAR const * pDcPart = wcsstr(sDN,L",DC="); UStrCpy(sPath,L"LDAP://"); if ( pDcPart ) { WCHAR const * curr; // pointer to DN WCHAR * sPathCurr; // pointer to domain name part of the path for ( sPathCurr = sPath+UStrLen(sPath), curr = pDcPart + 4; *curr ; sPathCurr++ ) { // replace each occurrence of ,DC= in the DN with '.' in this part of the domain if ( !UStrICmp(curr,L",DC=",4) ) { (*sPathCurr) = L'.'; curr+=4; } else { (*sPathCurr) = (*curr); curr++; } } // null-terminate the string (*sPathCurr) = 0; } else { // if we can't figure it out from the path for some reason, default to the source domain UStrCpy(sPath+UStrLen(sPath),pOptions->srcDomain); } UStrCpy(sPath+UStrLen(sPath),L"/"); UStrCpy(sPath + UStrLen(sPath),sDN); } BOOL GetSidString(PSID sid, WCHAR* sSid) { BOOL ret = false; SAFEARRAY * pSa = NULL; SAFEARRAYBOUND bd; HRESULT hr = S_OK; LPBYTE pByte = NULL; _variant_t var; if (IsValidSid(sid)) { DWORD len = GetLengthSid(sid); bd.cElements = len; bd.lLbound = 0; pSa = SafeArrayCreate(VT_UI1, 1, &bd); if ( pSa ) hr = SafeArrayAccessData(pSa, (void**)&pByte); if ( SUCCEEDED(hr) ) { for ( DWORD x = 0; x < len; x++) pByte[x] = ((LPBYTE)sid)[x]; hr = SafeArrayUnaccessData(pSa); } if ( SUCCEEDED(hr) ) { var.vt = VT_UI1 | VT_ARRAY; var.parray = pSa; VariantSidToString(var); wcscpy(sSid, (WCHAR*) var.bstrVal); ret = true; } } return ret; } //--------------------------------------------------------------------------------------------------------- // ADsPathFromDN : Constructs the AdsPath from distinguished name by looking up the Global Catalog. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::ADsPathFromDN( Options * pOptions, //in -Options as set by the user _bstr_t sDN, //in -Distinguished name to be converted WCHAR * sPath, //out-The ads path of object referenced by the DN bool bWantLDAP //in - Flag telling us if they want LDAP path or GC path. ) { HRESULT hr; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); WCHAR sCont[LEN_Path]; IEnumVARIANT * pEnum; WCHAR sQuery[LEN_Path]; LPWSTR sCols[] = { L"ADsPath" }; _variant_t var; DWORD pFetch = 0; BSTR * pDt; _variant_t * pvar; _variant_t vx; SAFEARRAY * pSa; SAFEARRAYBOUND bd = { 1, 0 }; // long ind = 0; long rc; pSa = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData( pSa, (void HUGEP **) &pDt); pDt[0] = SysAllocString(sCols[0]); SafeArrayUnaccessData(pSa); wsprintf(sCont, L"GC://%s", pOptions->srcDomain); wsprintf(sQuery, L"(distinguishedName=%s)", (WCHAR*) sDN); hr = pQuery->raw_SetQuery(sCont, pOptions->srcDomain, sQuery, ADS_SCOPE_SUBTREE, TRUE); if ( FAILED(hr) ) return hr; hr = pQuery->raw_SetColumns(pSa); if ( FAILED(hr) ) return hr; hr = pQuery->raw_Execute(&pEnum); if ( FAILED(hr) ) return hr; hr = pEnum->Next(1, &var, &pFetch); if ( SUCCEEDED(hr) && pFetch > 0 && (var.vt & VT_ARRAY) ) { SAFEARRAY * vals = var.parray; // Get the VARIANT Array out rc = SafeArrayAccessData(vals, (void HUGEP**) &pvar); vx = pvar[0]; rc = SafeArrayUnaccessData(vals); wcscpy(sPath, (WCHAR*)V_BSTR(&vx)); if (bWantLDAP) { WCHAR sTemp[LEN_Path]; wsprintf(sTemp, L"LDAP%s", sPath + 2); wcscpy(sPath, sTemp); } hr = S_OK; } else { // This must not be from this forest so we need to use the LDAP://<SID=##> format wsprintf(sPath, L"LDAP://%s/%s", pOptions->srcDomain, (WCHAR*) sDN); hr = S_OK; } pEnum->Release(); VariantInit(&var); return hr; } //--------------------------------------------------------------------------------------------------------- // FillNamingContext : Gets the naming context for both domains if they are Win2k //--------------------------------------------------------------------------------------------------------- BOOL CAcctRepl::FillNamingContext( Options * pOptions //in,out-Options as set by the user ) { // Get the defaultNamingContext for the source domain IADs * pAds = NULL; WCHAR sAdsPath[LEN_Path]; VARIANT var; BOOL rc = TRUE; HRESULT hr; VariantInit(&var); // we should always be able to get the naming context for the target domain, // since the target domain will always be Win2K if ( ! *pOptions->tgtNamingContext ) { wcscpy(sAdsPath, L"LDAP://"); wcscat(sAdsPath, pOptions->srcDomain); wcscat(sAdsPath, L"/rootDSE"); hr = ADsGetObject(sAdsPath, IID_IADs, (void**)&pAds); if ( FAILED(hr)) rc = FALSE; if ( SUCCEEDED (hr) ) { hr = pAds->Get(L"defaultNamingContext",&var); if ( SUCCEEDED( hr) ) wcscpy(pOptions->srcNamingContext, var.bstrVal); VariantClear(&var); } if ( pAds ) { pAds->Release(); pAds = NULL; } wcscpy(sAdsPath, L"LDAP://"); wcscat(sAdsPath, pOptions->tgtDomain); wcscat(sAdsPath, L"/rootDSE"); hr = ADsGetObject(sAdsPath, IID_IADs, (void**)&pAds); if ( FAILED(hr)) rc = FALSE; if ( SUCCEEDED (hr) ) { hr = pAds->Get(L"defaultNamingContext",&var); if ( SUCCEEDED( hr) ) wcscpy(pOptions->tgtNamingContext, var.bstrVal); VariantClear(&var); } if ( pAds ) pAds->Release(); } return rc; } //--------------------------------------------------------------------------------------------------------- // ResetGroupsMembers : This method re-adds the objects in the pMember list to the group account. This // resets the group to its original form. ( as before the migration ). It also // takes into account the MigratedObjects table which in turn allows to add the target // information of newly migrated accounts to the group instead of the source account. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::ResetGroupsMembers( Options * pOptions, //in- Options as set by the user TAcctReplNode * pAcct, //in- Account being copied TNodeListSortable * pMember, //in- Membership list to restore IIManageDBPtr pDb //in- DB object to look up migrated objects. ) { // Add all the members back to the group. IADsGroup * pGroup; HRESULT hr; _bstr_t sMember; _bstr_t sPath; IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk; DWORD groupType = 0; _variant_t var; WCHAR sMemPath[LEN_Path]; WCHAR sPaths[LEN_Path]; DWORD nPathLen = LEN_Path; WCHAR subPath[LEN_Path]; *sMemPath = L'\0'; if ( pAcct->WasReplaced() ) { wcscpy(subPath, pAcct->GetTargetPath()); StuffComputerNameinLdapPath(sPaths, nPathLen, subPath, pOptions, TRUE); hr = ADsGetObject(sPaths, IID_IADsGroup, (void**) &pGroup); err.MsgWrite(0, DCT_READDING_MEMBERS_TO_GROUP_SS, pAcct->GetTargetName(), sPaths); } else { wcscpy(subPath, pAcct->GetSourcePath()); StuffComputerNameinLdapPath(sPaths, nPathLen, subPath, pOptions, FALSE); hr = ADsGetObject(sPaths, IID_IADsGroup, (void**) &pGroup); err.MsgWrite(0, DCT_READDING_MEMBERS_TO_GROUP_SS, pAcct->GetName(), sPaths); } if ( FAILED(hr) ) return hr; hr = pGroup->Get(L"groupType", &var); if ( SUCCEEDED(hr) ) { groupType = var.lVal; } for ( TRecordNode * pNode = (TRecordNode*)pMember->Head(); pNode; pNode = (TRecordNode*)pNode->Next()) { if ( pNode->GetARNode() != pAcct ) continue; pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); sMember = pNode->GetMemberSam(); if ( pAcct->WasReplaced() && sMember.length() && !pNode->IsMemberMoved() ) { hr = pDb->raw_GetAMigratedObject(sMember,pOptions->srcDomain, pOptions->tgtDomain, &pUnk); } else { hr = S_FALSE; // if we don't have the sam name, don't bother trying to look this one up } pUnk->Release(); if ( hr == S_OK ) // Since we have already migrated this object lets use the target objects information. sPath = pVs->get(L"MigratedObjects.TargetAdsPath"); else // Other wise use the source objects path to add. sPath = pNode->GetMember(); if ( groupType & 4 ) { // To add local group members we need to change the LDAP path to the SID type path IADs * pAds = NULL; hr = ADsGetObject((WCHAR*) sPath, IID_IADs, (void**) &pAds); if ( SUCCEEDED(hr) ) hr = pAds->Get(L"objectSid", &var); if ( SUCCEEDED(hr) ) { // Make sure the SID we got was in string format VariantSidToString(var); UStrCpy(sMemPath,L"LDAP://<SID="); UStrCpy(sMemPath + UStrLen(sMemPath),var.bstrVal); UStrCpy(sMemPath + UStrLen(sMemPath),L">"); } } else wcscpy(sMemPath, (WCHAR*) sPath); WCHAR mesg[LEN_Path]; wsprintf(mesg, GET_STRING(DCT_MSG_RESET_GROUP_MEMBERS_SS), pAcct->GetName(), (WCHAR*) sMemPath); Progress(mesg); if ( !pOptions->nochange ) hr = pGroup->Add(sMemPath); else hr = S_OK; // Try again with LDAP path if SID path failed. if ( FAILED(hr) && ( groupType & 4 ) ) hr = pGroup->Add((WCHAR*) sPath); if ( FAILED(hr) ) { hr = BetterHR(hr); err.SysMsgWrite(ErrE, hr, DCT_MSG_FAILED_TO_READD_TO_GROUP_SSD,(WCHAR*)sPath, pAcct->GetName(),hr); Mark(L"errors", pAcct->GetType()); } else { err.MsgWrite(0, DCT_MSG_READD_MEMBER_TO_GROUP_SS, (WCHAR*) sPath, pAcct->GetName()); } } pGroup->Release(); return hr; } BOOL CAcctRepl::TruncateSam(WCHAR * tgtname, TAcctReplNode * acct, Options * options, TNodeListSortable * acctList) { // SInce we can not copy accounts with lenght more than 20 characters we will truncate // it and then add sequence numbers (0-99) in case there are duplicates. // we are also going to take into account the global prefix and suffix length while truncating // the account. BOOL ret = TRUE; int lenPref = wcslen(options->globalPrefix); int lenSuff = wcslen(options->globalSuffix); int lenOrig = wcslen(tgtname); int maxLen = 20; if ( !_wcsicmp(acct->GetType(), L"group") ) maxLen = 255; else maxLen = 20; int lenTruncate = maxLen - ( 2 + lenPref + lenSuff ); // we can not truncate accounts if prefix and suffix are > 20 characters themselves if ( lenPref + lenSuff > (maxLen - 2) ) return FALSE; if ( lenPref + lenSuff + lenOrig > maxLen ) { WCHAR sTemp[LEN_Path]; wcsncpy(sTemp, tgtname, lenTruncate); sTemp[lenTruncate] = 0; int cnt = 0; bool cont = true; while (cont) { wsprintf(tgtname, L"%s%02d", sTemp, cnt); if ( CheckifAccountExists(options, tgtname) || acctList->Find(&TNodeFindByNameOnly, tgtname)) cnt++; else { cont = false; // Account is truncated so log a message. err.MsgWrite(0, DCT_MSG_TRUNCATED_ACCOUNT_NAME_SS, acct->GetName(), tgtname); } if (cnt > 99) { // We only have 2 digits for numbers so any more than this we can not handle. err.MsgWrite(ErrW,DCT_MSG_FAILED_TO_TRUNCATE_S, acct->GetTargetName()); Mark(L"warnings",acct->GetType()); UStrCpy(tgtname, acct->GetTargetName()); ret = FALSE; break; } } } return ret; } //--------------------------------------------------------------------------------------------------------- // FillNodeFromPath : We will take the LDAP path that is provided to us and from that fill // in all the information that is required in AcctRepl node. //--------------------------------------------------------------------------------------------------------- HRESULT CAcctRepl::FillNodeFromPath( TAcctReplNode *pAcct, // in-Account node to fillin Options * pOptions, //in - Options set by the users TNodeListSortable * acctList ) { HRESULT hr = S_OK; IADs * pAds = NULL; VARIANT var; BSTR sText; WCHAR text[LEN_Account]; BOOL bBuiltIn = FALSE; WCHAR sSam[LEN_Path]; // DWORD dwLen = 0; VariantInit(&var); FillNamingContext(pOptions); hr = ADsGetObject(const_cast<WCHAR*>(pAcct->GetSourcePath()), IID_IADs, (void**)&pAds); if ( SUCCEEDED(hr) ) { // Check if this is a BuiltIn account. hr = pAds->Get(L"isCriticalSystemObject", &var); if ( SUCCEEDED(hr) ) { bBuiltIn = V_BOOL(&var) == -1 ? TRUE : FALSE; } else { // This must be a NT4 account. We need to get the SID and check if // it's RID belongs to the BUILTIN rids. hr = pAds->Get(L"objectSID", &var); if ( SUCCEEDED(hr) ) { SAFEARRAY * pArray = V_ARRAY(&var); PSID pSid; hr = SafeArrayAccessData(pArray, (void**)&pSid); if ( SUCCEEDED(hr) ) { DWORD * dwCnt = (DWORD *) GetSidSubAuthorityCount(pSid); DWORD * rid = (DWORD *) GetSidSubAuthority(pSid, (*dwCnt)-1); bBuiltIn = BuiltinRid(*rid); if ( bBuiltIn ) { hr = pAds->get_Name(&sText); if (SUCCEEDED(hr)) { bBuiltIn = CheckBuiltInWithNTApi(pSid, (WCHAR*) sText, pOptions); } SysFreeString(sText); sText = NULL; } hr = SafeArrayUnaccessData(pArray); } VariantClear(&var); } } hr = pAds->get_Class(&sText); if ( SUCCEEDED(hr) ) { pAcct->SetType((WCHAR*) sText); } // check if it is a group. If it is then get the group type and store it in the node. if ( _wcsicmp((WCHAR*) sText, L"group") == 0 ) { hr = pAds->Get(L"groupType", &var); if ( SUCCEEDED(hr) ) { pAcct->SetGroupType((long) V_INT(&var)); } } SysFreeString(sText); sText = NULL; hr = pAds->get_Name(&sText); if (SUCCEEDED(hr)) { safecopy(text,(WCHAR*)sText); pAcct->SetTargetName(text); pAcct->SetName(text); } //if the name includes a '/', then we have to get the escaped version from the path //due to a bug in W2K. if (wcschr((WCHAR*)sText, L'/')) { _bstr_t sCNName = GetCNFromPath(_bstr_t(pAcct->GetSourcePath())); if (sCNName.length() != 0) { pAcct->SetTargetName((WCHAR*)sCNName); pAcct->SetName((WCHAR*)sCNName); } } hr = pAds->Get(L"sAMAccountName", &var); if ( SUCCEEDED(hr)) { // Add the prefix or the suffix as it is needed wcscpy(sSam, (WCHAR*)V_BSTR(&var)); pAcct->SetSourceSam(sSam); pAcct->SetTargetSam(sSam); AddPrefixSuffix(pAcct, pOptions); VariantClear(&var); } else { pAcct->SetSourceSam((WCHAR*) sText); TruncateSam((WCHAR*)sText, pAcct, pOptions, acctList); pAcct->SetTargetSam((WCHAR*) sText); AddPrefixSuffix(pAcct, pOptions); } SysFreeString(sText); sText = NULL; // Don't know why it is different for WinNT to ADSI if ( pOptions->srcDomainVer > 4 ) hr = pAds->Get(L"profilePath", &var); else hr = pAds->Get(L"profile", &var); if ( SUCCEEDED(hr)) { pAcct->SetSourceProfile((WCHAR*) V_BSTR(&var)); VariantClear(&var); } if ( bBuiltIn ) { // Builtin account so we are going to ignore this account. ( by setting the operation mask to 0 ) err.MsgWrite(ErrW, DCT_MSG_IGNORING_BUILTIN_S, pAcct->GetSourceSam()); Mark(L"warnings", pAcct->GetType()); pAcct->operations = 0; } } else { err.SysMsgWrite(ErrE, hr, DCT_MSG_OBJECT_NOT_FOUND_SSD, pAcct->GetSourcePath(), opt.srcDomain, hr); Mark(L"errors", pAcct->GetType()); } if ( pAds ) pAds->Release(); return hr; } //--------------------------------------------------------------------------------------------------------- // GetNt4Type : Given the account name and the domain finds the type of account. //--------------------------------------------------------------------------------------------------------- BOOL CAcctRepl::GetNt4Type(const WCHAR *sComp, const WCHAR *sAcct, WCHAR *sType) { DWORD rc = 0; USER_INFO_0 * buf; BOOL ret = FALSE; USER_INFO_1 * specialBuf; if ( (rc = NetUserGetInfo(sComp, sAcct, 1, (LPBYTE *) &specialBuf)) == NERR_Success ) { if ( specialBuf->usri1_flags & UF_WORKSTATION_TRUST_ACCOUNT || specialBuf->usri1_flags & UF_SERVER_TRUST_ACCOUNT || specialBuf->usri1_flags & UF_INTERDOMAIN_TRUST_ACCOUNT ) { // this is not really a user (maybe a computer or a trust account) So we will ignore it. ret = FALSE; } else { wcscpy(sType, L"user"); ret = TRUE; } NetApiBufferFree(specialBuf); } else if ( (rc = NetGroupGetInfo(sComp, sAcct, 0, (LPBYTE *) &buf)) == NERR_Success ) { wcscpy(sType, L"group"); NetApiBufferFree(buf); ret = TRUE; } else if ( (rc = NetLocalGroupGetInfo(sComp, sAcct, 0, (LPBYTE *) &buf)) == NERR_Success ) { wcscpy(sType, L"group"); NetApiBufferFree(buf); ret = TRUE; } return ret; } bool CAcctRepl::GetClosestDC(Options * pOpt, long flags) { DOMAIN_CONTROLLER_INFO * pSrcDomCtrlInfo = NULL; DWORD rc = 0; DSGETDCNAME DsGetDcName = NULL; HMODULE hPro = LoadLibrary(L"NetApi32.dll"); if ( hPro ) DsGetDcName = (DSGETDCNAME)GetProcAddress(hPro, "DsGetDcNameW"); else { err.SysMsgWrite(ErrE, rc, DCT_MSG_LOAD_LIBRARY_FAILED_SD, L"NetApi32.dll"); Mark(L"errors", L"generic"); } if (DsGetDcName) { rc = DsGetDcName( NULL ,// LPCTSTR ComputerName ? pOpt->srcDomain ,// LPCTSTR DomainName NULL ,// GUID *DomainGuid ? NULL ,// LPCTSTR SiteName ? flags ,// ULONG Flags ? &pSrcDomCtrlInfo // PDOMAIN_CONTROLLER_INFO *DomainControllerInfo ); if ( rc ) { err.SysMsgWrite(ErrE, rc, DCT_MSG_DOMAIN_NOT_FOUND_S, pOpt->srcDomain); Mark(L"errors", L"generic"); } else { wcscpy(pOpt->srcComp, pSrcDomCtrlInfo->DomainControllerName); } NetApiBufferFree( pSrcDomCtrlInfo ); rc = DsGetDcName( NULL ,// LPCTSTR ComputerName ? pOpt->tgtDomain ,// LPCTSTR DomainName NULL ,// GUID *DomainGuid ? NULL ,// LPCTSTR SiteName ? flags ,// ULONG Flags ? &pSrcDomCtrlInfo // PDOMAIN_CONTROLLER_INFO *DomainControllerInfo ); if ( rc ) { err.SysMsgWrite(ErrE, rc, DCT_MSG_DOMAIN_NOT_FOUND_S, pOpt->tgtDomain); Mark(L"errors", L"generic"); } else { wcscpy(pOpt->tgtComp, pSrcDomCtrlInfo->DomainControllerName); } NetApiBufferFree( pSrcDomCtrlInfo ); } if ( hPro ) FreeLibrary(hPro); return ( rc == 0 ); } //------------------------------------------------------------------------------ // UndoCopy: This function Undoes the copying of the accounts. It currently // does the following tasks. Add to it if needed. // 1. Deletes the target account if Inter-Forest, but replace source acocunts // in local groups for accounts migrated by ADMT. // 2. Moves the object back to its original position if Intra-Forest. // 3. Calls the Undo function on the Extensions //------------------------------------------------------------------------------ int CAcctRepl::UndoCopy( Options * options, // in -options TNodeListSortable * acctlist, // in -list of accounts to process ProgressFn * progress, // in -window to write progress messages to TError & error, // in -window to write error messages to IStatusObj * pStatus, // in -status object to support cancellation void WindowUpdate (void ) // in - window update function ) { BOOL bSameForest = FALSE; // sort the account list by Source Type\Source Name acctlist->CompareSet(&TNodeCompareAccountType); acctlist->SortedToScrambledTree(); acctlist->Sort(&TNodeCompareAccountType); acctlist->Balance(); long rc; // Since these are Win2k domains we need to process it with Win2k code. MCSDCTWORKEROBJECTSLib::IAccessCheckerPtr pAccess(__uuidof(MCSDCTWORKEROBJECTSLib::AccessChecker)); // First of all we need to find out if they are in the same forest. HRESULT hr = S_OK; if ( BothWin2K(options) ) { hr = pAccess->raw_IsInSameForest(options->srcDomainDns,options->tgtDomainDns, (long*)&bSameForest); } if ( SUCCEEDED(hr) ) { if ( !bSameForest ) // Different forest we need to delete the one that we had previously created. rc = DeleteObject(options, acctlist, progress, pStatus); else { // Within a forest we can move the object around. TNodeListSortable * pList = NULL; hr = MakeAcctListFromMigratedObjects(options, options->lUndoActionID, pList,TRUE); if ( SUCCEEDED(hr) && pList ) { if ( pList->IsTree() ) pList->ToSorted(); pList->CompareSet(&TNodeCompareAccountType); pList->UnsortedToTree(); pList->Balance(); rc = MoveObj2K(options, pList, progress, pStatus); } else { err.SysMsgWrite(ErrE,hr,DCT_MSG_FAILED_TO_LOAD_UNDO_LIST_D,hr); Mark(L"errors", L"generic"); } } if ( progress ) progress(L""); } return rc; } int CAcctRepl::DeleteObject( Options * pOptions, //in -Options that we recieved from the user TNodeListSortable * acctlist, //in -AcctList of accounts to be copied. ProgressFn * progress, //in -Progress Function to display messages IStatusObj * pStatus // in -status object to support cancellation ) { TNodeListSortable * pList = NULL; TNodeTreeEnum tenum; TAcctReplNode * acct = NULL, * tNext = NULL; HRESULT hr = S_OK; DWORD rc = 0; WCHAR mesg[LEN_Path]; IUnknown * pUnk = NULL; IVarSetPtr pVs(__uuidof(VarSet)); _variant_t var; hr = MakeAcctListFromMigratedObjects(pOptions, pOptions->lUndoActionID, pList,FALSE); if ( SUCCEEDED(hr) && pList ) { if ( pList->IsTree() ) pList->ToSorted(); pList->SortedToScrambledTree(); pList->Sort(&TNodeCompareAccountSam); pList->Balance(); /* restore source account of account being deleted in local groups prior to deleting the target account */ wcscpy(mesg, GET_STRING(IDS_LG_MEMBER_FIXUP_UNDO)); if ( progress ) progress(mesg); ReplaceSourceInLocalGroup(pList, pOptions, pStatus); for ( acct = (TAcctReplNode *)tenum.OpenFirst(pList) ; acct ; acct = tNext) { // Call the extensions for undo wsprintf(mesg, GET_STRING(IDS_RUNNING_EXTS_S), acct->GetTargetPath()); if ( progress ) progress(mesg); Mark(L"processed",acct->GetType()); // Close the log file if it is open WCHAR filename[LEN_Path]; err.LogClose(); if (m_pExt) m_pExt->Process(acct, pOptions->tgtDomain, pOptions,FALSE); safecopy (filename,opt.logFile); err.LogOpen(filename,1 /*append*/ ); if ( acct->GetStatus() & AR_Status_Created ) { wsprintf(mesg, GET_STRING(IDS_DELETING_S), acct->GetTargetPath()); if ( progress ) progress(mesg); if ( ! _wcsicmp(acct->GetType(),L"computer") ) { // do not delete the computer accounts, because if we do, // the computer will be immediately locked out of the domain tNext = (TAcctReplNode *) tenum.Next(); pList->Remove(acct); delete acct; continue; } // Now delete the account. if ( !_wcsicmp(acct->GetType(), L"user") ) rc = NetUserDel(pOptions->tgtComp, acct->GetTargetSam()); else { // Must be a group try both local and global. rc = NetGroupDel(pOptions->tgtComp, acct->GetTargetSam()); if ( rc ) rc = NetLocalGroupDel(pOptions->tgtComp, acct->GetTargetSam()); } // Log a message if ( !rc ) { err.MsgWrite(0, DCT_MSG_ACCOUNT_DELETED_S, (WCHAR*)acct->GetTargetPath()); Mark(L"created",acct->GetType()); } else { err.SysMsgWrite(ErrE, rc, DCT_MSG_DELETE_ACCOUNT_FAILED_SD, (WCHAR*)acct->GetTargetPath(), rc); Mark(L"errors", acct->GetType()); } } else { err.MsgWrite(ErrW, DCT_MSG_NO_DELETE_WAS_REPLACED_S, acct->GetTargetPath()); Mark(L"warnings",acct->GetType()); } tNext = (TAcctReplNode *) tenum.Next(); pList->Remove(acct); delete acct; } tenum.Close(); delete pList; } if ( pUnk ) pUnk->Release(); tenum.Close(); return rc; } HRESULT CAcctRepl::MakeAcctListFromMigratedObjects(Options * pOptions, long lUndoActionID, TNodeListSortable *& pAcctList,BOOL bReverseDomains) { IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; HRESULT hr = S_OK; _bstr_t sSName, sTName, sSSam, sTSam, sType, sSUPN, sSDSid; long lSRid, lTRid; long lStat; WCHAR sActionInfo[LEN_Path]; hr = pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); if ( SUCCEEDED(hr) ) hr = pOptions->pDb->raw_GetMigratedObjects( pOptions->lUndoActionID, &pUnk); if ( SUCCEEDED(hr) ) { pAcctList = new TNodeListSortable(); if (!pAcctList) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); long lCnt = pVs->get("MigratedObjects"); for ( long l = 0; l < lCnt; l++) { wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_SourceAdsPath)); sSName = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_TargetAdsPath)); sTName = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_status)); lStat = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_TargetSamName)); sTSam = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_SourceSamName)); sSSam = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_Type)); sType = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_SourceDomainSid)); sSDSid = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_SourceRid)); lSRid = pVs->get(sActionInfo); wsprintf(sActionInfo, L"MigratedObjects.%d.%s", l, GET_STRING(DB_TargetRid)); lTRid = pVs->get(sActionInfo); TAcctReplNode * pNode = new TAcctReplNode(); if (!pNode) return HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY); if ( bReverseDomains ) { pNode->SetSourcePath((WCHAR*) sTName); pNode->SetTargetPath((WCHAR*) sSName); pNode->SetSourceSam((WCHAR*) sTSam); pNode->SetTargetSam((WCHAR*) sSSam); //if we are moving the acounts back during an undo, get the source UPN for this account GetAccountUPN(pOptions, sSName, sSUPN); pNode->SetSourceUPN((WCHAR*) sSUPN); } else { pNode->SetSourcePath((WCHAR*) sSName); pNode->SetTargetPath((WCHAR*) sTName); pNode->SetSourceSam((WCHAR*) sSSam); pNode->SetTargetSam((WCHAR*) sTSam); } pNode->SetType((WCHAR*) sType); pNode->SetStatus(lStat); pNode->SetSourceSid(SidFromString((WCHAR*)sSDSid)); pNode->SetSourceRid(lSRid); pNode->SetTargetRid(lTRid); pAcctList->InsertBottom((TNode*) pNode); } } return hr; } void CAcctRepl::AddPrefixSuffix( TAcctReplNode * pNode, Options * pOptions ) { DWORD dwLen = 0; WCHAR ss[LEN_Path]; WCHAR tgt[LEN_Path]; WCHAR pref[LEN_Path]; WCHAR suf[LEN_Path]; WCHAR sTemp[LEN_Path]; WCHAR sTargetSamName[LEN_Path]; wcscpy(sTargetSamName, pNode->GetTargetSam()); if ( wcslen(pOptions->globalPrefix) ) { int truncate = 255; if ( !_wcsicmp(pNode->GetType(), L"user") ) { truncate = 20 - wcslen(pOptions->globalPrefix); } else if ( !_wcsicmp(pNode->GetType(), L"computer") ) { truncate = 16 - wcslen(pOptions->globalPrefix); } // make sure we truncate the account so we dont get account names that are very large. sTargetSamName[truncate] = L'\0'; // Prefix is specified so lets just add that. wsprintf(sTemp, L"%s%s", pOptions->globalPrefix, sTargetSamName); wcscpy(tgt, pNode->GetTargetName()); for ( DWORD z = 0; z < wcslen(tgt); z++ ) { if ( tgt[z] == L'=' ) break; } if ( z < wcslen(tgt) ) { // Get the prefix part ex.CN= wcsncpy(pref, tgt, z+1); pref[z+1] = 0; wcscpy(suf, tgt+z+1); } else { wcscpy(pref,L""); wcscpy(suf,tgt); } // Remove the \ if it is escaping the space if ( suf[0] == L'\\' && suf[1] == L' ' ) { WCHAR sTemp[LEN_Path]; wcscpy(sTemp, suf+1); wcscpy(suf, sTemp); } // Build the target string with the Prefix wsprintf(tgt, L"%s%s%s", pref, pOptions->globalPrefix, suf); } else if ( wcslen(pOptions->globalSuffix) ) { int truncate = 255; if ( !_wcsicmp(pNode->GetType(), L"user") ) { truncate = 20 - wcslen(pOptions->globalSuffix); } else if ( !_wcsicmp(pNode->GetType(), L"computer") ) { truncate = 16 - wcslen(pOptions->globalSuffix); } // make sure we truncate the account so we dont get account names that are very large. sTargetSamName[truncate] = L'\0'; // Suffix is specified. if ( !_wcsicmp( pNode->GetType(), L"computer") ) { // We need to make sure we take into account the $ sign in computer sam name. dwLen = wcslen(sTargetSamName); // Get rid of the $ sign wcscpy(ss, sTargetSamName); if ( ss[dwLen - 1] == L'$' ) { ss[dwLen - 1] = L'\0'; } wsprintf(sTemp, L"%s%s$", ss, pOptions->globalSuffix); } else { //Simply add the suffix to all other accounts. wsprintf(sTemp, L"%s%s", sTargetSamName, pOptions->globalSuffix); } // Remove the trailing space \ escape sequence wcscpy(tgt, pNode->GetName()); for ( int i = wcslen(tgt)-1; i >= 0; i-- ) { if ( tgt[i] != L' ' ) break; } if ( tgt[i] == L'\\' ) { WCHAR * pTemp = &tgt[i]; *pTemp = 0; wcscpy(pref, tgt); wcscpy(suf, pTemp+1); } else { wcscpy(pref, tgt); wcscpy(suf, L""); } wsprintf(tgt, L"%s%s%s", pref, suf, pOptions->globalSuffix); } else { wcscpy(sTemp, pNode->GetTargetSam()); wcscpy(tgt, pNode->GetName()); } pNode->SetTargetName(tgt); pNode->SetTargetSam(sTemp); } void CAcctRepl::BuildTargetPath(WCHAR const * sCN, WCHAR const * tgtOU, WCHAR * stgtPath) { WCHAR pTemp[LEN_Path]; wcscpy(pTemp, tgtOU); *stgtPath = L'\0'; // Make sure it is a LDAP path. if ( !wcsncmp(L"LDAP://", pTemp, 7) ) { // Get the LDAP://<DOMAIN>/ part. WCHAR * p = wcschr(pTemp + 7, L'/'); // Build the string. if (p) { *p = L'\0'; wsprintf(stgtPath, L"%s/%s,%s", pTemp, sCN, p+1); } } } HRESULT CAcctRepl::BetterHR(HRESULT hr) { HRESULT temp = hr; if ( hr == 0x8007001f || hr == 0x80071392 ) temp = HRESULT_FROM_WIN32(NERR_UserExists); else if ( hr == 0x80072030 || hr == 0x80070534 ) temp = HRESULT_FROM_WIN32(NERR_UserNotFound); return temp; } HRESULT CAcctRepl::GetThePrimaryGroupMembers(Options * pOptions, WCHAR * sGroupSam, IEnumVARIANT *& pVar) { // This function looks for accounts that have the primaryGroupID set to the rid of the // group in the argument. BSTR pCols = L"aDSPath"; DWORD rid = 0; HRESULT hr; if ( GetRidForGroup(pOptions, sGroupSam, rid) ) hr = QueryPrimaryGroupMembers(pCols, pOptions, rid, pVar); else hr = HRESULT_FROM_WIN32(GetLastError()); return hr; } HRESULT CAcctRepl::AddPrimaryGroupMembers(Options * pOptions, SAFEARRAY * multiVals, WCHAR * sGroupSam) { // This function will get the accounts with primarygroupID = Group's RID and // adds the DN for these Accounts to the safearry in the argument list. BSTR pCols = L"distinguishedName"; DWORD rid = 0, dwFetch = 0; IEnumVARIANT * pEnum = NULL; HRESULT hr = S_OK; _variant_t var; _variant_t * var2; SAFEARRAYBOUND bd; long lb, ub; _variant_t * pData = NULL; SafeArrayGetLBound(multiVals, 1, &lb); SafeArrayGetUBound(multiVals, 1, &ub); bd.lLbound = lb; bd.cElements = ub - lb + 1; if ( GetRidForGroup(pOptions, sGroupSam, rid) ) { hr = QueryPrimaryGroupMembers(pCols, pOptions, rid, pEnum); if ( SUCCEEDED(hr) ) { while ( pEnum->Next(1, &var, &dwFetch) == S_OK ) { if (var.vt == (VT_ARRAY|VT_VARIANT)) { SAFEARRAY * pArray = var.parray; hr = SafeArrayAccessData(pArray, (void **)&var2); if ( SUCCEEDED(hr) ) { // Add one more element to the array. bd.cElements++; hr = SafeArrayRedim(multiVals, &bd); } // Fill in the new element with the information in the variant. if ( SUCCEEDED(hr) ) hr = SafeArrayAccessData(multiVals, (void HUGEP**) &pData); if ( SUCCEEDED(hr) ) { pData[++ub] = *var2; SafeArrayUnaccessData(multiVals); } if ( SUCCEEDED(hr) ) SafeArrayUnaccessData(pArray); VariantInit(&var); } else // Something really bad happened we should not get here in normal cond hr = E_FAIL; } } } else hr = HRESULT_FROM_WIN32(GetLastError()); if ( pEnum ) pEnum->Release(); return hr; } bool CAcctRepl::GetRidForGroup(Options * pOptions, WCHAR * sGroupSam, DWORD& rid) { // We lookup the Account name and get its SID. Once we have the SID we extract the RID and return that SID_NAME_USE use; PSID sid = (PSID) new BYTE[LEN_Path]; WCHAR dom[LEN_Path]; DWORD cbsid = LEN_Path, cbDom = LEN_Path; bool ret = true; if (!sid) return false; if ( LookupAccountName(pOptions->srcComp, sGroupSam, sid, &cbsid, dom, &cbDom, &use) ) { // we now have the sid so get its sub authority count. DWORD * pSubCnt = (DWORD*)GetSidSubAuthorityCount(sid); DWORD * pRid = GetSidSubAuthority(sid, (*pSubCnt) -1 ); rid = *pRid; } else ret = false; delete [] sid; return ret; } HRESULT CAcctRepl::QueryPrimaryGroupMembers(BSTR cols, Options * pOptions, DWORD rid, IEnumVARIANT*& pEnum) { WCHAR sQuery[LEN_Path]; WCHAR sCont[LEN_Path]; SAFEARRAY * colNames; SAFEARRAYBOUND bd = { 1, 0 }; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); BSTR * pData; HRESULT hr; wsprintf(sQuery, L"(primaryGroupID=%d)", rid); wsprintf(sCont, L"LDAP://%s", pOptions->srcDomainDns); colNames = SafeArrayCreate(VT_BSTR, 1, &bd); hr = SafeArrayAccessData(colNames, (void**)&pData); if ( SUCCEEDED(hr) ) { pData[0] = SysAllocString(cols); hr = SafeArrayUnaccessData(colNames); } if ( SUCCEEDED(hr) ) hr = pQuery->SetQuery(sCont, pOptions->srcDomain, sQuery, ADS_SCOPE_SUBTREE, FALSE); if ( SUCCEEDED(hr) ) hr = pQuery->SetColumns(colNames); if ( SUCCEEDED(hr) ) hr = pQuery->Execute(&pEnum); return hr; } HRESULT CAcctRepl::GetTargetGroupType(WCHAR *sPath, DWORD &grpType) { // Here we lookup the group type for the object denoted by the path IADsGroup * pGrp = NULL; HRESULT hr = S_OK; _variant_t var; hr = ADsGetObject(sPath, IID_IADsGroup, (void**)&pGrp); if (SUCCEEDED(hr)) hr = pGrp->Get(L"groupType", &var); if (SUCCEEDED(hr)) { grpType = var.lVal; } if ( pGrp ) pGrp->Release(); return hr; } // CheckBuiltInWithNTApi - This function makes sure that the account really is a // builtin account with the NT APIs. In case of NT4 accounts // there are certain special accounts that the WinNT provider // gives us a SID that is the SYSTEM sid ( example Service ). // To make sure that this account exists we use LookupAccountName // with domain qualified account name to make sure that the account // is really builtin or not. BOOL CAcctRepl::CheckBuiltInWithNTApi(PSID pSid, WCHAR *sSam, Options * pOptions) { BOOL retVal = TRUE; WCHAR sName[LEN_Path]; SID_NAME_USE use; DWORD cbDomain = LEN_Path, cbSid = LEN_Path; PSID pAccSid = new BYTE[LEN_Path]; WCHAR sDomain[LEN_Path]; if (!pAccSid) return TRUE; wsprintf(sName, L"%s\\%s", pOptions->srcDomain, sSam); if ( LookupAccountName(pOptions->srcComp, sName, pAccSid, &cbSid, sDomain, &cbDomain, &use) ) { // We found the account now we need to check the sid with the sid passed in and if they // are the same then this is a builtin account otherwise its not. retVal = EqualSid(pSid, pAccSid); } delete [] pAccSid; return retVal; } BOOL CAcctRepl::StuffComputerNameinLdapPath(WCHAR *sAdsPath, DWORD nPathLen, WCHAR *sSubPath, Options *pOptions, BOOL bTarget) { BOOL ret = FALSE; _bstr_t sTemp; if ((!sAdsPath) || (!sSubPath)) return FALSE; WCHAR * pTemp = wcschr(sSubPath + 7, L'/'); // Filter out the 'LDAP://<domain-name>/' from the path if ( pTemp ) { sTemp = L"LDAP://"; if ( bTarget ) sTemp += (pOptions->tgtComp + 2); else sTemp += (pOptions->srcComp + 2); sTemp += L"/"; sTemp += (pTemp + 1); wcsncpy(sAdsPath, sTemp, nPathLen-1); // wsprintf(sAdsPath, L"LDAP://%s/%s", pOptions->tgtComp + 2, pTemp + 1); // LDAP path with the computer name. // wsprintf(sAdsPath, L"LDAP://%s/%s", pOptions->srcComp + 2, pTemp + 1); // LDAP path with the computer name. ret = TRUE; } return ret; } BOOL CAcctRepl::DoesTargetObjectAlreadyExist(TAcctReplNode * pAcct, Options * pOptions) { // Check to see if the target object already exists WCHAR sPath[LEN_Path]; DWORD nPathLen = LEN_Path; BOOL bObjectExists = FALSE; WCHAR * pRelativeTgtOUPath; WCHAR path[LEN_Path] = L""; IADs * pAdsTemp = NULL; WCHAR sSrcTemp[LEN_Path]; WCHAR * pTemp = NULL; // First, check the target path, to see if an object with the same CN already exists if ( ! pOptions->bUndo ) { MakeFullyQualifiedAdsPath(sPath, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); pRelativeTgtOUPath = wcschr(sPath + UStrLen(L"LDAP://") + 2,L'/'); } else { UStrCpy(sPath,pAcct->GetTargetPath()); pRelativeTgtOUPath = wcschr(sPath + UStrLen(L"LDAP://") + 2,L'/'); if (pRelativeTgtOUPath) { // get the target CN name pTemp = pRelativeTgtOUPath + 1; (*pRelativeTgtOUPath) = 0; do { pRelativeTgtOUPath = wcschr(pRelativeTgtOUPath+1,L','); } while ((pRelativeTgtOUPath) && ( *(pRelativeTgtOUPath-1) == L'\\' )); } } if ( pRelativeTgtOUPath ) { *pRelativeTgtOUPath = 0; if ( pOptions->bUndo && pTemp ) { pAcct->SetTargetName(pTemp); // get the source CN name for the account UStrCpy(sSrcTemp,pAcct->GetSourcePath()); WCHAR * start = wcschr(sSrcTemp + UStrLen(L"LDAP://")+2,L'/'); *start = 0; start++; WCHAR * comma = start-1; do { comma = wcschr(comma+1,L','); } while ( *(comma-1) == L'\\' ); *comma = 0; pAcct->SetName(start); } swprintf(path,L"%ls/%ls,%ls",sPath,pAcct->GetTargetName(),pRelativeTgtOUPath+1); if ( pOptions->bUndo ) { UStrCpy(pOptions->tgtOUPath,pRelativeTgtOUPath+1); } } else { MakeFullyQualifiedAdsPath(path, nPathLen, pOptions->tgtOUPath, pOptions->tgtDomain, pOptions->tgtNamingContext); } HRESULT hr = ADsGetObject(path,IID_IADs,(void**)&pAdsTemp); if ( SUCCEEDED(hr) ) { pAdsTemp->Release(); bObjectExists = TRUE; } // Also, check the SAM name to see if it exists on the target hr = LookupAccountInTarget(pOptions,const_cast<WCHAR*>(pAcct->GetTargetSam()),sPath); if ( SUCCEEDED(hr) ) { bObjectExists = TRUE; } else { hr = 0; } return bObjectExists; } //----------------------------------------------------------------------------------------- // UpdateMemberToGroups This function updates the groups that the accounts are members of. // adding this member to all the groups that have been migrated. //----------------------------------------------------------------------------------------- HRESULT CAcctRepl::UpdateMemberToGroups(TNodeListSortable * acctList, Options *pOptions, BOOL bGrpsOnly) { TNodeListSortable newList; WCHAR mesg[LEN_Path]; HRESULT hr = S_OK; BSTR sTargetName = NULL; // Expand the containers and the membership wcscpy(mesg, GET_STRING(IDS_EXPANDING_MEMBERSHIP)); Progress(mesg); // Expand the list to include all the groups that the accounts in this list are members of newList.CompareSet(&TNodeCompareAccountType); if ( !newList.IsTree() ) newList.SortedToTree(); // Call expand membership function to get a list of all groups that contain as members objects in our account list if ( ExpandMembership( acctList, pOptions, &newList, Progress, bGrpsOnly) ) { if ( newList.IsTree() ) newList.ToSorted(); TNodeListEnum e; TAcctReplNode * pNode = NULL; for ( pNode = (TAcctReplNode *)e.OpenFirst((TNodeList*)&newList); pNode; pNode = (TAcctReplNode*)e.Next()) { // go through each of the account nodes in the newly added account list. Since // we have special fields that contain the member information we can use that // Find the account node that corresponds to the member information in this node Lookup p; p.pName = (WCHAR*) pNode->sMemberName; p.pType = (WCHAR*) pNode->sMemberType; TAcctReplNode * pNodeMember = (TAcctReplNode *) acctList->Find(&TNodeFindAccountName, &p); bool bIgnored = false; if (pNodeMember) bIgnored = ((!pNodeMember->WasReplaced()) && (pNodeMember->GetStatus() & AR_Status_AlreadyExisted)); // If we found one ( we should always find one. ) and the member was successfuly // added or replaced the member information. if ( pNodeMember && ((pNodeMember->WasCreated() || pNodeMember->WasReplaced()) || bIgnored)) { // Get the Group pointer and add the target object to the member. IADsGroup * pGroup = NULL; hr = ADsGetObject(const_cast<WCHAR*>(pNode->GetTargetPath()), IID_IADsGroup, (void**)&pGroup); if ( SUCCEEDED(hr) ) { pGroup->get_Name(&sTargetName); if ( pOptions->nochange ) { VARIANT_BOOL bIsMem; hr = pGroup->IsMember(const_cast<WCHAR*>(pNodeMember->GetTargetPath()), &bIsMem); if ( SUCCEEDED(hr) ) { if ( bIsMem ) hr = HRESULT_FROM_WIN32(NERR_UserExists); } } else { //add the new account to the group hr = pGroup->Add(const_cast<WCHAR*>(pNodeMember->GetTargetPath())); /* if the new account's source account is also in the group, remove it */ IIManageDBPtr pDB = pOptions->pDb; IVarSetPtr pVsTemp(__uuidof(VarSet)); IUnknown * pUnk; //is this account in the migrated objects table pVsTemp->QueryInterface(IID_IUnknown, (void**) &pUnk); HRESULT hrFind = pDB->raw_GetAMigratedObject(_bstr_t(pNodeMember->GetSourceSam()), pOptions->srcDomain, pOptions->tgtDomain, &pUnk); pUnk->Release(); if (hrFind == S_OK) { //remove the source account from the group RemoveSourceAccountFromGroup(pGroup, pVsTemp, pOptions); } } } if ( SUCCEEDED(hr) ) err.MsgWrite(0, DCT_MSG_ADDED_TO_GROUP_SS, pNodeMember->GetTargetPath(), (WCHAR*)sTargetName); else { _bstr_t sGrpName = sTargetName; if (sTargetName == NULL) sGrpName = pNode->GetTargetPath(); hr = BetterHR(hr); if ( HRESULT_CODE(hr) == NERR_UserExists ) { err.MsgWrite(0,DCT_MSG_USER_IN_GROUP_SS,pNodeMember->GetTargetPath(), (WCHAR*)sGrpName); } else if ( HRESULT_CODE(hr) == NERR_UserNotFound ) { err.SysMsgWrite(0, hr, DCT_MSG_MEMBER_NONEXIST_SS, pNodeMember->GetTargetPath(), (WCHAR*)sGrpName, hr); } else { // message for the generic failure case err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_ADD_TO_GROUP_SSD, pNodeMember->GetTargetPath(), (WCHAR*)sGrpName, hr); Mark(L"warnings", pNodeMember->GetType()); } } } } // Clean up the list. TAcctReplNode * pNext = NULL; for ( pNode = (TAcctReplNode *)e.OpenFirst(&newList); pNode; pNode = pNext) { pNext = (TAcctReplNode *)e.Next(); newList.Remove(pNode); delete pNode; } } return hr; } // This function enumerates all members of the Universal/Global groups and for each member // checks if that member has been migrated. If it is then it removes the source member and // adds the target member. HRESULT CAcctRepl::ResetMembersForUnivGlobGroups(Options *pOptions, TAcctReplNode *pAcct) { IADsGroup * pGroup; HRESULT hr; _bstr_t sMember; _bstr_t sTgtMem; WCHAR sSrcPath[LEN_Path]; WCHAR sTgtPath[LEN_Path]; DWORD nPathLen = LEN_Path; IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk; IADsMembers * pMembers = NULL; IEnumVARIANT * pEnum = NULL; _variant_t var; if ( pAcct->WasReplaced() ) { WCHAR subPath[LEN_Path]; WCHAR sPaths[LEN_Path]; wcscpy(subPath, pAcct->GetTargetPath()); StuffComputerNameinLdapPath(sPaths, nPathLen, subPath, pOptions, TRUE); hr = ADsGetObject(sPaths, IID_IADsGroup, (void**) &pGroup); err.MsgWrite(0, DCT_UPDATING_MEMBERS_TO_GROUP_SS, pAcct->GetTargetName(), sPaths); } else return S_OK; if ( FAILED(hr) ) return hr; hr = pGroup->Members(&pMembers); if ( SUCCEEDED(hr) ) { hr = pMembers->get__NewEnum((IUnknown**)&pEnum); } if ( SUCCEEDED(hr) ) { DWORD dwFet = 0; while ( pEnum->Next(1, &var, &dwFet) == S_OK ) { IDispatch * pDisp = var.pdispVal; IADs * pAds = NULL; pDisp->QueryInterface(IID_IADs, (void**)&pAds); pAds->Get(L"distinguishedName", &var); pAds->Release(); sMember = var; pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); hr = pOptions->pDb->raw_GetMigratedObjectBySourceDN(sMember, &pUnk); pUnk->Release(); if ( hr == S_OK ) { // Since we have moved this member we should remove it from the group // and add target member to the group. sTgtMem = pVs->get(L"MigratedObjects.TargetAdsPath"); _bstr_t sTgtType = pVs->get(L"MigratedObjects.Type"); if ( !_wcsicmp(L"computer", (WCHAR*) sTgtType ) ) { MakeFullyQualifiedAdsPath(sSrcPath, nPathLen, (WCHAR*)sMember, pOptions->srcComp + 2, L""); MakeFullyQualifiedAdsPath(sTgtPath, nPathLen, (WCHAR*)sTgtMem, pOptions->tgtComp + 2, L""); // HRESULT hr1 = pGroup->Remove(sSrcPath); pGroup->Remove(sSrcPath); if ( ! pOptions->nochange ) hr = pGroup->Add(sTgtPath); else hr = 0; if ( SUCCEEDED(hr) ) { err.MsgWrite(0, DCT_REPLACE_MEMBER_TO_GROUP_SSS, (WCHAR*)sMember, (WCHAR*) sTgtMem, pAcct->GetTargetName()); } else { err.SysMsgWrite(ErrE, hr, DCT_REPLACE_MEMBER_FAILED_SSS, (WCHAR*)sMember, (WCHAR*) sTgtMem, pAcct->GetTargetName()); } } } } } if ( pEnum ) pEnum->Release(); if ( pMembers ) pMembers->Release(); return hr; } /* This function will get the varset from the action history table for the given undo action ID. We will find the given source name and retrieve the UPN for that account */ void CAcctRepl::GetAccountUPN(Options * pOptions, _bstr_t sSName, _bstr_t& sSUPN) { HRESULT hr; IUnknown * pUnk = NULL; IVarSetPtr pVsAH(__uuidof(VarSet)); sSUPN = L""; hr = pVsAH->QueryInterface(IID_IUnknown, (void**)&pUnk); //fill a varset with the setting from the action to be undone from the Action History table if ( SUCCEEDED(hr) ) hr = pOptions->pDb->raw_GetActionHistory(pOptions->lUndoActionID, &pUnk); if (pUnk) pUnk->Release(); if ( hr == S_OK ) { WCHAR key[MAX_PATH]; bool bFound = false; int i = 0; long numAccounts = pVsAH->get(GET_BSTR(DCTVS_Accounts_NumItems)); _bstr_t tempName; while ((i<numAccounts) && (!bFound)) { swprintf(key,GET_STRING(DCTVSFmt_Accounts_D),i); tempName = pVsAH->get(key); if (_wcsicmp((WCHAR*)tempName, (WCHAR*)sSName) == 0) { bFound = true; swprintf(key,GET_STRING(DCTVSFmt_Accounts_SourceUPN_D),i); sSUPN = pVsAH->get(key); } i++; }//end while }//end if S_OK } /********************************************************************* * * * Written by: Paul Thompson * * Date: 1 NOV 2000 * * * * This function is responsible for updating the * * manager\directReports properties for a migrated user or the * * managedBy\managedObjects properties for a migrated group. * * * *********************************************************************/ //BEGIN UpdateManagement HRESULT CAcctRepl::UpdateManagement(TNodeListSortable * acctList, Options *pOptions) { /* local variables */ HRESULT hr = S_OK; TAcctReplNode * pAcct; IEnumVARIANT * pEnum; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); INetObjEnumeratorPtr pQuery2(__uuidof(NetObjEnumerator)); LPWSTR sUCols[] = { L"directReports",L"managedObjects", L"manager"}; int nUCols = DIM(sUCols); LPWSTR sGCols[] = { L"managedBy" }; int nGCols = DIM(sGCols); SAFEARRAY * cols; SAFEARRAYBOUND bdU = { nUCols, 0 }; SAFEARRAYBOUND bdG = { nGCols, 0 }; BSTR HUGEP * pData = NULL; _bstr_t sQuery; _variant_t varMgr; _variant_t varDR; _variant_t varMdO; _variant_t varMain; _variant_t HUGEP * pDt, * pVar; DWORD dwf; _bstr_t sTPath; _bstr_t sPath; _bstr_t sSam; _bstr_t sType; _bstr_t sName; long lgrpType; WCHAR mesg[LEN_Path]; IADs * pDSE = NULL; WCHAR strText[LEN_Path]; _variant_t varGC; /* function body */ //change from a tree to a sorted list if ( acctList->IsTree() ) acctList->ToSorted(); //prepare to connect to the GC _bstr_t sGCDomain = pOptions->srcDomainDns; swprintf(strText,L"LDAP://%ls/RootDSE",pOptions->srcDomainDns); hr = ADsGetObject(strText,IID_IADs,(void**)&pDSE); if ( SUCCEEDED(hr) ) { hr = pDSE->Get(L"RootDomainNamingContext",&varGC); if ( SUCCEEDED(hr) ) sGCDomain = GetDomainDNSFromPath(varGC.bstrVal); } _bstr_t sGCPath = _bstr_t(L"GC://") + sGCDomain; //for each account migrated, if not excluded, migrate the manager\directReports for ( pAcct = (TAcctReplNode*)acctList->Head(); pAcct; pAcct = (TAcctReplNode*)pAcct->Next()) { if ( pOptions->pStatus ) { LONG status = 0; HRESULT hr = pOptions->pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //update the message wsprintf(mesg, GET_STRING(IDS_UPDATING_MGR_PROPS_S), pAcct->GetName()); Progress(mesg); //build the path to the source object WCHAR sPathSource[LEN_Path]; DWORD nPathLen = LEN_Path; StuffComputerNameinLdapPath(sPathSource, nPathLen, const_cast<WCHAR*>(pAcct->GetSourcePath()), pOptions, FALSE); //connect to the GC instead of a specific DC WCHAR * pTemp = wcschr(sPathSource + 7, L'/'); if ( pTemp ) { _bstr_t sNewPath = sGCPath + _bstr_t(pTemp); wcscpy(sPathSource, sNewPath); } //for user, migrate the manager\directReports relationship if (!_wcsicmp(pAcct->GetType(), L"user")) { //if the manager property has explicitly been excluded from migration by the user, don't migrate it if ((pOptions->bExcludeProps) && (IsStringInDelimitedString((WCHAR*)pOptions->sExcUserProps, L"manager", L','))) continue; /* get the "manager", and "directReports", and "managedObjects" property */ //build the column array cols = SafeArrayCreate(VT_BSTR, 1, &bdU); SafeArrayAccessData(cols, (void HUGEP **) &pData); for ( int i = 0; i < nUCols; i++) pData[i] = SysAllocString(sUCols[i]); SafeArrayUnaccessData(cols); sQuery = L"(objectClass=*)"; //query the information hr = pQuery->raw_SetQuery(sPathSource, pOptions->srcDomain, sQuery, ADS_SCOPE_SUBTREE, TRUE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(cols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; while (pEnum->Next(1, &varMain, &dwf) == S_OK) { SAFEARRAY * vals = V_ARRAY(&varMain); // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); varDR = pDt[0]; varMdO = pDt[1]; varMgr = pDt[2]; SafeArrayUnaccessData(vals); //process the manager by setting the manager on the moved user if the //source user's manager has been migrated if ( varMgr.vt & VT_ARRAY ) { //we always get an Array of variants SAFEARRAY * multiVals = varMgr.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { _bstr_t sManager = _bstr_t(V_BSTR(&pVar[dw])); sManager = PadDN(sManager); _bstr_t sSrcDomain = GetDomainDNSFromPath(sManager); sPath = _bstr_t(L"LDAP://") + sSrcDomain + _bstr_t(L"/") + sManager; if (GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions)) { IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); WCHAR sDomainNB[LEN_Path]; WCHAR sDNS[LEN_Path]; //get NetBIOS of the objects source domain GetDnsAndNetbiosFromName(sSrcDomain, sDomainNB, sDNS); // See if the manager was migrated hr = pOptions->pDb->raw_GetAMigratedObjectToAnyDomain((WCHAR*)sSam, sDomainNB, &pUnk); if ( hr == S_OK ) { _variant_t var; //get the manager's target adspath var = pVs->get(L"MigratedObjects.TargetAdsPath"); sTPath = V_BSTR(&var); if ( wcslen((WCHAR*)sTPath) > 0 ) { IADsUser * pUser = NULL; //set the manager on the target object hr = ADsGetObject((WCHAR*)pAcct->GetTargetPath(), IID_IADsUser, (void**)&pUser); if ( SUCCEEDED(hr) ) { _bstr_t sTemp = _bstr_t(wcsstr((WCHAR*)sTPath, L"CN=")); var = sTemp; hr = pUser->Put(L"Manager", var); if ( SUCCEEDED(hr) ) { hr = pUser->SetInfo(); if (FAILED(hr)) err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); pUser->Release(); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); }//end if got the path to the manager on the target }//end if manager was migrated pUnk->Release(); }//end if got source sam }//for each manager (only one) SafeArrayUnaccessData(multiVals); }//end if variant array (it will be) //process the directReports by setting the manager on the previously moved //user if the source user's manager has been migrated if ( varDR.vt & VT_ARRAY ) { //we always get an Array of variants SAFEARRAY * multiVals = varDR.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { _bstr_t sDirectReport = _bstr_t(V_BSTR(&pVar[dw])); sDirectReport = PadDN(sDirectReport); _bstr_t sSrcDomain = GetDomainDNSFromPath(sDirectReport); sPath = _bstr_t(L"LDAP://") + sSrcDomain + _bstr_t(L"/") + sDirectReport; if (GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions)) { IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); WCHAR sDomainNB[LEN_Path]; WCHAR sDNS[LEN_Path]; //get NetBIOS of the objects source domain GetDnsAndNetbiosFromName(sSrcDomain, sDomainNB, sDNS); // See if the direct report was migrated hr = pOptions->pDb->raw_GetAMigratedObjectToAnyDomain((WCHAR*)sSam, sDomainNB, &pUnk); if ( hr == S_OK ) { _variant_t var; //get the direct report's target adspath var = pVs->get(L"MigratedObjects.TargetAdsPath"); sTPath = V_BSTR(&var); if ( wcslen((WCHAR*)sTPath) > 0 ) { IADsUser * pUser = NULL; //set the manager on the target object hr = ADsGetObject(sTPath, IID_IADsUser, (void**)&pUser); if ( SUCCEEDED(hr) ) { _bstr_t sTemp = _bstr_t(wcsstr((WCHAR*)pAcct->GetTargetPath(), L"CN=")); var = sTemp; hr = pUser->Put(L"Manager", var); if ( SUCCEEDED(hr) ) { hr = pUser->SetInfo(); if (FAILED(hr)) err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); pUser->Release(); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); }//end if got the path to the manager on the target }//end if manager was migrated pUnk->Release(); }//end if got source sam }//for each directReport SafeArrayUnaccessData(multiVals); }//end if variant array (it will be) /* get the "managedObjects" property */ //process the managedObjects by setting the managedBy on the moved group if the //source user's managed group has been migrated if ( varMdO.vt & VT_ARRAY ) { //we always get an Array of variants SAFEARRAY * multiVals = varMdO.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { _bstr_t sManaged = _bstr_t(V_BSTR(&pVar[dw])); sManaged = PadDN(sManaged); _bstr_t sSrcDomain = GetDomainDNSFromPath(sManaged); sPath = _bstr_t(L"LDAP://") + sSrcDomain + _bstr_t(L"/") + sManaged; if (GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions)) { IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); WCHAR sDomainNB[LEN_Path]; WCHAR sDNS[LEN_Path]; //get NetBIOS of the objects source domain GetDnsAndNetbiosFromName(sSrcDomain, sDomainNB, sDNS); // See if the managed object was migrated hr = pOptions->pDb->raw_GetAMigratedObjectToAnyDomain((WCHAR*)sSam, sDomainNB, &pUnk); if ( hr == S_OK ) { _variant_t var; //get the managed object's target adspath var = pVs->get(L"MigratedObjects.TargetAdsPath"); sTPath = V_BSTR(&var); if ( wcslen((WCHAR*)sTPath) > 0 ) { IADsGroup * pGroup = NULL; //set the manager on the target object hr = ADsGetObject(sTPath, IID_IADsGroup, (void**)&pGroup); if ( SUCCEEDED(hr) ) { _bstr_t sTemp = _bstr_t(wcsstr((WCHAR*)pAcct->GetTargetPath(), L"CN=")); var = sTemp; hr = pGroup->Put(L"ManagedBy", var); if ( SUCCEEDED(hr) ) { hr = pGroup->SetInfo(); if (FAILED(hr)) err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); pGroup->Release(); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)pAcct->GetTargetPath(), (WCHAR*)sTPath, hr); }//end if got the path to the manager on the target }//end if manager was migrated pUnk->Release(); }//end if got source sam }//for each manager (only one) SafeArrayUnaccessData(multiVals); }//end if variant array (it will be) varMgr.Clear(); varMdO.Clear(); varDR.Clear(); VariantInit(&varMain); // data not owned by varMain so clear VARTYPE } if (pEnum) pEnum->Release(); // SafeArrayDestroy(cols); }//end if user //for group, migrate the managedBy\managedObjects relationship if (!_wcsicmp(pAcct->GetType(), L"group")) { //if the managedBy property has explicitly been excluded from migration by the user, don't migrate it if (IsStringInDelimitedString((WCHAR*)pOptions->sExcGroupProps, L"managedBy", L',')) continue; /* get the "managedBy" property */ //build the column array cols = SafeArrayCreate(VT_BSTR, 1, &bdG); SafeArrayAccessData(cols, (void HUGEP **) &pData); for ( int i = 0; i < nGCols; i++) pData[i] = SysAllocString(sGCols[i]); SafeArrayUnaccessData(cols); sQuery = L"(objectClass=*)"; //query the information hr = pQuery->raw_SetQuery(sPathSource, pOptions->srcDomain, sQuery, ADS_SCOPE_BASE, TRUE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(cols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; while (pEnum->Next(1, &varMain, &dwf) == S_OK) { SAFEARRAY * vals = V_ARRAY(&varMain); // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); varMgr = pDt[0]; SafeArrayUnaccessData(vals); //process the managedBy by setting the managedBy on the moved group if the //source group's manager has been migrated if ( varMgr.vt & VT_BSTR ) { _bstr_t sManager = varMgr; sManager = PadDN(sManager); _bstr_t sSrcDomain = GetDomainDNSFromPath(sManager); sPath = _bstr_t(L"LDAP://") + sSrcDomain + _bstr_t(L"/") + sManager; if (GetSamFromPath(sPath, sSam, sType, sName, lgrpType, pOptions)) { IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; pVs->QueryInterface(IID_IUnknown, (void**) &pUnk); WCHAR sDomainNB[LEN_Path]; WCHAR sDNS[LEN_Path]; //get NetBIOS of the objects source domain GetDnsAndNetbiosFromName(sSrcDomain, sDomainNB, sDNS); // See if the manager was migrated hr = pOptions->pDb->raw_GetAMigratedObjectToAnyDomain((WCHAR*)sSam, sDomainNB, &pUnk); if ( hr == S_OK ) { _variant_t var; //get the manager's target adspath var = pVs->get(L"MigratedObjects.TargetAdsPath"); sTPath = V_BSTR(&var); if ( wcslen((WCHAR*)sTPath) > 0 ) { IADsGroup * pGroup = NULL; //set the manager on the target object hr = ADsGetObject((WCHAR*)pAcct->GetTargetPath(), IID_IADsGroup, (void**)&pGroup); if ( SUCCEEDED(hr) ) { _bstr_t sTemp = _bstr_t(wcsstr((WCHAR*)sTPath, L"CN=")); var = sTemp; hr = pGroup->Put(L"ManagedBy", var); if ( SUCCEEDED(hr) ) { hr = pGroup->SetInfo(); if (FAILED(hr)) err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); pGroup->Release(); } else err.SysMsgWrite(0, hr, DCT_MSG_MANAGER_MIG_FAILED, (WCHAR*)sTPath, (WCHAR*)pAcct->GetTargetPath(), hr); }//end if got the path to the manager on the target }//end if manager was migrated pUnk->Release(); }//end if got source sam }//end if variant array (it will be) VariantClear(&varMgr); VariantClear(&varMain); } if (pEnum) pEnum->Release(); // SafeArrayDestroy(cols); }//end if group }//end for each account being migrated wcscpy(mesg, L""); Progress(mesg); return hr; } //END UpdateManagement /********************************************************************* * * * Written by: Paul Thompson * * Date: 29 NOV 2000 * * * * This function is responsible for removing the escape character* * in front of any '/' characters. * * * *********************************************************************/ //BEGIN GetUnEscapedNameWithFwdSlash _bstr_t CAcctRepl::GetUnEscapedNameWithFwdSlash(_bstr_t strName) { /* local variables */ WCHAR szNameOld[MAX_PATH]; WCHAR szNameNew[MAX_PATH]; WCHAR * pchBeg = NULL; _bstr_t sNewName = L""; /* function body */ if (strName.length()) { safecopy(szNameOld, (WCHAR*)strName); for (WCHAR* pch = wcschr(szNameOld, _T('\\')); pch; pch = wcschr(pch + 1, _T('\\'))) { if ((*(pch + 1)) == L'/') { if (pchBeg == NULL) { wcsncpy(szNameNew, szNameOld, pch - szNameOld); szNameNew[pch - szNameOld] = L'\0'; } else { size_t cch = wcslen(szNameNew); wcsncat(szNameNew, pchBeg, pch - pchBeg); szNameNew[cch + (pch - szNameOld)] = L'\0'; } pchBeg = pch + 1; } } if (pchBeg == NULL) wcscpy(szNameNew, szNameOld); else wcscat(szNameNew, pchBeg); sNewName = szNameNew; } return sNewName; } //END GetUnEscapedNameWithFwdSlash /********************************************************************* * * * Written by: Paul Thompson * * Date: 29 NOV 2000 * * * * This function is responsible for gets the CN name of an object* * from an ADsPath and returns that CN name if it was retrieved or * * NULL otherwise. * * * *********************************************************************/ //BEGIN GetCNFromPath _bstr_t CAcctRepl::GetCNFromPath(_bstr_t sPath) { /* local variables */ BOOL bFound = FALSE; WCHAR sName[MAX_PATH]; WCHAR sTempPath[MAX_PATH]; _bstr_t sCNName = L""; WCHAR * sTempDN; /* function body */ if (sPath.length() > 0) { wcscpy(sTempPath, (WCHAR*)sPath); sTempDN = wcsstr(sTempPath, L"CN="); if (sTempDN) { wcscpy(sName, sTempDN); sTempDN = wcsstr(sName, L",OU="); if (sTempDN) { bFound = TRUE; *sTempDN = L'\0'; } sTempDN = wcsstr(sName, L",CN="); if (sTempDN) { bFound = TRUE; *sTempDN = L'\0'; } sTempDN = wcsstr(sName, L",DC="); if (sTempDN) { bFound = TRUE; *sTempDN = L'\0'; } } } if (bFound) sCNName = sName; return sCNName; } //END GetCNFromPath /********************************************************************* * * * Written by: Paul Thompson * * Date: 26 FEB 2001 * * * * This function is responsible for replacing the source account * * for a given list of accounts in any local groups they are a member* * of on the target, if that account was migrated by ADMT. This * * function is called during the undo process. * * * *********************************************************************/ //BEGIN ReplaceSourceInLocalGroup BOOL CAcctRepl::ReplaceSourceInLocalGroup(TNodeListSortable *acctlist, //in- Accounts being processed Options *pOptions, //in- Options specified by the user IStatusObj *pStatus) // in -status object to support cancellation { /* local variables */ TAcctReplNode * pAcct; IEnumVARIANT * pEnum; INetObjEnumeratorPtr pQuery(__uuidof(NetObjEnumerator)); LPWSTR sCols[] = { L"memberOf" }; int nCols = DIM(sCols); SAFEARRAY * psaCols; SAFEARRAYBOUND bd = { nCols, 0 }; BSTR HUGEP * pData; WCHAR sQuery[LEN_Path]; _variant_t HUGEP * pDt, * pVar; _variant_t vx; _variant_t varMain; DWORD dwf = 0; HRESULT hr = S_OK; _bstr_t sDomPath = L""; _bstr_t sDomain = L""; /* function body */ FillNamingContext(pOptions); //for each account, enumerate all local groups it is a member of and add the account's //source account in that local group for ( pAcct = (TAcctReplNode*)acctlist->Head(); pAcct; pAcct = (TAcctReplNode*)pAcct->Next()) { // Do we need to abort ? if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } //enumerate the groups this account is a member of sDomain = GetDomainDNSFromPath(pAcct->GetTargetPath()); if (!_wcsicmp(pAcct->GetType(), L"user")) wsprintf(sQuery, L"(&(sAMAccountName=%s)(objectCategory=Person)(objectClass=user))", pAcct->GetTargetSam()); else wsprintf(sQuery, L"(&(sAMAccountName=%s)(objectCategory=Group))", pAcct->GetTargetSam()); psaCols = SafeArrayCreate(VT_BSTR, 1, &bd); SafeArrayAccessData(psaCols, (void HUGEP **)&pData); for ( int i = 0; i < nCols; i++ ) pData[i] = SysAllocString(sCols[i]); SafeArrayUnaccessData(psaCols); hr = pQuery->raw_SetQuery(sDomPath, sDomain, sQuery, ADS_SCOPE_SUBTREE, FALSE); if (FAILED(hr)) return FALSE; hr = pQuery->raw_SetColumns(psaCols); if (FAILED(hr)) return FALSE; hr = pQuery->raw_Execute(&pEnum); if (FAILED(hr)) return FALSE; //while more groups while (pEnum->Next(1, &varMain, &dwf) == S_OK) { SAFEARRAY * vals = V_ARRAY(&varMain); // Get the VARIANT Array out SafeArrayAccessData(vals, (void HUGEP**) &pDt); vx = pDt[0]; SafeArrayUnaccessData(vals); if ( vx.vt == VT_BSTR ) { _bstr_t sPath; BSTR sGrpName = NULL; IADsGroup * pGrp = NULL; _variant_t var; _bstr_t sDN = vx.bstrVal; if (wcslen((WCHAR*)sDN) == 0) continue; sDN = PadDN(sDN); sPath = _bstr_t(L"LDAP://") + sDomain + _bstr_t(L"/") + sDN; //connect to the target group hr = ADsGetObject(sPath, IID_IADsGroup, (void**)&pGrp); if (FAILED(hr)) continue; //get this group's type and name hr = pGrp->get_Name(&sGrpName); hr = pGrp->Get(L"groupType", &var); //if this is a local group, get this account source path and add it as a member if ((SUCCEEDED(hr)) && (var.lVal & 4)) { //add the account's source account to the local group, using the sid string format WCHAR strSid[MAX_PATH] = L""; WCHAR strRid[MAX_PATH] = L""; DWORD lenStrSid = DIM(strSid); GetTextualSid(pAcct->GetSourceSid(), strSid, &lenStrSid); _bstr_t sSrcDmSid = strSid; _ltow((long)(pAcct->GetSourceRid()), strRid, 10); _bstr_t sSrcRid = strRid; if ((!sSrcDmSid.length()) || (!sSrcRid.length())) { hr = E_INVALIDARG; err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_READD_TO_GROUP_SSD, pAcct->GetSourcePath(), (WCHAR*)sGrpName, hr); continue; } //build an LDAP path to the src object in the group _bstr_t sSrcSid = sSrcDmSid + _bstr_t(L"-") + sSrcRid; _bstr_t sSrcLDAPPath = L"LDAP://"; sSrcLDAPPath += _bstr_t(pOptions->tgtComp + 2); sSrcLDAPPath += L"/CN="; sSrcLDAPPath += sSrcSid; sSrcLDAPPath += L",CN=ForeignSecurityPrincipals,"; sSrcLDAPPath += pOptions->tgtNamingContext; //add the source account to the local group hr = pGrp->Add(sSrcLDAPPath); if (SUCCEEDED(hr)) err.MsgWrite(0,DCT_MSG_READD_MEMBER_TO_GROUP_SS, pAcct->GetSourcePath(), (WCHAR*)sGrpName); else err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_READD_TO_GROUP_SSD, pAcct->GetSourcePath(), (WCHAR*)sGrpName, hr); }//end if local group if (pGrp) pGrp->Release(); }//end if bstr else if ( vx.vt & VT_ARRAY ) { // We must have got an Array of multivalued properties // Access the BSTR elements of this variant array SAFEARRAY * multiVals = vx.parray; SafeArrayAccessData(multiVals, (void HUGEP **) &pVar); //for each group for ( DWORD dw = 0; dw < multiVals->rgsabound->cElements; dw++ ) { // Do we need to abort ? if ( pStatus ) { LONG status = 0; HRESULT hr = pStatus->get_Status(&status); if ( SUCCEEDED(hr) && status == DCT_STATUS_ABORTING ) { if ( !bAbortMessageWritten ) { err.MsgWrite(0,DCT_MSG_OPERATION_ABORTED); bAbortMessageWritten = true; } break; } } _bstr_t sPath; BSTR sGrpName = NULL; IADsGroup * pGrp = NULL; _variant_t var; _bstr_t sDN = _bstr_t(V_BSTR(&pVar[dw])); sDN = PadDN(sDN); sPath = _bstr_t(L"LDAP://") + sDomain + _bstr_t(L"/") + sDN; //connect to the target group hr = ADsGetObject(sPath, IID_IADsGroup, (void**)&pGrp); if (FAILED(hr)) continue; //get this group's type and name hr = pGrp->get_Name(&sGrpName); hr = pGrp->Get(L"groupType", &var); //if this is a local group, get this account source path and add it as a member if ((SUCCEEDED(hr)) && (var.lVal & 4)) { //add the account's source account to the local group, using the sid string format WCHAR strSid[MAX_PATH]; WCHAR strRid[MAX_PATH]; DWORD lenStrSid = DIM(strSid); GetTextualSid(pAcct->GetSourceSid(), strSid, &lenStrSid); _bstr_t sSrcDmSid = strSid; _ltow((long)(pAcct->GetSourceRid()), strRid, 10); _bstr_t sSrcRid = strRid; if ((!sSrcDmSid.length()) || (!sSrcRid.length())) { hr = E_INVALIDARG; err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_READD_TO_GROUP_SSD, pAcct->GetSourcePath(), (WCHAR*)sGrpName, hr); continue; } //build an LDAP path to the src object in the group _bstr_t sSrcSid = sSrcDmSid + _bstr_t(L"-") + sSrcRid; _bstr_t sSrcLDAPPath = L"LDAP://"; sSrcLDAPPath += _bstr_t(pOptions->tgtComp + 2); sSrcLDAPPath += L"/CN="; sSrcLDAPPath += sSrcSid; sSrcLDAPPath += L",CN=ForeignSecurityPrincipals,"; sSrcLDAPPath += pOptions->tgtNamingContext; //add the source account to the local group hr = pGrp->Add(sSrcLDAPPath); if (SUCCEEDED(hr)) err.MsgWrite(0,DCT_MSG_READD_MEMBER_TO_GROUP_SS, pAcct->GetSourcePath(), (WCHAR*)sGrpName); else err.SysMsgWrite(ErrW, hr, DCT_MSG_FAILED_TO_READD_TO_GROUP_SSD, pAcct->GetSourcePath, (WCHAR*)sGrpName, hr); }//end if local group if (pGrp) pGrp->Release(); }//end for each group SafeArrayUnaccessData(multiVals); }//end if array of groups }//end while groups pEnum->Release(); VariantInit(&vx); VariantInit(&varMain); SafeArrayDestroy(psaCols); }//end for each account return TRUE; } //END ReplaceSourceInLocalGroup /********************************************************************* * * * Written by: Paul Thompson * * Date: 6 MAR 2001 * * * * This function is responsible for retrieving the actual source * * domain, from the Migrated Objects table, of a given path if that * * path is one to a foreign security principal. * * * *********************************************************************/ //BEGIN GetDomainOfMigratedForeignSecPrincipal _bstr_t CAcctRepl::GetDomainOfMigratedForeignSecPrincipal(_bstr_t sPath) { /* local variables */ IVarSetPtr pVs(__uuidof(VarSet)); IUnknown * pUnk = NULL; IADs * pTempAds = NULL; HRESULT hr = S_OK; _variant_t varName; _bstr_t sDomainSid, sRid; _bstr_t sDomain = L""; BOOL bSplit = FALSE; /* function body */ //if this account is outside the domain, lookup the account //in the migrated objects table to retrieve it's actual source domain if (wcsstr((WCHAR*)sPath, L"CN=ForeignSecurityPrincipals")) { //get the sid of this account hr = ADsGetObject(sPath,IID_IADs,(void**)&pTempAds); if (SUCCEEDED(hr)) { hr = pTempAds->Get(SysAllocString(L"name"),&varName); pTempAds->Release(); if (SUCCEEDED(hr)) { WCHAR sName[MAX_PATH]; _bstr_t sTempName = varName; wcscpy(sName, sTempName); //break the sid into domain sid and account rid WCHAR * pTemp = wcsrchr(sName, L'-'); if (pTemp) { sRid = (pTemp + 1); *pTemp = L'\0'; sDomainSid = sName; bSplit = TRUE; } } } //if we got the rid and domain sid, look in MOT for account's //real source domain if (bSplit) { pVs->QueryInterface(IID_IUnknown, (void**)&pUnk); try { IIManageDBPtr pDB(CLSID_IManageDB); hr = pDB->raw_GetAMigratedObjectBySidAndRid(sDomainSid, sRid, &pUnk); if (SUCCEEDED(hr)) sDomain = pVs->get(L"MigratedObjects.SourceDomain"); } catch(_com_error& e) { hr = e.Error(); } catch(...) { hr = E_FAIL; } if (pUnk) pUnk->Release(); } } return sDomain; } //END GetDomainOfMigratedForeignSecPrincipal /********************************************************************* * * * Written by: Paul Thompson * * Date: 22 APR 2001 * * * * This function is responsible for removing the source account * * object, represented by its VarSet entry from the Migrated Objects * * Table, from the given group. This helper function is used by * * "UpdateMemberToGroups" and "UpdateGroupMembership" after * * successfully adding the cloned account to this same group. * * * *********************************************************************/ //BEGIN RemoveSourceAccountFromGroup void CAcctRepl::RemoveSourceAccountFromGroup(IADsGroup * pGroup, IVarSetPtr pMOTVarSet, Options * pOptions) { /* local variables */ _bstr_t sSrcDmSid, sSrcRid, sSrcPath, sGrpName = L""; BSTR bstrGrpName = NULL; HRESULT hr = S_OK; /* function body */ //get the target group's name hr = pGroup->get_Name(&bstrGrpName); if ( SUCCEEDED(hr) ) sGrpName = bstrGrpName; //get the source object's sid from the migrate objects table sSrcDmSid = pMOTVarSet->get(L"MigratedObjects.SourceDomainSid"); sSrcRid = pMOTVarSet->get(L"MigratedObjects.SourceRid"); sSrcPath = pMOTVarSet->get(L"MigratedObjects.SourceAdsPath"); if ((wcslen((WCHAR*)sSrcDmSid) > 0) && (wcslen((WCHAR*)sSrcPath) > 0) && (wcslen((WCHAR*)sSrcRid) > 0)) { //build an LDAP path to the src object in the group _bstr_t sSrcSid = sSrcDmSid + _bstr_t(L"-") + sSrcRid; _bstr_t sSrcLDAPPath = L"LDAP://"; sSrcLDAPPath += _bstr_t(pOptions->tgtComp + 2); sSrcLDAPPath += L"/CN="; sSrcLDAPPath += sSrcSid; sSrcLDAPPath += L",CN=ForeignSecurityPrincipals,"; sSrcLDAPPath += pOptions->tgtNamingContext; VARIANT_BOOL bIsMem = VARIANT_FALSE; //got the source LDAP path, now see if that account is in the group pGroup->IsMember(sSrcLDAPPath, &bIsMem); if (bIsMem) { hr = pGroup->Remove(sSrcLDAPPath);//remove the src account if ( SUCCEEDED(hr) ) err.MsgWrite(0,DCT_MSG_REMOVE_FROM_GROUP_SS, (WCHAR*)sSrcPath, (WCHAR*)sGrpName); } } } //END RemoveSourceAccountFromGroup
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
55fcd267f04e8bbd2701807a36e1cc4730f5c07e
e06984dcfcb5872a2c09783847b98f964020a5de
/AR Foundation Play/Library/Il2cppBuildCache/Android/arm64-v8a/il2cppOutput/Generics9.cpp
0d15e061eb7320163b31f5b7d1e01e4d992c4c3d
[]
no_license
keo88/ArFoundationPlay
716f8b98a4ca202316df04ba89b9595b14ce54e0
d2601ad3b5756e7e9378c06d632cf0f189f1e1c6
refs/heads/main
2023-08-15T04:22:37.943107
2021-09-30T15:56:40
2021-09-30T15:56:40
411,563,706
0
0
null
null
null
null
UTF-8
C++
false
false
2,564,942
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.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> 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); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename 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 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 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, typename T3, typename T4> struct VirtActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename R, typename T1> struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct GenericVirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> 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); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct GenericVirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4> struct GenericVirtActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> 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); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1> 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); } }; 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, typename T3> struct InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4> struct InterfaceActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename R, typename T1> struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename 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); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct GenericInterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4> struct GenericInterfaceActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; // System.Action`1<System.Object> struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Collections.Generic.Comparer`1<System.Boolean> struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84; // System.Collections.Generic.Comparer`1<UnityEngine.XR.ARSubsystems.TrackableId> struct Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8; // System.Collections.Generic.Dictionary`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF; // System.Collections.Generic.Dictionary`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> struct Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8; // System.Collections.Generic.Dictionary`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo> struct Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94; // System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A; // System.Func`1<System.Threading.Tasks.Task/ContingentProperties> struct Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>> struct Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>> struct Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>> struct Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>> struct Func_2_t59E5EE359C575BAE84083A82848C07C4F342D995; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>> struct Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728; // System.Func`2<System.Object,System.Boolean> struct Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8; // System.Func`2<System.Object,System.Int32> struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C; // System.Func`2<System.Object,System.Object> struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436; // System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult> struct Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0; // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> struct HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D; // System.Collections.Generic.HashSet`1<UnityEngine.XR.Management.XRLoader> struct HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6; // System.Collections.Generic.IComparer`1<System.Object> struct IComparer_1_t20C0141C3FEEDAA44BFE8521FEEDDF47289CB40B; // System.Collections.Generic.IComparer`1<UnityEngine.XR.ARSubsystems.TrackableId> struct IComparer_1_t40B525B485A7A89ABCFC5E1266A05F346524377D; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerator_1_tF437149CAED78D4A68294D431DE692A78F7D67B3; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>> struct IEnumerator_1_tAC9C55030EB6B16BBA25996AFD9C491E72BE5F88; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct IEnumerator_1_tF000C9F0E5825B7175EEFFE4206D7E4CA63AC048; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct IEnumerator_1_tE5705EFC200D381292594B7E9CD60030D84E5E66; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t2DC97C7D486BF9E077C2BC2E517E434F393AA76E; // System.Collections.Generic.IEqualityComparer`1<System.Guid> struct IEqualityComparer_1_t261B924C5A81BD7105A5798D8C188A0A50C456C5; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.XR.MeshId> struct IEqualityComparer_1_tD42C85DFA5794F89A245323D9F0EB09D102C0681; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.XR.ARSubsystems.TrackableId> struct IEqualityComparer_1_tD2AF20E67D8624289AE792EE7E48B879EEF614ED; // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> struct IList_1_tC94A6A591E58FD9BB826AF5D15001E425B682707; // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> struct IList_1_tA9B3F6D4DDBA3A555103C2DDC65AD75936EAB181; // System.Collections.Generic.IList`1<System.Object> struct IList_1_t707982BD768B18C51D263C759F33BCDBDFA44901; // System.Linq.Enumerable/Iterator`1<System.Object> struct Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct KeyCollection_t3D32C3B5004427FBFD9FFE9EA8DF86F434A9ADDA; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct KeyCollection_tD47BC2A2DF081155AF9FC5D5A1C9872C6EF87EB1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo> struct KeyCollection_t5914C92B062546D0228F45528D5177C3EB6E727C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9; // System.Collections.Generic.SortedList`2/KeyList<System.Object,System.Object> struct KeyList_tA295C9817D6A655E7CB7BE14FC0A630C5A4107BC; // System.Collections.Generic.SortedList`2/KeyList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct KeyList_t296975AE18449739E9E0D36201870D32AD100126; // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> struct List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1<System.String> struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> struct List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB; // System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> struct List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4; // System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader> struct List_1_t6331523A19E51FB87CA899920C03B10A48A562B0; // System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A; // System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose> struct List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248; // System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object> struct Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9; // System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40; // System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>> struct Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4; // System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit> struct Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B; // System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo> struct Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C; // System.Predicate`1<UnityEngine.XR.InputDevice> struct Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70; // System.Predicate`1<System.Int32> struct Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E; // System.Predicate`1<System.Int32Enum> struct Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48; // System.Predicate`1<UnityEngine.XR.MeshInfo> struct Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9; // System.Predicate`1<System.Object> struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // System.Predicate`1<System.Threading.Tasks.Task> struct Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD; // System.Predicate`1<System.UInt64> struct Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7; // System.Predicate`1<UnityEngine.Vector2> struct Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838; // System.Predicate`1<UnityEngine.Vector3> struct Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD; // System.Predicate`1<UnityEngine.XR.XRNodeState> struct Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8; // System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5; // System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE; // System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3; // System.Predicate`1<UnityEngine.Camera/RenderRequest> struct Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF; // System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData> struct Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F; // System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931; // UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum> struct Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB; // UnityEngine.XR.ARSubsystems.Promise`1<System.Object> struct Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument> struct ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument> struct ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> struct ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3; // System.IO.SearchResultHandler`1<System.Object> struct SearchResultHandler_1_tB819A963B62A843474E27DDAFE239812CF70839D; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B; // System.Threading.Tasks.Shared`1<System.Object> struct Shared_1_t9CD470164021C8F0989F8E21A955B5B9AE6CA05C; // System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object> struct SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838; // System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5; // System.Collections.Generic.SortedList`2<System.Object,System.Object> struct SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0; // System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230; // System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object> struct SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21; // System.Threading.SparselyPopulatedArrayFragment`1<System.Object> struct SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6; // System.Threading.SparselyPopulatedArray`1<System.Object> struct SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B; // System.Reflection.MonoProperty/StaticGetter`1<System.Object> struct StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01; // UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object> struct SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4; // UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object> struct SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1; // UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object> struct SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46; // UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object> struct SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2; // System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object> struct SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object> struct Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA; // System.Threading.Tasks.TaskFactory`1<System.Boolean> struct TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7; // System.Threading.Tasks.TaskFactory`1<System.Int32> struct TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E; // System.Threading.Tasks.TaskFactory`1<System.Object> struct TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.Task> struct TaskFactory_1_t4720246ADD352D9004AFCAA652A1A240B620DE4E; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult> struct TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B; // System.Threading.Tasks.Task`1<System.Boolean> struct Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t03AE7A9F3FCFC6AD533F1AC3F403168B8140649F; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t346381F1A8322029735E6CB60BE656844AC911E8; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tBD40FD22068207BB90449FC608025235E400C47A; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tB043EC909C55FE5BC78AD95436858F4956E3DE4C; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t758226B1C7A7735796B7029A5913BC43628FCCF3; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t2CAAD77E4532041B0120AE543DB331C1CECFA765; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t1953500C8BD92CD8DCFED1CC3B58B24A60C24E43; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tE9F5623D0E551591334872A367EFF28A72775EEA; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t3385ADCA6DCAB14BAB5A5E886D096E0B5FA530F5; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t227E1B3CD9B70F544BE2BAC33219E40F224A16BA; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t7F92C20128624C004DAABFC3F72A9994C54898D9; // System.Tuple`2<System.Object,System.Char> struct Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6; // System.Tuple`2<System.Object,System.Object> struct Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1; // System.Tuple`3<System.Object,System.Object,System.Object> struct Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E; // System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32> struct Tuple_4_t936566050E79A53330A93469CAF15575A12A114D; // System.Tuple`4<System.Object,System.Object,System.Object,System.Object> struct Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44; // UnityEngine.Events.UnityAction`1<System.Boolean> struct UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF; // UnityEngine.Events.UnityAction`1<System.Int32> struct UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79; // UnityEngine.Events.UnityAction`1<System.Object> struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A; // UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene> struct UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2; // UnityEngine.Events.UnityAction`1<System.Single> struct UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB; // UnityEngine.Events.UnityAction`2<System.Object,System.Object> struct UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD; // UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum> struct UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50; // UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene> struct UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4; // UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object> struct UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE; // UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object> struct UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC; // UnityEngine.Events.UnityEvent`1<System.Int32> struct UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF; // UnityEngine.Events.UnityEvent`1<System.Object> struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F; // UnityEngine.Events.UnityEvent`2<System.Object,System.Object> struct UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582; // UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object> struct UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4; // UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object> struct UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane> struct ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor> struct ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace> struct ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant> struct ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud> struct ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast> struct ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> struct ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> struct ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> struct ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo> struct ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63; // System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object> struct ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940; // System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A; // System.Linq.Enumerable/WhereArrayIterator`1<System.Object> struct WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86; // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object> struct WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0; // System.Linq.Enumerable/WhereListIterator`1<System.Object> struct WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>[] struct EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>[] struct EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>[] struct EntryU5BU5D_tC354C08F0A7D22E8BDC74F214F1F72A44898CAA3; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>[] struct EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C; // System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>[] struct KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357; // System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object>[] struct NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A; // System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.ARSubsystems.TrackableId>[] struct SlotU5BU5D_tA46D0E06F0A2F0D80693C33EAA281055E55B573E; // UnityEngine.Events.BaseInvokableCall[] struct BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // UnityEngine.XR.ARSubsystems.TrackableId[] struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.XR.ARFoundation.ARTrackable struct ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // System.AggregateException struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // UnityEngine.Events.BaseInvokableCall struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B; // System.Threading.CancellationTokenSource struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3; // System.Threading.ContextCallback struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B; // UnityEngine.CustomYieldInstruction struct CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.Exception struct Exception_t; // System.Threading.ExecutionContext struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IComparer struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // UnityEngine.ISubsystem struct ISubsystem_t64464AB5EA37383499172853FA932A96C7841789; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // UnityEngine.Events.InvokableCall struct InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741; // UnityEngine.Events.InvokableCallList struct InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952; // System.Threading.ManualResetEvent struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA; // System.Threading.ManualResetEventSlim struct ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // UnityEngine.Events.PersistentCallGroup struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // UnityEngine.RenderTexture struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // System.Threading.Tasks.StackGuard struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider struct SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E; // UnityEngine.SubsystemsImplementation.SubsystemProvider struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9; // UnityEngine.SubsystemsImplementation.SubsystemWithProvider struct SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E; // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60; // System.Threading.Tasks.TaskExceptionHolder struct TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684; // System.Threading.Tasks.TaskFactory struct TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D; // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.Events.UnityEventBase struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // UnityEngine.XR.Management.XRGeneralSettings struct XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042; // UnityEngine.XR.Management.XRLoader struct XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B; // UnityEngine.XR.Management.XRManagerSettings struct XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0; IL2CPP_EXTERN_C RuntimeClass* ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Delegate_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SubsystemManager_t4397CEF2ED795CB9B3DDBA2BB468BCB6B45B76D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96; IL2CPP_EXTERN_C String_t* _stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE; IL2CPP_EXTERN_C String_t* _stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC; IL2CPP_EXTERN_C String_t* _stringLiteral3987FA95BD46CCE848A84361CD17D11219DC101A; IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B; IL2CPP_EXTERN_C String_t* _stringLiteral46A01A440913AE3A82489D220ACF899D570C29A7; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3; IL2CPP_EXTERN_C String_t* _stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432; IL2CPP_EXTERN_C String_t* _stringLiteral4C380E819D3DABEF164F2B0B89310A19646E5D32; IL2CPP_EXTERN_C String_t* _stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561; IL2CPP_EXTERN_C String_t* _stringLiteral4D1773CA7AF4AE36C001FBC3E1E5DA5574C041FA; IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4; IL2CPP_EXTERN_C String_t* _stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003; IL2CPP_EXTERN_C String_t* _stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70; IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97; IL2CPP_EXTERN_C String_t* _stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB; IL2CPP_EXTERN_C String_t* _stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86; IL2CPP_EXTERN_C String_t* _stringLiteral6D6D7D98EEF97DA8106B4F84DC56051C3D100924; IL2CPP_EXTERN_C String_t* _stringLiteral7245127280C0B0EA336358EDF301389A962363E0; IL2CPP_EXTERN_C String_t* _stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C; IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; IL2CPP_EXTERN_C String_t* _stringLiteral812EC03C4AEF0AE76BA178C4367F385393486DE8; IL2CPP_EXTERN_C String_t* _stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744; IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5; IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73; IL2CPP_EXTERN_C String_t* _stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8; IL2CPP_EXTERN_C String_t* _stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4; IL2CPP_EXTERN_C String_t* _stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581; IL2CPP_EXTERN_C String_t* _stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3; IL2CPP_EXTERN_C String_t* _stringLiteralDB4D04D923105799A589A78105C1040193446586; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralF0569A2D4DF78C8C40FBF38FD14928474637FF26; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618; IL2CPP_EXTERN_C String_t* _stringLiteralFB56FBFCFCE2DBB8D871868DE37CF24B441C78DD; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_MoveNext_mF4DAF8DF0562167B7BAB25CF8D3A56F921622B68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_MoveNext_mFADC3C01EC61B24284329FA215B49E563E91E842_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m236099C85D8E64CC552E9292E3EC4ECB121FAA47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m4D4A9DA8F291F03B909D7497C921A04A1DB0C39A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_m96EF9904BA7E969AEF948B90C9677DFCCE81503B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_mAFAE4985082D0A6CE53DF3A1B3F76D65AE9F1A13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_Add_m9BC195D158E8159756C95C2D13CC3509C90C2A09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_Add_mDD879D505E17A1A3932FD4381C60758783891F35_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_GetByIndex_m9B1255E856F90023DFFDF788900D8CC850A825FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_GetByIndex_mB0313DBD1EEC108E7A56CBD032B41935A98B9744_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_IndexOfKey_mAAA0A32FAB33613ABF78B3EF0D11C9F46300D5F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_IndexOfKey_mD52CCF52F87BC77A9CD8C75ED210B12A17D7CF60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_IsCompatibleKey_m8B212C2AF14D829519F1B3BDC05F91012446B857_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_IsCompatibleKey_mC8E077F01BD5706B6B421211E43936A5C8F0FCD9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_RemoveAt_m432DE9487CAC6F6D1876A0D751CE335E287AC695_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_RemoveAt_mB2AFE137DBB80D922138521966B0CEC40B2E700A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m011DF590F1158921AD698A26D329AA8230098E49_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m86B735D70DFD1C1F1980E8DD12FBB712B63F7D16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_IDictionary_set_Item_m1110A190602850E778779D1BAE20FB78FA0668E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_System_Collections_IDictionary_set_Item_m4CC10DBA13A1786799154FF276C74A2D3E32E7E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_set_Capacity_m26FA5958A11E7EF60913AD382D4903ACB2F17F41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_set_Capacity_m7A0ED577BC29CC13A0AEE80D638680CB6AE733F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_set_Item_m3EA2F47D25047DC10881EC20B3914B12EAF1E3AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_2_set_Item_mAB7967F9D9CA54F508B799F8F5F14A2D3654D928_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2_ThrowIfInvalid_mE6EB7079FF076D272363D43C8FDFCE84EA2FF44E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m123E20CD4E3CC51B5AD2010E3BEB0E08502B1E02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m3DF11CEF04129066D80E213A02C6E1A16EF2770F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m45DA83B8321A999F8E5368833CDD148D95AA141D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m52F8C4F663DE685AD4BAA9EE6B79D0996146FB91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_m0F57D6F0EDCD66E0F2C38F34A3FDDB22BE0FA9D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_m32E5F1F9EECD15CF2B85E3CA2E24BF854EA95DCD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_m48539F6C605F71C1E85435FBAAA2C3A815651DC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_m787605224883C184731D043B9B78E6CA9C11F4C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_m9B4C31FFF4A30D3199474599D010604E7B66A247_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD01A987AC67DEAA4FDF8FC6EEE5776D4730CC1A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD8460633C49D563CB4D497FBD69F4D29207E1B27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE068AD80BD3C4B6230ECE989DCFEFE738F99372F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE1FF92011323A13A1EEAAB7C8C830C64ED8559CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m12993BF315EBE8991042EB476E9FE229BE8E03C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m5DDD616EFD6DDABDB36D731FEBF0C099482F3CBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m5E868449E8268729E3BE59A096065A96EF80D154_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m84F0BFE8C85671F9380F1B579159FEE8235C5C32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m98F0A73D71CAA9EF7C61E80E08E8E8F04CDA1F3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_m9C86A9FF1ECED400114909C5F1D640B4746D5AC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_mCD9F489F5557B6B262FD73A3A21DE7284F5688F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_mEE56DE981A5F83FC28A0CF62408BAE5EBCD6F3A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValidationUtility_1_ValidateAndDisposeIfThrown_mF35D346E766EDEF05AF351EA507500177F415181_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Add_mA868EA144DB2B813E52858FCE00E7308EC56D479_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Add_mEDFAA24C8377C6686846F171F13A4738C572B34C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Clear_m855B464EBAC8C952681D824F4C86D6D240BC92F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Clear_mBDFD3F15403638E3705A3A5FB5B4726EB4DD1E1E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Insert_m1AB2E5F947710A95F1BA43456117C68B757C3790_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Insert_m8236530EE2C1F4DF70CC78C09641213202543B8D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_RemoveAt_m6F65C121FB1F918308DCA8ED173593EBB684E1D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_RemoveAt_mE1515877EFCCABCBB7B5B7D4D6DEB0A5E075CF48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Remove_m45733D09CEC292C4EBBB1D6127FAC8C9F1E903C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_Remove_m7FB4206E1E278B7458191E5CC816ED23EB517534_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_System_Collections_ICollection_CopyTo_mB1FCE0C1AE93514AF57AE589690BDF59A5F7B7D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_System_Collections_ICollection_CopyTo_mC671FCAF39ED4A98F33DBBACC517C1E1915E5D96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_set_Item_mA78D7F0F2DF49C6F8215C1A7B871FFC6D44493BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueList_set_Item_mC1C2DF772219861FD6D6C77E2E4ED58E43A3D990_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_RuntimeMethod_var; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C; struct KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357; struct NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A; struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451; struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; 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 // System.Threading.Tasks.Task`1/<>c<System.Boolean> struct U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D : public RuntimeObject { public: public: }; struct U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.Int32> struct U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E : public RuntimeObject { public: public: }; struct U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.Object> struct U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 : public RuntimeObject { public: public: }; struct U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 : public RuntimeObject { public: public: }; struct U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Boolean> struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 : public RuntimeObject { public: public: }; struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 : public RuntimeObject { public: public: }; struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 : public RuntimeObject { public: public: }; struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<UnityEngine.XR.ARSubsystems.TrackableId> struct Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E : public RuntimeObject { public: public: }; struct Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* ___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_t3D32C3B5004427FBFD9FFE9EA8DF86F434A9ADDA * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___entries_1)); } inline EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* 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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___keys_7)); } inline KeyCollection_t3D32C3B5004427FBFD9FFE9EA8DF86F434A9ADDA * get_keys_7() const { return ___keys_7; } inline KeyCollection_t3D32C3B5004427FBFD9FFE9EA8DF86F434A9ADDA ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t3D32C3B5004427FBFD9FFE9EA8DF86F434A9ADDA * 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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ___values_8)); } inline ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * get_values_8() const { return ___values_8; } inline ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * 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_t1D971BA151CCF2A891990C13C7561FEC253BC7CF, ____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.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* ___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_tD47BC2A2DF081155AF9FC5D5A1C9872C6EF87EB1 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___entries_1)); } inline EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* 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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___keys_7)); } inline KeyCollection_tD47BC2A2DF081155AF9FC5D5A1C9872C6EF87EB1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tD47BC2A2DF081155AF9FC5D5A1C9872C6EF87EB1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tD47BC2A2DF081155AF9FC5D5A1C9872C6EF87EB1 * 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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ___values_8)); } inline ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * get_values_8() const { return ___values_8; } inline ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * 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_tBD3577D7455E9C9FDAB004AF818DFD67809849A3, ____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.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* ___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_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___entries_1)); } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___keys_7)); } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___values_8)); } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * get_values_8() const { return ___values_8; } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ____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<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo> struct Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC354C08F0A7D22E8BDC74F214F1F72A44898CAA3* ___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_t5914C92B062546D0228F45528D5177C3EB6E727C * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 * ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___entries_1)); } inline EntryU5BU5D_tC354C08F0A7D22E8BDC74F214F1F72A44898CAA3* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC354C08F0A7D22E8BDC74F214F1F72A44898CAA3** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC354C08F0A7D22E8BDC74F214F1F72A44898CAA3* 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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___keys_7)); } inline KeyCollection_t5914C92B062546D0228F45528D5177C3EB6E727C * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5914C92B062546D0228F45528D5177C3EB6E727C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5914C92B062546D0228F45528D5177C3EB6E727C * 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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ___values_8)); } inline ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 * get_values_8() const { return ___values_8; } inline ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 * 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_t2B5C2948D35C014478CA4F20AAD1D04720D764DA, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* ___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_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___entries_1)); } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___keys_7)); } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___values_8)); } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * get_values_8() const { return ___values_8; } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* ___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_tCA4820F8266AF4059CC5A14888D8195F0D797499 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___entries_1)); } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___keys_7)); } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___values_8)); } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * get_values_8() const { return ___values_8; } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* ___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_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___entries_1)); } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___keys_7)); } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___values_8)); } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * get_values_8() const { return ___values_8; } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ____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<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* ___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_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___entries_1)); } inline EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* 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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___keys_7)); } inline KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * 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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___values_8)); } inline ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * get_values_8() const { return ___values_8; } inline ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * 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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ____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.EmptyArray`1<System.Object> struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject { public: public: }; struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields { public: // T[] System.EmptyArray`1::Value ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> struct HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_tA46D0E06F0A2F0D80693C33EAA281055E55B573E* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____slots_8)); } inline SlotU5BU5D_tA46D0E06F0A2F0D80693C33EAA281055E55B573E* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_tA46D0E06F0A2F0D80693C33EAA281055E55B573E** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_tA46D0E06F0A2F0D80693C33EAA281055E55B573E* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Linq.Enumerable/Iterator`1<System.Object> struct Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/Iterator`1::threadId int32_t ___threadId_0; // System.Int32 System.Linq.Enumerable/Iterator`1::state int32_t ___state_1; // TSource System.Linq.Enumerable/Iterator`1::current RuntimeObject * ___current_2; public: inline static int32_t get_offset_of_threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279, ___threadId_0)); } inline int32_t get_threadId_0() const { return ___threadId_0; } inline int32_t* get_address_of_threadId_0() { return &___threadId_0; } inline void set_threadId_0(int32_t value) { ___threadId_0 = value; } inline static int32_t get_offset_of_state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279, ___state_1)); } inline int32_t get_state_1() const { return ___state_1; } inline int32_t* get_address_of_state_1() { return &___state_1; } inline void set_state_1(int32_t value) { ___state_1 = value; } inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279, ___current_2)); } inline RuntimeObject * get_current_2() const { return ___current_2; } inline RuntimeObject ** get_address_of_current_2() { return &___current_2; } inline void set_current_2(RuntimeObject * value) { ___current_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_2), (void*)value); } }; // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> struct List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____items_1)); } inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* get__items_1() const { return ____items_1; } inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC** get_address_of__items_1() { return &____items_1; } inline void set__items_1(BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* 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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD_StaticFields, ____emptyArray_5)); } inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* get__emptyArray_5() const { return ____emptyArray_5; } inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object> struct Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 : public RuntimeObject { public: // TKey System.Collections.Concurrent.ConcurrentDictionary`2/Node::_key RuntimeObject * ____key_0; // TValue System.Collections.Concurrent.ConcurrentDictionary`2/Node::_value RuntimeObject * ____value_1; // System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2/Node::_next Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * ____next_2; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2/Node::_hashcode int32_t ____hashcode_3; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9, ____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(Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } inline static int32_t get_offset_of__next_2() { return static_cast<int32_t>(offsetof(Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9, ____next_2)); } inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * get__next_2() const { return ____next_2; } inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 ** get_address_of__next_2() { return &____next_2; } inline void set__next_2(Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * value) { ____next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____next_2), (void*)value); } inline static int32_t get_offset_of__hashcode_3() { return static_cast<int32_t>(offsetof(Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9, ____hashcode_3)); } inline int32_t get__hashcode_3() const { return ____hashcode_3; } inline int32_t* get_address_of__hashcode_3() { return &____hashcode_3; } inline void set__hashcode_3(int32_t value) { ____hashcode_3 = value; } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument> struct ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 : 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_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0, ___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.Reflection.CustomAttributeTypedArgument> struct ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 : 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_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294, ___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.Object> struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 : 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_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ___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.IO.SearchResultHandler`1<System.Object> struct SearchResultHandler_1_tB819A963B62A843474E27DDAFE239812CF70839D : public RuntimeObject { public: public: }; // System.Threading.Tasks.Shared`1<System.Object> struct Shared_1_t9CD470164021C8F0989F8E21A955B5B9AE6CA05C : public RuntimeObject { public: // T System.Threading.Tasks.Shared`1::Value RuntimeObject * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t9CD470164021C8F0989F8E21A955B5B9AE6CA05C, ___Value_0)); } inline RuntimeObject * get_Value_0() const { return ___Value_0; } inline RuntimeObject ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(RuntimeObject * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object> struct SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 : public RuntimeObject { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_sortedList SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ____sortedList_0; // System.Int32 System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_currentValue RuntimeObject * ____currentValue_3; public: inline static int32_t get_offset_of__sortedList_0() { return static_cast<int32_t>(offsetof(SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838, ____sortedList_0)); } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * get__sortedList_0() const { return ____sortedList_0; } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 ** get_address_of__sortedList_0() { return &____sortedList_0; } inline void set__sortedList_0(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * value) { ____sortedList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sortedList_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838, ____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(SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838, ____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(SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838, ____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.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 : public RuntimeObject { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_sortedList SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ____sortedList_0; // System.Int32 System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.SortedList`2/SortedListValueEnumerator::_currentValue RuntimeObject * ____currentValue_3; public: inline static int32_t get_offset_of__sortedList_0() { return static_cast<int32_t>(offsetof(SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5, ____sortedList_0)); } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * get__sortedList_0() const { return ____sortedList_0; } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 ** get_address_of__sortedList_0() { return &____sortedList_0; } inline void set__sortedList_0(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * value) { ____sortedList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sortedList_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5, ____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(SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5, ____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(SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5, ____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.SortedList`2<System.Object,System.Object> struct SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 : public RuntimeObject { public: // TKey[] System.Collections.Generic.SortedList`2::keys ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___keys_0; // TValue[] System.Collections.Generic.SortedList`2::values ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___values_1; // System.Int32 System.Collections.Generic.SortedList`2::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.SortedList`2::version int32_t ___version_3; // System.Collections.Generic.IComparer`1<TKey> System.Collections.Generic.SortedList`2::comparer RuntimeObject* ___comparer_4; // System.Collections.Generic.SortedList`2/KeyList<TKey,TValue> System.Collections.Generic.SortedList`2::keyList KeyList_tA295C9817D6A655E7CB7BE14FC0A630C5A4107BC * ___keyList_5; // System.Collections.Generic.SortedList`2/ValueList<TKey,TValue> System.Collections.Generic.SortedList`2::valueList ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * ___valueList_6; // System.Object System.Collections.Generic.SortedList`2::_syncRoot RuntimeObject * ____syncRoot_7; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___keys_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_keys_0() const { return ___keys_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___values_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_values_1() const { return ___values_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ____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(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___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_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } inline static int32_t get_offset_of_keyList_5() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___keyList_5)); } inline KeyList_tA295C9817D6A655E7CB7BE14FC0A630C5A4107BC * get_keyList_5() const { return ___keyList_5; } inline KeyList_tA295C9817D6A655E7CB7BE14FC0A630C5A4107BC ** get_address_of_keyList_5() { return &___keyList_5; } inline void set_keyList_5(KeyList_tA295C9817D6A655E7CB7BE14FC0A630C5A4107BC * value) { ___keyList_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyList_5), (void*)value); } inline static int32_t get_offset_of_valueList_6() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ___valueList_6)); } inline ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * get_valueList_6() const { return ___valueList_6; } inline ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 ** get_address_of_valueList_6() { return &___valueList_6; } inline void set_valueList_6(ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * value) { ___valueList_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueList_6), (void*)value); } inline static int32_t get_offset_of__syncRoot_7() { return static_cast<int32_t>(offsetof(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0, ____syncRoot_7)); } inline RuntimeObject * get__syncRoot_7() const { return ____syncRoot_7; } inline RuntimeObject ** get_address_of__syncRoot_7() { return &____syncRoot_7; } inline void set__syncRoot_7(RuntimeObject * value) { ____syncRoot_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_7), (void*)value); } }; // System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 : public RuntimeObject { public: // TKey[] System.Collections.Generic.SortedList`2::keys TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* ___keys_0; // TValue[] System.Collections.Generic.SortedList`2::values ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___values_1; // System.Int32 System.Collections.Generic.SortedList`2::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.SortedList`2::version int32_t ___version_3; // System.Collections.Generic.IComparer`1<TKey> System.Collections.Generic.SortedList`2::comparer RuntimeObject* ___comparer_4; // System.Collections.Generic.SortedList`2/KeyList<TKey,TValue> System.Collections.Generic.SortedList`2::keyList KeyList_t296975AE18449739E9E0D36201870D32AD100126 * ___keyList_5; // System.Collections.Generic.SortedList`2/ValueList<TKey,TValue> System.Collections.Generic.SortedList`2::valueList ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * ___valueList_6; // System.Object System.Collections.Generic.SortedList`2::_syncRoot RuntimeObject * ____syncRoot_7; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___keys_0)); } inline TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* get_keys_0() const { return ___keys_0; } inline TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___values_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_values_1() const { return ___values_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ____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(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___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_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } inline static int32_t get_offset_of_keyList_5() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___keyList_5)); } inline KeyList_t296975AE18449739E9E0D36201870D32AD100126 * get_keyList_5() const { return ___keyList_5; } inline KeyList_t296975AE18449739E9E0D36201870D32AD100126 ** get_address_of_keyList_5() { return &___keyList_5; } inline void set_keyList_5(KeyList_t296975AE18449739E9E0D36201870D32AD100126 * value) { ___keyList_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyList_5), (void*)value); } inline static int32_t get_offset_of_valueList_6() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ___valueList_6)); } inline ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * get_valueList_6() const { return ___valueList_6; } inline ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A ** get_address_of_valueList_6() { return &___valueList_6; } inline void set_valueList_6(ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * value) { ___valueList_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueList_6), (void*)value); } inline static int32_t get_offset_of__syncRoot_7() { return static_cast<int32_t>(offsetof(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230, ____syncRoot_7)); } inline RuntimeObject * get__syncRoot_7() const { return ____syncRoot_7; } inline RuntimeObject ** get_address_of__syncRoot_7() { return &____syncRoot_7; } inline void set__syncRoot_7(RuntimeObject * value) { ____syncRoot_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_7), (void*)value); } }; // System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object> struct SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259 : public RuntimeObject { public: // T[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue/SparseArray`1::m_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_array_0; public: inline static int32_t get_offset_of_m_array_0() { return static_cast<int32_t>(offsetof(SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259, ___m_array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_array_0() const { return ___m_array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_array_0() { return &___m_array_0; } inline void set_m_array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_array_0), (void*)value); } }; // System.Threading.SparselyPopulatedArray`1<System.Object> struct SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B : public RuntimeObject { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArray`1::m_tail SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_tail_0; public: inline static int32_t get_offset_of_m_tail_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B, ___m_tail_0)); } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_tail_0() const { return ___m_tail_0; } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_tail_0() { return &___m_tail_0; } inline void set_m_tail_0(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value) { ___m_tail_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_tail_0), (void*)value); } }; // System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object> struct SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 : public RuntimeObject { public: // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089, ___m_task_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object> struct Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA : public RuntimeObject { public: // System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[] System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_buckets NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A* ____buckets_0; // System.Object[] System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_locks ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____locks_1; // System.Int32[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_countPerLock Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____countPerLock_2; public: inline static int32_t get_offset_of__buckets_0() { return static_cast<int32_t>(offsetof(Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA, ____buckets_0)); } inline NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A* get__buckets_0() const { return ____buckets_0; } inline NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A** get_address_of__buckets_0() { return &____buckets_0; } inline void set__buckets_0(NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A* value) { ____buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_0), (void*)value); } inline static int32_t get_offset_of__locks_1() { return static_cast<int32_t>(offsetof(Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA, ____locks_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__locks_1() const { return ____locks_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__locks_1() { return &____locks_1; } inline void set__locks_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____locks_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____locks_1), (void*)value); } inline static int32_t get_offset_of__countPerLock_2() { return static_cast<int32_t>(offsetof(Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA, ____countPerLock_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__countPerLock_2() const { return ____countPerLock_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__countPerLock_2() { return &____countPerLock_2; } inline void set__countPerLock_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____countPerLock_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____countPerLock_2), (void*)value); } }; // System.Tuple`2<System.Object,System.Char> struct Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`2::m_Item2 Il2CppChar ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6, ___m_Item2_1)); } inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; } inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(Il2CppChar value) { ___m_Item2_1 = value; } }; // System.Tuple`2<System.Object,System.Object> struct Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`2::m_Item2 RuntimeObject * ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1, ___m_Item2_1)); } inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; } inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(RuntimeObject * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value); } }; // System.Tuple`3<System.Object,System.Object,System.Object> struct Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E : public RuntimeObject { public: // T1 System.Tuple`3::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`3::m_Item2 RuntimeObject * ___m_Item2_1; // T3 System.Tuple`3::m_Item3 RuntimeObject * ___m_Item3_2; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item2_1)); } inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; } inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(RuntimeObject * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value); } inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item3_2)); } inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; } inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; } inline void set_m_Item3_2(RuntimeObject * value) { ___m_Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item3_2), (void*)value); } }; // System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32> struct Tuple_4_t936566050E79A53330A93469CAF15575A12A114D : public RuntimeObject { public: // T1 System.Tuple`4::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`4::m_Item2 RuntimeObject * ___m_Item2_1; // T3 System.Tuple`4::m_Item3 int32_t ___m_Item3_2; // T4 System.Tuple`4::m_Item4 int32_t ___m_Item4_3; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item2_1)); } inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; } inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(RuntimeObject * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value); } inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item3_2)); } inline int32_t get_m_Item3_2() const { return ___m_Item3_2; } inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; } inline void set_m_Item3_2(int32_t value) { ___m_Item3_2 = value; } inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item4_3)); } inline int32_t get_m_Item4_3() const { return ___m_Item4_3; } inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; } inline void set_m_Item4_3(int32_t value) { ___m_Item4_3 = value; } }; // System.Tuple`4<System.Object,System.Object,System.Object,System.Object> struct Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 : public RuntimeObject { public: // T1 System.Tuple`4::m_Item1 RuntimeObject * ___m_Item1_0; // T2 System.Tuple`4::m_Item2 RuntimeObject * ___m_Item2_1; // T3 System.Tuple`4::m_Item3 RuntimeObject * ___m_Item3_2; // T4 System.Tuple`4::m_Item4 RuntimeObject * ___m_Item4_3; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item1_0)); } inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; } inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(RuntimeObject * value) { ___m_Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value); } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item2_1)); } inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; } inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(RuntimeObject * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value); } inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item3_2)); } inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; } inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; } inline void set_m_Item3_2(RuntimeObject * value) { ___m_Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item3_2), (void*)value); } inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item4_3)); } inline RuntimeObject * get_m_Item4_3() const { return ___m_Item4_3; } inline RuntimeObject ** get_address_of_m_Item4_3() { return &___m_Item4_3; } inline void set_m_Item4_3(RuntimeObject * value) { ___m_Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item4_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane> struct ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor> struct ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace> struct ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant> struct ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud> struct ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast> struct ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> struct ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> struct ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> struct ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::m_Trackables HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___m_Trackables_4; public: inline static int32_t get_offset_of_m_Trackables_4() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44, ___m_Trackables_4)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_m_Trackables_4() const { return ___m_Trackables_4; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_m_Trackables_4() { return &___m_Trackables_4; } inline void set_m_Trackables_4(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___m_Trackables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_4), (void*)value); } }; struct ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields { public: // System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.ValidationUtility`1::s_IdSet HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * ___s_IdSet_0; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_AddedAction String_t* ___k_AddedAction_1; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_UpdatedAction String_t* ___k_UpdatedAction_2; // System.String UnityEngine.XR.ARSubsystems.ValidationUtility`1::k_RemovedAction String_t* ___k_RemovedAction_3; public: inline static int32_t get_offset_of_s_IdSet_0() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields, ___s_IdSet_0)); } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * get_s_IdSet_0() const { return ___s_IdSet_0; } inline HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D ** get_address_of_s_IdSet_0() { return &___s_IdSet_0; } inline void set_s_IdSet_0(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * value) { ___s_IdSet_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IdSet_0), (void*)value); } inline static int32_t get_offset_of_k_AddedAction_1() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields, ___k_AddedAction_1)); } inline String_t* get_k_AddedAction_1() const { return ___k_AddedAction_1; } inline String_t** get_address_of_k_AddedAction_1() { return &___k_AddedAction_1; } inline void set_k_AddedAction_1(String_t* value) { ___k_AddedAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_AddedAction_1), (void*)value); } inline static int32_t get_offset_of_k_UpdatedAction_2() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields, ___k_UpdatedAction_2)); } inline String_t* get_k_UpdatedAction_2() const { return ___k_UpdatedAction_2; } inline String_t** get_address_of_k_UpdatedAction_2() { return &___k_UpdatedAction_2; } inline void set_k_UpdatedAction_2(String_t* value) { ___k_UpdatedAction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_UpdatedAction_2), (void*)value); } inline static int32_t get_offset_of_k_RemovedAction_3() { return static_cast<int32_t>(offsetof(ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields, ___k_RemovedAction_3)); } inline String_t* get_k_RemovedAction_3() const { return ___k_RemovedAction_3; } inline String_t** get_address_of_k_RemovedAction_3() { return &___k_RemovedAction_3; } inline void set_k_RemovedAction_3(String_t* value) { ___k_RemovedAction_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_RemovedAction_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C, ___dictionary_0)); } inline Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4, ___dictionary_0)); } inline Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo> struct ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101, ___dictionary_0)); } inline Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63, ___dictionary_0)); } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object> struct ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 : public RuntimeObject { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/ValueList::_dict SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ____dict_0; public: inline static int32_t get_offset_of__dict_0() { return static_cast<int32_t>(offsetof(ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940, ____dict_0)); } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * get__dict_0() const { return ____dict_0; } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 ** get_address_of__dict_0() { return &____dict_0; } inline void set__dict_0(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * value) { ____dict_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____dict_0), (void*)value); } }; // System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A : public RuntimeObject { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/ValueList::_dict SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ____dict_0; public: inline static int32_t get_offset_of__dict_0() { return static_cast<int32_t>(offsetof(ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A, ____dict_0)); } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * get__dict_0() const { return ____dict_0; } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 ** get_address_of__dict_0() { return &____dict_0; } inline void set__dict_0(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * value) { ____dict_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____dict_0), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // UnityEngine.Events.BaseInvokableCall struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 : public RuntimeObject { public: public: }; // UnityEngine.CustomYieldInstruction struct CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 : public RuntimeObject { public: public: }; // System.Collections.LowLevelComparer struct LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 : public RuntimeObject { public: public: }; struct LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields { public: // System.Collections.LowLevelComparer System.Collections.LowLevelComparer::Default LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields, ___Default_0)); } inline LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * get_Default_0() const { return ___Default_0; } inline LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Collections.Generic.ObjectEqualityComparer struct ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 : public RuntimeObject { public: public: }; struct ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields { public: // System.Collections.Generic.ObjectEqualityComparer System.Collections.Generic.ObjectEqualityComparer::Default ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields, ___Default_0)); } inline ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * get_Default_0() const { return ___Default_0; } inline ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)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.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___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_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* 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; } }; // UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider struct SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E : public RuntimeObject { public: // System.String UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<id>k__BackingField String_t* ___U3CidU3Ek__BackingField_0; // System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<providerType>k__BackingField Type_t * ___U3CproviderTypeU3Ek__BackingField_1; // System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<subsystemTypeOverride>k__BackingField Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CidU3Ek__BackingField_0)); } inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; } inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; } inline void set_U3CidU3Ek__BackingField_0(String_t* value) { ___U3CidU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CproviderTypeU3Ek__BackingField_1)); } inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; } inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; } inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value) { ___U3CproviderTypeU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); } inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; } inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; } inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value) { ___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value); } }; // UnityEngine.SubsystemsImplementation.SubsystemProvider struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 : public RuntimeObject { public: // System.Boolean UnityEngine.SubsystemsImplementation.SubsystemProvider::m_Running bool ___m_Running_0; public: inline static int32_t get_offset_of_m_Running_0() { return static_cast<int32_t>(offsetof(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9, ___m_Running_0)); } inline bool get_m_Running_0() const { return ___m_Running_0; } inline bool* get_address_of_m_Running_0() { return &___m_Running_0; } inline void set_m_Running_0(bool value) { ___m_Running_0 = value; } }; // UnityEngine.SubsystemsImplementation.SubsystemWithProvider struct SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E : public RuntimeObject { public: // System.Boolean UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<running>k__BackingField bool ___U3CrunningU3Ek__BackingField_0; // UnityEngine.SubsystemsImplementation.SubsystemProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<providerBase>k__BackingField SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___U3CproviderBaseU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CrunningU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CrunningU3Ek__BackingField_0)); } inline bool get_U3CrunningU3Ek__BackingField_0() const { return ___U3CrunningU3Ek__BackingField_0; } inline bool* get_address_of_U3CrunningU3Ek__BackingField_0() { return &___U3CrunningU3Ek__BackingField_0; } inline void set_U3CrunningU3Ek__BackingField_0(bool value) { ___U3CrunningU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CproviderBaseU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CproviderBaseU3Ek__BackingField_1)); } inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * get_U3CproviderBaseU3Ek__BackingField_1() const { return ___U3CproviderBaseU3Ek__BackingField_1; } inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 ** get_address_of_U3CproviderBaseU3Ek__BackingField_1() { return &___U3CproviderBaseU3Ek__BackingField_1; } inline void set_U3CproviderBaseU3Ek__BackingField_1(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * value) { ___U3CproviderBaseU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderBaseU3Ek__BackingField_1), (void*)value); } }; // UnityEngine.Events.UnityEventBase struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB : public RuntimeObject { public: // UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * ___m_Calls_0; // UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * ___m_PersistentCalls_1; // System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty bool ___m_CallsDirty_2; public: inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_Calls_0)); } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * get_m_Calls_0() const { return ___m_Calls_0; } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 ** get_address_of_m_Calls_0() { return &___m_Calls_0; } inline void set_m_Calls_0(InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * value) { ___m_Calls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value); } inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_PersistentCalls_1)); } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; } inline void set_m_PersistentCalls_1(PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * value) { ___m_PersistentCalls_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value); } inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_CallsDirty_2)); } inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; } inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; } inline void set_m_CallsDirty_2(bool value) { ___m_CallsDirty_2 = value; } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean> struct ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C, ___m_task_0)); } inline Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> struct ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2, ___m_task_0)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object> struct ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED, ___m_task_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult> struct ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071, ___m_task_0)); } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Collections.Generic.List`1/Enumerator<System.Object> struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * 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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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.SortedList`2/Enumerator<System.Object,System.Object> struct Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/Enumerator::_sortedList SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ____sortedList_0; // TKey System.Collections.Generic.SortedList`2/Enumerator::_key RuntimeObject * ____key_1; // TValue System.Collections.Generic.SortedList`2/Enumerator::_value RuntimeObject * ____value_2; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_index int32_t ____index_3; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_version int32_t ____version_4; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_getEnumeratorRetType int32_t ____getEnumeratorRetType_5; public: inline static int32_t get_offset_of__sortedList_0() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____sortedList_0)); } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * get__sortedList_0() const { return ____sortedList_0; } inline SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 ** get_address_of__sortedList_0() { return &____sortedList_0; } inline void set__sortedList_0(SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * value) { ____sortedList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sortedList_0), (void*)value); } inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____key_1)); } inline RuntimeObject * get__key_1() const { return ____key_1; } inline RuntimeObject ** get_address_of__key_1() { return &____key_1; } inline void set__key_1(RuntimeObject * value) { ____key_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_1), (void*)value); } inline static int32_t get_offset_of__value_2() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____value_2)); } inline RuntimeObject * get__value_2() const { return ____value_2; } inline RuntimeObject ** get_address_of__value_2() { return &____value_2; } inline void set__value_2(RuntimeObject * value) { ____value_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_2), (void*)value); } inline static int32_t get_offset_of__index_3() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____index_3)); } inline int32_t get__index_3() const { return ____index_3; } inline int32_t* get_address_of__index_3() { return &____index_3; } inline void set__index_3(int32_t value) { ____index_3 = value; } inline static int32_t get_offset_of__version_4() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____version_4)); } inline int32_t get__version_4() const { return ____version_4; } inline int32_t* get_address_of__version_4() { return &____version_4; } inline void set__version_4(int32_t value) { ____version_4 = value; } inline static int32_t get_offset_of__getEnumeratorRetType_5() { return static_cast<int32_t>(offsetof(Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66, ____getEnumeratorRetType_5)); } inline int32_t get__getEnumeratorRetType_5() const { return ____getEnumeratorRetType_5; } inline int32_t* get_address_of__getEnumeratorRetType_5() { return &____getEnumeratorRetType_5; } inline void set__getEnumeratorRetType_5(int32_t value) { ____getEnumeratorRetType_5 = value; } }; // UnityEngine.Events.InvokableCall`1<System.Int32> struct InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9, ___Delegate_0)); } inline UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`1<System.Object> struct InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF, ___Delegate_0)); } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`2<System.Object,System.Object> struct InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`2<T1,T2> UnityEngine.Events.InvokableCall`2::Delegate UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90, ___Delegate_0)); } inline UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object> struct InvokableCall_3_t6248B520025BF491335E1E2175E578485B570870 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`3<T1,T2,T3> UnityEngine.Events.InvokableCall`3::Delegate UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_3_t6248B520025BF491335E1E2175E578485B570870, ___Delegate_0)); } inline UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object> struct InvokableCall_4_t201A5585285FF7B4E8B7C74571F84D14F38008AD : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`4<T1,T2,T3,T4> UnityEngine.Events.InvokableCall`4::Delegate UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_4_t201A5585285FF7B4E8B7C74571F84D14F38008AD, ___Delegate_0)); } inline UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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); } }; // UnityEngine.XR.ARSubsystems.Promise`1<System.Object> struct Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB : public CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 { public: // T UnityEngine.XR.ARSubsystems.Promise`1::<result>k__BackingField RuntimeObject * ___U3CresultU3Ek__BackingField_0; // System.Boolean UnityEngine.XR.ARSubsystems.Promise`1::m_Complete bool ___m_Complete_1; public: inline static int32_t get_offset_of_U3CresultU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB, ___U3CresultU3Ek__BackingField_0)); } inline RuntimeObject * get_U3CresultU3Ek__BackingField_0() const { return ___U3CresultU3Ek__BackingField_0; } inline RuntimeObject ** get_address_of_U3CresultU3Ek__BackingField_0() { return &___U3CresultU3Ek__BackingField_0; } inline void set_U3CresultU3Ek__BackingField_0(RuntimeObject * value) { ___U3CresultU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CresultU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_m_Complete_1() { return static_cast<int32_t>(offsetof(Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB, ___m_Complete_1)); } inline bool get_m_Complete_1() const { return ___m_Complete_1; } inline bool* get_address_of_m_Complete_1() { return &___m_Complete_1; } inline void set_m_Complete_1(bool value) { ___m_Complete_1 = value; } }; // System.Collections.Generic.HashSet`1/Slot<System.Object> struct Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value RuntimeObject * ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___value_2)); } inline RuntimeObject * get_value_2() const { return ___value_2; } inline RuntimeObject ** get_address_of_value_2() { return &___value_2; } inline void set_value_2(RuntimeObject * value) { ___value_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value); } }; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object> struct SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; // UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object> struct SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E { public: public: }; // UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object> struct SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 { public: public: }; // UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object> struct SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E { public: // TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField RuntimeObject * ___U3CsubsystemDescriptorU3Ek__BackingField_2; // TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField RuntimeObject * ___U3CproviderU3Ek__BackingField_3; public: inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); } inline RuntimeObject * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; } inline RuntimeObject ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; } inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(RuntimeObject * value) { ___U3CsubsystemDescriptorU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2, ___U3CproviderU3Ek__BackingField_3)); } inline RuntimeObject * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; } inline RuntimeObject ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; } inline void set_U3CproviderU3Ek__BackingField_3(RuntimeObject * value) { ___U3CproviderU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean> struct TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C, ___m_task_0)); } inline Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32> struct TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887, ___m_task_0)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Object> struct TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE, ___m_task_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult> struct TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC, ___m_task_0)); } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object> struct TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 { public: // System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1::m_Trackables Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___m_Trackables_0; public: inline static int32_t get_offset_of_m_Trackables_0() { return static_cast<int32_t>(offsetof(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2, ___m_Trackables_0)); } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * get_m_Trackables_0() const { return ___m_Trackables_0; } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 ** get_address_of_m_Trackables_0() { return &___m_Trackables_0; } inline void set_m_Trackables_0(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * value) { ___m_Trackables_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trackables_0), (void*)value); } }; // UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32> struct Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 { public: // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::a int32_t ___a_0; // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::b int32_t ___b_1; // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::c int32_t ___c_2; public: inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___a_0)); } inline int32_t get_a_0() const { return ___a_0; } inline int32_t* get_address_of_a_0() { return &___a_0; } inline void set_a_0(int32_t value) { ___a_0 = value; } inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___b_1)); } inline int32_t get_b_1() const { return ___b_1; } inline int32_t* get_address_of_b_1() { return &___b_1; } inline void set_b_1(int32_t value) { ___b_1 = value; } inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___c_2)); } inline int32_t get_c_2() const { return ___c_2; } inline int32_t* get_address_of_c_2() { return &___c_2; } inline void set_c_2(int32_t value) { ___c_2 = value; } }; // UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16> struct Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F { public: // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::a uint16_t ___a_0; // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::b uint16_t ___b_1; // T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::c uint16_t ___c_2; public: inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___a_0)); } inline uint16_t get_a_0() const { return ___a_0; } inline uint16_t* get_address_of_a_0() { return &___a_0; } inline void set_a_0(uint16_t value) { ___a_0 = value; } inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___b_1)); } inline uint16_t get_b_1() const { return ___b_1; } inline uint16_t* get_address_of_b_1() { return &___b_1; } inline void set_b_1(uint16_t value) { ___b_1 = value; } inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___c_2)); } inline uint16_t get_c_2() const { return ___c_2; } inline uint16_t* get_address_of_c_2() { return &___c_2; } inline void set_c_2(uint16_t value) { ___c_2 = value; } }; // UnityEngine.Events.UnityEvent`1<System.Int32> struct UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.Events.UnityEvent`1<System.Object> struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.Events.UnityEvent`2<System.Object,System.Object> struct UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`2::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object> struct UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`3::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object> struct UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`4::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // System.ValueTuple`2<System.Int32,System.Int32> struct ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 int32_t ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E, ___Item2_1)); } inline int32_t get_Item2_1() const { return ___Item2_1; } inline int32_t* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(int32_t value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.Boolean> struct ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 bool ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.Object> struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.Linq.Enumerable/WhereArrayIterator`1<System.Object> struct WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 : public Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 { public: // TSource[] System.Linq.Enumerable/WhereArrayIterator`1::source ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereArrayIterator`1::predicate Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate_4; // System.Int32 System.Linq.Enumerable/WhereArrayIterator`1::index int32_t ___index_5; public: inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86, ___source_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_source_3() const { return ___source_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_source_3() { return &___source_3; } inline void set_source_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value); } inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86, ___predicate_4)); } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * get_predicate_4() const { return ___predicate_4; } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 ** get_address_of_predicate_4() { return &___predicate_4; } inline void set_predicate_4(Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * value) { ___predicate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value); } inline static int32_t get_offset_of_index_5() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86, ___index_5)); } inline int32_t get_index_5() const { return ___index_5; } inline int32_t* get_address_of_index_5() { return &___index_5; } inline void set_index_5(int32_t value) { ___index_5 = value; } }; // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object> struct WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 : public Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 { public: // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source RuntimeObject* ___source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator RuntimeObject* ___enumerator_5; public: inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0, ___source_3)); } inline RuntimeObject* get_source_3() const { return ___source_3; } inline RuntimeObject** get_address_of_source_3() { return &___source_3; } inline void set_source_3(RuntimeObject* value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value); } inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0, ___predicate_4)); } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * get_predicate_4() const { return ___predicate_4; } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 ** get_address_of_predicate_4() { return &___predicate_4; } inline void set_predicate_4(Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * value) { ___predicate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value); } inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0, ___enumerator_5)); } inline RuntimeObject* get_enumerator_5() const { return ___enumerator_5; } inline RuntimeObject** get_address_of_enumerator_5() { return &___enumerator_5; } inline void set_enumerator_5(RuntimeObject* value) { ___enumerator_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumerator_5), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { 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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD { public: // System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD, ___m_source_0)); } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_m_source_0() const { return ___m_source_0; } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } }; struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields { public: // System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_ActionToActionObjShunt_1; public: inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields, ___s_ActionToActionObjShunt_1)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; } inline void set_s_ActionToActionObjShunt_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_ActionToActionObjShunt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { 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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 { public: // System.Type System.Reflection.CustomAttributeTypedArgument::argumentType Type_t * ___argumentType_0; // System.Object System.Reflection.CustomAttributeTypedArgument::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___argumentType_0)); } inline Type_t * get_argumentType_0() const { return ___argumentType_0; } inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; } inline void set_argumentType_0(Type_t * value) { ___argumentType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___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.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value); } }; // UnityEngine.XR.InputDevice struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E { public: // System.UInt64 UnityEngine.XR.InputDevice::m_DeviceId uint64_t ___m_DeviceId_1; // System.Boolean UnityEngine.XR.InputDevice::m_Initialized bool ___m_Initialized_2; public: inline static int32_t get_offset_of_m_DeviceId_1() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E, ___m_DeviceId_1)); } inline uint64_t get_m_DeviceId_1() const { return ___m_DeviceId_1; } inline uint64_t* get_address_of_m_DeviceId_1() { return &___m_DeviceId_1; } inline void set_m_DeviceId_1(uint64_t value) { ___m_DeviceId_1 = value; } inline static int32_t get_offset_of_m_Initialized_2() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E, ___m_Initialized_2)); } inline bool get_m_Initialized_2() const { return ___m_Initialized_2; } inline bool* get_address_of_m_Initialized_2() { return &___m_Initialized_2; } inline void set_m_Initialized_2(bool value) { ___m_Initialized_2 = value; } }; struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_StaticFields { public: // System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.InputDevice::s_InputSubsystemCache List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * ___s_InputSubsystemCache_0; public: inline static int32_t get_offset_of_s_InputSubsystemCache_0() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_StaticFields, ___s_InputSubsystemCache_0)); } inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * get_s_InputSubsystemCache_0() const { return ___s_InputSubsystemCache_0; } inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 ** get_address_of_s_InputSubsystemCache_0() { return &___s_InputSubsystemCache_0; } inline void set_s_InputSubsystemCache_0(List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * value) { ___s_InputSubsystemCache_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InputSubsystemCache_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.InputDevice struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_marshaled_pinvoke { uint64_t ___m_DeviceId_1; int32_t ___m_Initialized_2; }; // Native definition for COM marshalling of UnityEngine.XR.InputDevice struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_marshaled_com { uint64_t ___m_DeviceId_1; int32_t ___m_Initialized_2; }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { 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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___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_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { 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_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___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; } }; // UnityEngine.Events.InvokableCall struct InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction UnityEngine.Events.InvokableCall::Delegate UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741, ___Delegate_0)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.XR.MeshId struct MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 { public: // System.UInt64 UnityEngine.XR.MeshId::m_SubId1 uint64_t ___m_SubId1_1; // System.UInt64 UnityEngine.XR.MeshId::m_SubId2 uint64_t ___m_SubId2_2; public: inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767, ___m_SubId1_1)); } inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; } inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; } inline void set_m_SubId1_1(uint64_t value) { ___m_SubId1_1 = value; } inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767, ___m_SubId2_2)); } inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; } inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; } inline void set_m_SubId2_2(uint64_t value) { ___m_SubId2_2 = value; } }; struct MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767_StaticFields { public: // UnityEngine.XR.MeshId UnityEngine.XR.MeshId::s_InvalidId MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___s_InvalidId_0; public: inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767_StaticFields, ___s_InvalidId_0)); } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_s_InvalidId_0() const { return ___s_InvalidId_0; } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; } inline void set_s_InvalidId_0(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value) { ___s_InvalidId_0 = value; } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.SceneManagement.Scene struct Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE { public: // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // UnityEngine.XR.ARSubsystems.ScopedProfiler struct ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E { public: union { struct { }; uint8_t ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E__padding[1]; }; public: }; // UnityEngine.XR.ARSubsystems.SerializableGuid struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC { public: // System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidLow uint64_t ___m_GuidLow_1; // System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidHigh uint64_t ___m_GuidHigh_2; public: inline static int32_t get_offset_of_m_GuidLow_1() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidLow_1)); } inline uint64_t get_m_GuidLow_1() const { return ___m_GuidLow_1; } inline uint64_t* get_address_of_m_GuidLow_1() { return &___m_GuidLow_1; } inline void set_m_GuidLow_1(uint64_t value) { ___m_GuidLow_1 = value; } inline static int32_t get_offset_of_m_GuidHigh_2() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidHigh_2)); } inline uint64_t get_m_GuidHigh_2() const { return ___m_GuidHigh_2; } inline uint64_t* get_address_of_m_GuidHigh_2() { return &___m_GuidHigh_2; } inline void set_m_GuidHigh_2(uint64_t value) { ___m_GuidHigh_2 = value; } }; struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields { public: // UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.SerializableGuid::k_Empty SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___k_Empty_0; public: inline static int32_t get_offset_of_k_Empty_0() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields, ___k_Empty_0)); } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_k_Empty_0() const { return ___k_Empty_0; } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_k_Empty_0() { return &___k_Empty_0; } inline void set_k_Empty_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value) { ___k_Empty_0 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { 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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___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; } }; // UnityEngine.XR.ARSubsystems.TrackableId struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B { public: // System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1 uint64_t ___m_SubId1_2; // System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2 uint64_t ___m_SubId2_3; public: inline static int32_t get_offset_of_m_SubId1_2() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId1_2)); } inline uint64_t get_m_SubId1_2() const { return ___m_SubId1_2; } inline uint64_t* get_address_of_m_SubId1_2() { return &___m_SubId1_2; } inline void set_m_SubId1_2(uint64_t value) { ___m_SubId1_2 = value; } inline static int32_t get_offset_of_m_SubId2_3() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId2_3)); } inline uint64_t get_m_SubId2_3() const { return ___m_SubId2_3; } inline uint64_t* get_address_of_m_SubId2_3() { return &___m_SubId2_3; } inline void set_m_SubId2_3(uint64_t value) { ___m_SubId2_3 = value; } }; struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields { public: // System.Text.RegularExpressions.Regex UnityEngine.XR.ARSubsystems.TrackableId::s_TrackableIdRegex Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___s_TrackableIdRegex_0; // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___s_InvalidId_1; public: inline static int32_t get_offset_of_s_TrackableIdRegex_0() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_TrackableIdRegex_0)); } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_s_TrackableIdRegex_0() const { return ___s_TrackableIdRegex_0; } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_s_TrackableIdRegex_0() { return &___s_TrackableIdRegex_0; } inline void set_s_TrackableIdRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value) { ___s_TrackableIdRegex_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_TrackableIdRegex_0), (void*)value); } inline static int32_t get_offset_of_s_InvalidId_1() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_InvalidId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_s_InvalidId_1() const { return ___s_InvalidId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_s_InvalidId_1() { return &___s_InvalidId_1; } inline void set_s_InvalidId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___s_InvalidId_1 = value; } }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { 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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___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.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { 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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___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; } }; // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // System.Threading.Tasks.VoidTaskResult struct VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 { public: union { struct { }; uint8_t VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004__padding[1]; }; public: }; // UnityEngine.XR.ARSubsystems.XRReferenceObject struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE { public: // System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidLow uint64_t ___m_GuidLow_0; // System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidHigh uint64_t ___m_GuidHigh_1; // System.String UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Name String_t* ___m_Name_2; // System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Entries List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3; public: inline static int32_t get_offset_of_m_GuidLow_0() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidLow_0)); } inline uint64_t get_m_GuidLow_0() const { return ___m_GuidLow_0; } inline uint64_t* get_address_of_m_GuidLow_0() { return &___m_GuidLow_0; } inline void set_m_GuidLow_0(uint64_t value) { ___m_GuidLow_0 = value; } inline static int32_t get_offset_of_m_GuidHigh_1() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidHigh_1)); } inline uint64_t get_m_GuidHigh_1() const { return ___m_GuidHigh_1; } inline uint64_t* get_address_of_m_GuidHigh_1() { return &___m_GuidHigh_1; } inline void set_m_GuidHigh_1(uint64_t value) { ___m_GuidHigh_1 = value; } inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Name_2)); } inline String_t* get_m_Name_2() const { return ___m_Name_2; } inline String_t** get_address_of_m_Name_2() { return &___m_Name_2; } inline void set_m_Name_2(String_t* value) { ___m_Name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_2), (void*)value); } inline static int32_t get_offset_of_m_Entries_3() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Entries_3)); } inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * get_m_Entries_3() const { return ___m_Entries_3; } inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A ** get_address_of_m_Entries_3() { return &___m_Entries_3; } inline void set_m_Entries_3(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * value) { ___m_Entries_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Entries_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke { uint64_t ___m_GuidLow_0; uint64_t ___m_GuidHigh_1; char* ___m_Name_2; List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3; }; // Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com { uint64_t ___m_GuidLow_0; uint64_t ___m_GuidHigh_1; Il2CppChar* ___m_Name_2; List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3; }; // UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 { public: // System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order int32_t ___order_0; // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___callback_1; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___order_0)); } inline int32_t get_order_0() const { return ___order_0; } inline int32_t* get_address_of_order_0() { return &___order_0; } inline void set_order_0(int32_t value) { ___order_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___callback_1)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_callback_1() const { return ___callback_1; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_pinvoke { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_com { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 { public: // System.Collections.Generic.List`1<System.String> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::PoseNames List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0; // System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::Poses List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1; public: inline static int32_t get_offset_of_PoseNames_0() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___PoseNames_0)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_PoseNames_0() const { return ___PoseNames_0; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_PoseNames_0() { return &___PoseNames_0; } inline void set_PoseNames_0(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___PoseNames_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___PoseNames_0), (void*)value); } inline static int32_t get_offset_of_Poses_1() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___Poses_1)); } inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * get_Poses_1() const { return ___Poses_1; } inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 ** get_address_of_Poses_1() { return &___Poses_1; } inline void set_Poses_1(List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * value) { ___Poses_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Poses_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_pinvoke { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0; List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1; }; // Native definition for COM marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_com { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0; List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1; }; // UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 { public: // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * ___m_DelagateCallback_0; // System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState RuntimeObject * ___m_DelagateState_1; // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2; public: inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateCallback_0)); } inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; } inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; } inline void set_m_DelagateCallback_0(SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * value) { ___m_DelagateCallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value); } inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateState_1)); } inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; } inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; } inline void set_m_DelagateState_1(RuntimeObject * value) { ___m_DelagateState_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value); } inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_WaitHandle_2)); } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; } inline void set_m_WaitHandle_2(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value) { ___m_WaitHandle_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_pinvoke { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2; }; // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_com { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean> struct ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t286C97C0AF102C4C0BE55CE2025CC7BD1FB5C20C value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32> struct ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tC61B5622274D0DD1DDBFA197A90CBDAF40F230C2 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object> struct ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult> struct ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t30C5878AF5DC4D86F458B73EF33EAF5BFA254071 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Collections.Generic.SortedList`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E { public: // System.Collections.Generic.SortedList`2<TKey,TValue> System.Collections.Generic.SortedList`2/Enumerator::_sortedList SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ____sortedList_0; // TKey System.Collections.Generic.SortedList`2/Enumerator::_key TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ____key_1; // TValue System.Collections.Generic.SortedList`2/Enumerator::_value RuntimeObject * ____value_2; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_index int32_t ____index_3; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_version int32_t ____version_4; // System.Int32 System.Collections.Generic.SortedList`2/Enumerator::_getEnumeratorRetType int32_t ____getEnumeratorRetType_5; public: inline static int32_t get_offset_of__sortedList_0() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____sortedList_0)); } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * get__sortedList_0() const { return ____sortedList_0; } inline SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 ** get_address_of__sortedList_0() { return &____sortedList_0; } inline void set__sortedList_0(SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * value) { ____sortedList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sortedList_0), (void*)value); } inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____key_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get__key_1() const { return ____key_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of__key_1() { return &____key_1; } inline void set__key_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ____key_1 = value; } inline static int32_t get_offset_of__value_2() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____value_2)); } inline RuntimeObject * get__value_2() const { return ____value_2; } inline RuntimeObject ** get_address_of__value_2() { return &____value_2; } inline void set__value_2(RuntimeObject * value) { ____value_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_2), (void*)value); } inline static int32_t get_offset_of__index_3() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____index_3)); } inline int32_t get__index_3() const { return ____index_3; } inline int32_t* get_address_of__index_3() { return &____index_3; } inline void set__index_3(int32_t value) { ____index_3 = value; } inline static int32_t get_offset_of__version_4() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____version_4)); } inline int32_t get__version_4() const { return ____version_4; } inline int32_t* get_address_of__version_4() { return &____version_4; } inline void set__version_4(int32_t value) { ____version_4 = value; } inline static int32_t get_offset_of__getEnumeratorRetType_5() { return static_cast<int32_t>(offsetof(Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E, ____getEnumeratorRetType_5)); } inline int32_t get__getEnumeratorRetType_5() const { return ____getEnumeratorRetType_5; } inline int32_t* get_address_of__getEnumeratorRetType_5() { return &____getEnumeratorRetType_5; } inline void set__getEnumeratorRetType_5(int32_t value) { ____getEnumeratorRetType_5 = value; } }; // UnityEngine.XR.ARSubsystems.Promise`1/ImmediatePromise<System.Object> struct ImmediatePromise_tD743EC53293FA1E94CF3AEAF6354F917FB138E75 : public Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB { public: public: }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___key_0)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_key_0() const { return ___key_0; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D { public: // TKey System.Collections.Generic.KeyValuePair`2::key TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D, ___key_0)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_key_0() const { return ___key_0; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_key_0() { return &___key_0; } inline void set_key_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D, ___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); } }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob> struct ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40 { public: union { struct { }; uint8_t ParallelForJobStruct_1_tE0DB508AC2ED8A94617C06656AC1E9A9E3C667C5__padding[1]; }; public: }; struct ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40_StaticFields { public: // System.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::jobReflectionData intptr_t ___jobReflectionData_0; public: inline static int32_t get_offset_of_jobReflectionData_0() { return static_cast<int32_t>(offsetof(ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40_StaticFields, ___jobReflectionData_0)); } inline intptr_t get_jobReflectionData_0() const { return ___jobReflectionData_0; } inline intptr_t* get_address_of_jobReflectionData_0() { return &___jobReflectionData_0; } inline void set_jobReflectionData_0(intptr_t value) { ___jobReflectionData_0 = value; } }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob> struct ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF { public: union { struct { }; uint8_t ParallelForJobStruct_1_tE0DB508AC2ED8A94617C06656AC1E9A9E3C667C5__padding[1]; }; public: }; struct ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF_StaticFields { public: // System.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::jobReflectionData intptr_t ___jobReflectionData_0; public: inline static int32_t get_offset_of_jobReflectionData_0() { return static_cast<int32_t>(offsetof(ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF_StaticFields, ___jobReflectionData_0)); } inline intptr_t get_jobReflectionData_0() const { return ___jobReflectionData_0; } inline intptr_t* get_address_of_jobReflectionData_0() { return &___jobReflectionData_0; } inline void set_jobReflectionData_0(intptr_t value) { ___jobReflectionData_0 = value; } }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob> struct ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B { public: union { struct { }; uint8_t ParallelForJobStruct_1_tE0DB508AC2ED8A94617C06656AC1E9A9E3C667C5__padding[1]; }; public: }; struct ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B_StaticFields { public: // System.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::jobReflectionData intptr_t ___jobReflectionData_0; public: inline static int32_t get_offset_of_jobReflectionData_0() { return static_cast<int32_t>(offsetof(ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B_StaticFields, ___jobReflectionData_0)); } inline intptr_t get_jobReflectionData_0() const { return ___jobReflectionData_0; } inline intptr_t* get_address_of_jobReflectionData_0() { return &___jobReflectionData_0; } inline void set_jobReflectionData_0(intptr_t value) { ___jobReflectionData_0 = value; } }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob> struct ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B { public: union { struct { }; uint8_t ParallelForJobStruct_1_tE0DB508AC2ED8A94617C06656AC1E9A9E3C667C5__padding[1]; }; public: }; struct ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B_StaticFields { public: // System.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1::jobReflectionData intptr_t ___jobReflectionData_0; public: inline static int32_t get_offset_of_jobReflectionData_0() { return static_cast<int32_t>(offsetof(ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B_StaticFields, ___jobReflectionData_0)); } inline intptr_t get_jobReflectionData_0() const { return ___jobReflectionData_0; } inline intptr_t* get_address_of_jobReflectionData_0() { return &___jobReflectionData_0; } inline void set_jobReflectionData_0(intptr_t value) { ___jobReflectionData_0 = value; } }; // System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId> struct Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___value_2)); } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_value_2() const { return ___value_2; } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_value_2() { return &___value_2; } inline void set_value_2(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value) { ___value_2 = value; } }; // System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.ARSubsystems.TrackableId> struct Slot_tF743B500F29A7DB91D09D4145FBD0478BDE45451 { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tF743B500F29A7DB91D09D4145FBD0478BDE45451, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_tF743B500F29A7DB91D09D4145FBD0478BDE45451, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_tF743B500F29A7DB91D09D4145FBD0478BDE45451, ___value_2)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_value_2() const { return ___value_2; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_value_2() { return &___value_2; } inline void set_value_2(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___value_2 = value; } }; // System.Threading.SparselyPopulatedArrayFragment`1<System.Object> struct SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 : public RuntimeObject { public: // T[] System.Threading.SparselyPopulatedArrayFragment`1::m_elements ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_elements_0; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_freeCount int32_t ___m_freeCount_1; // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_next SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_next_2; // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_prev SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_prev_3; public: inline static int32_t get_offset_of_m_elements_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_elements_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_elements_0() const { return ___m_elements_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_elements_0() { return &___m_elements_0; } inline void set_m_elements_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_elements_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_elements_0), (void*)value); } inline static int32_t get_offset_of_m_freeCount_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_freeCount_1)); } inline int32_t get_m_freeCount_1() const { return ___m_freeCount_1; } inline int32_t* get_address_of_m_freeCount_1() { return &___m_freeCount_1; } inline void set_m_freeCount_1(int32_t value) { ___m_freeCount_1 = value; } inline static int32_t get_offset_of_m_next_2() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_next_2)); } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_next_2() const { return ___m_next_2; } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_next_2() { return &___m_next_2; } inline void set_m_next_2(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value) { ___m_next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_next_2), (void*)value); } inline static int32_t get_offset_of_m_prev_3() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_prev_3)); } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_prev_3() const { return ___m_prev_3; } inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_prev_3() { return &___m_prev_3; } inline void set_m_prev_3(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value) { ___m_prev_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_prev_3), (void*)value); } }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t03AE7A9F3FCFC6AD533F1AC3F403168B8140649F : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t346381F1A8322029735E6CB60BE656844AC911E8 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tBD40FD22068207BB90449FC608025235E400C47A : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tB043EC909C55FE5BC78AD95436858F4956E3DE4C : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t758226B1C7A7735796B7029A5913BC43628FCCF3 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t2CAAD77E4532041B0120AE543DB331C1CECFA765 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t1953500C8BD92CD8DCFED1CC3B58B24A60C24E43 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_tE9F5623D0E551591334872A367EFF28A72775EEA : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t3385ADCA6DCAB14BAB5A5E886D096E0B5FA530F5 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t227E1B3CD9B70F544BE2BAC33219E40F224A16BA : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,System.Object,System.Object,System.Object> struct TrackingSubsystem_4_t7F92C20128624C004DAABFC3F72A9994C54898D9 : public SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 { public: public: }; // System.Linq.Enumerable/WhereListIterator`1<System.Object> struct WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD : public Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 { public: // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1::source List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereListIterator`1::predicate Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate_4; // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereListIterator`1::enumerator Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 ___enumerator_5; public: inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD, ___source_3)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_source_3() const { return ___source_3; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_source_3() { return &___source_3; } inline void set_source_3(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_3), (void*)value); } inline static int32_t get_offset_of_predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD, ___predicate_4)); } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * get_predicate_4() const { return ___predicate_4; } inline Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 ** get_address_of_predicate_4() { return &___predicate_4; } inline void set_predicate_4(Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * value) { ___predicate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___predicate_4), (void*)value); } inline static int32_t get_offset_of_enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD, ___enumerator_5)); } inline Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 get_enumerator_5() const { return ___enumerator_5; } inline Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * get_address_of_enumerator_5() { return &___enumerator_5; } inline void set_enumerator_5(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 value) { ___enumerator_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___enumerator_5))->___list_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___enumerator_5))->___current_3), (void*)NULL); #endif } }; // Unity.Collections.Allocator struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05 { public: // System.Int32 Unity.Collections.Allocator::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___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; } }; // UnityEngine.XR.AvailableTrackingData struct AvailableTrackingData_tECF9F41E063E32F92AF43156E0C61190C82B47FC { public: // System.Int32 UnityEngine.XR.AvailableTrackingData::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tECF9F41E063E32F92AF43156E0C61190C82B47FC, ___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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { 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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___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.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A { public: // System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1; public: inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_callbackInfo_0)); } inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; } inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; } inline void set_m_callbackInfo_0(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * value) { ___m_callbackInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value); } inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_registrationInfo_1)); } inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; } inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; } inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 value) { ___m_registrationInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke { CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1; }; // Native definition for COM marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com { CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1; }; // System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA { public: // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___typedArgument_0; // System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo MemberInfo_t * ___memberInfo_1; public: inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___typedArgument_0)); } inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 get_typedArgument_0() const { return ___typedArgument_0; } inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * get_address_of_typedArgument_0() { return &___typedArgument_0; } inline void set_typedArgument_0(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value) { ___typedArgument_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___memberInfo_1)); } inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; } inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; } inline void set_memberInfo_1(MemberInfo_t * value) { ___memberInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_pinvoke { CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_com { CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * 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_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* 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_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.ExceptionArgument struct ExceptionArgument_t750CCD4C657BCB2C185560CC68330BC0313B8737 { 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_t750CCD4C657BCB2C185560CC68330BC0313B8737, ___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_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA { 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_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA, ___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.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { 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_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___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.Threading.Tasks.InternalTaskOptions struct InternalTaskOptions_tE9869E444962B12AAF216CDE276D379BD57D5EEF { public: // System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalTaskOptions_tE9869E444962B12AAF216CDE276D379BD57D5EEF, ___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; } }; // Unity.Jobs.LowLevel.Unsafe.JobRanges struct JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E { public: // System.Int32 Unity.Jobs.LowLevel.Unsafe.JobRanges::BatchSize int32_t ___BatchSize_0; // System.Int32 Unity.Jobs.LowLevel.Unsafe.JobRanges::NumJobs int32_t ___NumJobs_1; // System.Int32 Unity.Jobs.LowLevel.Unsafe.JobRanges::TotalIterationCount int32_t ___TotalIterationCount_2; // System.Int32 Unity.Jobs.LowLevel.Unsafe.JobRanges::NumPhases int32_t ___NumPhases_3; // System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobRanges::StartEndIndex intptr_t ___StartEndIndex_4; // System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobRanges::PhaseData intptr_t ___PhaseData_5; public: inline static int32_t get_offset_of_BatchSize_0() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___BatchSize_0)); } inline int32_t get_BatchSize_0() const { return ___BatchSize_0; } inline int32_t* get_address_of_BatchSize_0() { return &___BatchSize_0; } inline void set_BatchSize_0(int32_t value) { ___BatchSize_0 = value; } inline static int32_t get_offset_of_NumJobs_1() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___NumJobs_1)); } inline int32_t get_NumJobs_1() const { return ___NumJobs_1; } inline int32_t* get_address_of_NumJobs_1() { return &___NumJobs_1; } inline void set_NumJobs_1(int32_t value) { ___NumJobs_1 = value; } inline static int32_t get_offset_of_TotalIterationCount_2() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___TotalIterationCount_2)); } inline int32_t get_TotalIterationCount_2() const { return ___TotalIterationCount_2; } inline int32_t* get_address_of_TotalIterationCount_2() { return &___TotalIterationCount_2; } inline void set_TotalIterationCount_2(int32_t value) { ___TotalIterationCount_2 = value; } inline static int32_t get_offset_of_NumPhases_3() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___NumPhases_3)); } inline int32_t get_NumPhases_3() const { return ___NumPhases_3; } inline int32_t* get_address_of_NumPhases_3() { return &___NumPhases_3; } inline void set_NumPhases_3(int32_t value) { ___NumPhases_3 = value; } inline static int32_t get_offset_of_StartEndIndex_4() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___StartEndIndex_4)); } inline intptr_t get_StartEndIndex_4() const { return ___StartEndIndex_4; } inline intptr_t* get_address_of_StartEndIndex_4() { return &___StartEndIndex_4; } inline void set_StartEndIndex_4(intptr_t value) { ___StartEndIndex_4 = value; } inline static int32_t get_offset_of_PhaseData_5() { return static_cast<int32_t>(offsetof(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E, ___PhaseData_5)); } inline intptr_t get_PhaseData_5() const { return ___PhaseData_5; } inline intptr_t* get_address_of_PhaseData_5() { return &___PhaseData_5; } inline void set_PhaseData_5(intptr_t value) { ___PhaseData_5 = value; } }; // UnityEngine.XR.MeshChangeState struct MeshChangeState_t577B449627A869D7B8E062F9D9C218418790E046 { public: // System.Int32 UnityEngine.XR.MeshChangeState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshChangeState_t577B449627A869D7B8E062F9D9C218418790E046, ___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: }; // Unity.Collections.NativeArrayOptions struct NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3 { public: // System.Int32 Unity.Collections.NativeArrayOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3, ___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; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.XR.ARSubsystems.PlaneAlignment struct PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA { public: // System.Int32 UnityEngine.XR.ARSubsystems.PlaneAlignment::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA, ___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; } }; // UnityEngine.XR.ARSubsystems.PlaneClassification struct PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10 { public: // System.Int32 UnityEngine.XR.ARSubsystems.PlaneClassification::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10, ___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; } }; // UnityEngine.Pose struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A { public: // UnityEngine.Vector3 UnityEngine.Pose::position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0; // UnityEngine.Quaternion UnityEngine.Pose::rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_1; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___position_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___position_0 = value; } inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___rotation_1)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_1() const { return ___rotation_1; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_1() { return &___rotation_1; } inline void set_rotation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rotation_1 = value; } }; struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields { public: // UnityEngine.Pose UnityEngine.Pose::k_Identity Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___k_Identity_2; public: inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields, ___k_Identity_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_k_Identity_2() const { return ___k_Identity_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_k_Identity_2() { return &___k_Identity_2; } inline void set_k_Identity_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___k_Identity_2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { 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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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.Threading.StackCrawlMark struct StackCrawlMark_t2BEE6EC5F8EA322B986CA375A594BBD34B98EBA5 { public: // System.Int32 System.Threading.StackCrawlMark::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t2BEE6EC5F8EA322B986CA375A594BBD34B98EBA5, ___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.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_4; // System.Object System.Threading.Tasks.Task::m_action RuntimeObject * ___m_action_5; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject * ___m_stateObject_6; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_taskScheduler_7; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_parent_8; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_9; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject * ___m_continuationObject_10; // System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * ___m_contingentProperties_15; public: inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskId_4)); } inline int32_t get_m_taskId_4() const { return ___m_taskId_4; } inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; } inline void set_m_taskId_4(int32_t value) { ___m_taskId_4 = value; } inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_action_5)); } inline RuntimeObject * get_m_action_5() const { return ___m_action_5; } inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; } inline void set_m_action_5(RuntimeObject * value) { ___m_action_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value); } inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateObject_6)); } inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; } inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; } inline void set_m_stateObject_6(RuntimeObject * value) { ___m_stateObject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value); } inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskScheduler_7)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; } inline void set_m_taskScheduler_7(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_taskScheduler_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value); } inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_parent_8)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_parent_8() const { return ___m_parent_8; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_parent_8() { return &___m_parent_8; } inline void set_m_parent_8(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_parent_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value); } inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateFlags_9)); } inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; } inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; } inline void set_m_stateFlags_9(int32_t value) { ___m_stateFlags_9 = value; } inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_continuationObject_10)); } inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; } inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; } inline void set_m_continuationObject_10(RuntimeObject * value) { ___m_continuationObject_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_10), (void*)value); } inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_contingentProperties_15)); } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; } inline void set_m_contingentProperties_15(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * value) { ___m_contingentProperties_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_15), (void*)value); } }; struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields { public: // System.Int32 System.Threading.Tasks.Task::s_taskIdCounter int32_t ___s_taskIdCounter_2; // System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * ___s_factory_3; // System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel RuntimeObject * ___s_taskCompletionSentinel_11; // System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled bool ___s_asyncDebuggingEnabled_12; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * ___s_currentActiveTasks_13; // System.Object System.Threading.Tasks.Task::s_activeTasksLock RuntimeObject * ___s_activeTasksLock_14; // System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_taskCancelCallback_16; // System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * ___s_createContingentProperties_17; // System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___s_completedTask_18; // System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * ___s_IsExceptionObservedByParentPredicate_19; // System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___s_ecCallback_20; // System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___s_IsTaskContinuationNullPredicate_21; public: inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskIdCounter_2)); } inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; } inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; } inline void set_s_taskIdCounter_2(int32_t value) { ___s_taskIdCounter_2 = value; } inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_factory_3)); } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * get_s_factory_3() const { return ___s_factory_3; } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B ** get_address_of_s_factory_3() { return &___s_factory_3; } inline void set_s_factory_3(TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * value) { ___s_factory_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value); } inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCompletionSentinel_11)); } inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; } inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; } inline void set_s_taskCompletionSentinel_11(RuntimeObject * value) { ___s_taskCompletionSentinel_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_11), (void*)value); } inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_asyncDebuggingEnabled_12)); } inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; } inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; } inline void set_s_asyncDebuggingEnabled_12(bool value) { ___s_asyncDebuggingEnabled_12 = value; } inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_currentActiveTasks_13)); } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; } inline void set_s_currentActiveTasks_13(Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * value) { ___s_currentActiveTasks_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_13), (void*)value); } inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_activeTasksLock_14)); } inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; } inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; } inline void set_s_activeTasksLock_14(RuntimeObject * value) { ___s_activeTasksLock_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_14), (void*)value); } inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCancelCallback_16)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; } inline void set_s_taskCancelCallback_16(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_taskCancelCallback_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_16), (void*)value); } inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_createContingentProperties_17)); } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; } inline void set_s_createContingentProperties_17(Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * value) { ___s_createContingentProperties_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_17), (void*)value); } inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_completedTask_18)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_s_completedTask_18() const { return ___s_completedTask_18; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; } inline void set_s_completedTask_18(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___s_completedTask_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_18), (void*)value); } inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; } inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * value) { ___s_IsExceptionObservedByParentPredicate_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)value); } inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_ecCallback_20)); } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * get_s_ecCallback_20() const { return ___s_ecCallback_20; } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; } inline void set_s_ecCallback_20(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * value) { ___s_ecCallback_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_20), (void*)value); } inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; } inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value) { ___s_IsTaskContinuationNullPredicate_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)value); } }; struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields { public: // System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___t_currentTask_0; // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * ___t_stackGuard_1; public: inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_currentTask_0)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_t_currentTask_0() const { return ___t_currentTask_0; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; } inline void set_t_currentTask_0(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___t_currentTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value); } inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_stackGuard_1)); } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * get_t_stackGuard_1() const { return ___t_stackGuard_1; } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; } inline void set_t_stackGuard_1(StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * value) { ___t_stackGuard_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value); } }; // System.Threading.Tasks.TaskContinuationOptions struct TaskContinuationOptions_t9FC13DFA1FFAFD07FE9A19491D1DBEB48BFA8399 { public: // System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskContinuationOptions_t9FC13DFA1FFAFD07FE9A19491D1DBEB48BFA8399, ___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.Threading.Tasks.TaskCreationOptions struct TaskCreationOptions_t469019F1B0F93FA60337952E265311E8048D2112 { public: // System.Int32 System.Threading.Tasks.TaskCreationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskCreationOptions_t469019F1B0F93FA60337952E265311E8048D2112, ___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.Threading.Tasks.TaskScheduler struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskScheduler::m_taskSchedulerId int32_t ___m_taskSchedulerId_3; public: inline static int32_t get_offset_of_m_taskSchedulerId_3() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D, ___m_taskSchedulerId_3)); } inline int32_t get_m_taskSchedulerId_3() const { return ___m_taskSchedulerId_3; } inline int32_t* get_address_of_m_taskSchedulerId_3() { return &___m_taskSchedulerId_3; } inline void set_m_taskSchedulerId_3(int32_t value) { ___m_taskSchedulerId_3 = value; } }; struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields { public: // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> System.Threading.Tasks.TaskScheduler::s_activeTaskSchedulers ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8 * ___s_activeTaskSchedulers_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::s_defaultTaskScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___s_defaultTaskScheduler_1; // System.Int32 System.Threading.Tasks.TaskScheduler::s_taskSchedulerIdCounter int32_t ___s_taskSchedulerIdCounter_2; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> System.Threading.Tasks.TaskScheduler::_unobservedTaskException EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A * ____unobservedTaskException_4; // System.Object System.Threading.Tasks.TaskScheduler::_unobservedTaskExceptionLockObject RuntimeObject * ____unobservedTaskExceptionLockObject_5; public: inline static int32_t get_offset_of_s_activeTaskSchedulers_0() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields, ___s_activeTaskSchedulers_0)); } inline ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8 * get_s_activeTaskSchedulers_0() const { return ___s_activeTaskSchedulers_0; } inline ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8 ** get_address_of_s_activeTaskSchedulers_0() { return &___s_activeTaskSchedulers_0; } inline void set_s_activeTaskSchedulers_0(ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8 * value) { ___s_activeTaskSchedulers_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activeTaskSchedulers_0), (void*)value); } inline static int32_t get_offset_of_s_defaultTaskScheduler_1() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields, ___s_defaultTaskScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_s_defaultTaskScheduler_1() const { return ___s_defaultTaskScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_s_defaultTaskScheduler_1() { return &___s_defaultTaskScheduler_1; } inline void set_s_defaultTaskScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___s_defaultTaskScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultTaskScheduler_1), (void*)value); } inline static int32_t get_offset_of_s_taskSchedulerIdCounter_2() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields, ___s_taskSchedulerIdCounter_2)); } inline int32_t get_s_taskSchedulerIdCounter_2() const { return ___s_taskSchedulerIdCounter_2; } inline int32_t* get_address_of_s_taskSchedulerIdCounter_2() { return &___s_taskSchedulerIdCounter_2; } inline void set_s_taskSchedulerIdCounter_2(int32_t value) { ___s_taskSchedulerIdCounter_2 = value; } inline static int32_t get_offset_of__unobservedTaskException_4() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields, ____unobservedTaskException_4)); } inline EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A * get__unobservedTaskException_4() const { return ____unobservedTaskException_4; } inline EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A ** get_address_of__unobservedTaskException_4() { return &____unobservedTaskException_4; } inline void set__unobservedTaskException_4(EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A * value) { ____unobservedTaskException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____unobservedTaskException_4), (void*)value); } inline static int32_t get_offset_of__unobservedTaskExceptionLockObject_5() { return static_cast<int32_t>(offsetof(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D_StaticFields, ____unobservedTaskExceptionLockObject_5)); } inline RuntimeObject * get__unobservedTaskExceptionLockObject_5() const { return ____unobservedTaskExceptionLockObject_5; } inline RuntimeObject ** get_address_of__unobservedTaskExceptionLockObject_5() { return &____unobservedTaskExceptionLockObject_5; } inline void set__unobservedTaskExceptionLockObject_5(RuntimeObject * value) { ____unobservedTaskExceptionLockObject_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____unobservedTaskExceptionLockObject_5), (void*)value); } }; // System.Threading.Tasks.TaskStatus struct TaskStatus_t550D7DA3655E0A44C7B2925539A4025FB6BA9EF2 { public: // System.Int32 System.Threading.Tasks.TaskStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskStatus_t550D7DA3655E0A44C7B2925539A4025FB6BA9EF2, ___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; } }; // UnityEngine.Rendering.TextureDimension struct TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC { public: // System.Int32 UnityEngine.Rendering.TextureDimension::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC, ___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; } }; // UnityEngine.TextureFormat struct TextureFormat_tBED5388A0445FE978F97B41D247275B036407932 { public: // System.Int32 UnityEngine.TextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932, ___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; } }; // UnityEngine.XR.ARSubsystems.TrackableType struct TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F { public: // System.Int32 UnityEngine.XR.ARSubsystems.TrackableType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F, ___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; } }; // UnityEngine.XR.ARSubsystems.TrackingState struct TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38 { public: // System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38, ___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; } }; // UnityEngine.XR.XRNode struct XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD { public: // System.Int32 UnityEngine.XR.XRNode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD, ___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; } }; // UnityEngine.XR.ARSubsystems.XRReferenceImage struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 { public: // UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedGuid SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0; // UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedTextureGuid SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1; // UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Size Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2; // System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SpecifySize bool ___m_SpecifySize_3; // System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Name String_t* ___m_Name_4; // UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Texture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5; public: inline static int32_t get_offset_of_m_SerializedGuid_0() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedGuid_0)); } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedGuid_0() const { return ___m_SerializedGuid_0; } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedGuid_0() { return &___m_SerializedGuid_0; } inline void set_m_SerializedGuid_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value) { ___m_SerializedGuid_0 = value; } inline static int32_t get_offset_of_m_SerializedTextureGuid_1() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedTextureGuid_1)); } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedTextureGuid_1() const { return ___m_SerializedTextureGuid_1; } inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedTextureGuid_1() { return &___m_SerializedTextureGuid_1; } inline void set_m_SerializedTextureGuid_1(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value) { ___m_SerializedTextureGuid_1 = value; } inline static int32_t get_offset_of_m_Size_2() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Size_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_2() const { return ___m_Size_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_2() { return &___m_Size_2; } inline void set_m_Size_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Size_2 = value; } inline static int32_t get_offset_of_m_SpecifySize_3() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SpecifySize_3)); } inline bool get_m_SpecifySize_3() const { return ___m_SpecifySize_3; } inline bool* get_address_of_m_SpecifySize_3() { return &___m_SpecifySize_3; } inline void set_m_SpecifySize_3(bool value) { ___m_SpecifySize_3 = value; } inline static int32_t get_offset_of_m_Name_4() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Name_4)); } inline String_t* get_m_Name_4() const { return ___m_Name_4; } inline String_t** get_address_of_m_Name_4() { return &___m_Name_4; } inline void set_m_Name_4(String_t* value) { ___m_Name_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_4), (void*)value); } inline static int32_t get_offset_of_m_Texture_5() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Texture_5)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_m_Texture_5() const { return ___m_Texture_5; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_m_Texture_5() { return &___m_Texture_5; } inline void set_m_Texture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___m_Texture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_5), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke { SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0; SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2; int32_t ___m_SpecifySize_3; char* ___m_Name_4; Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5; }; // Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com { SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0; SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2; int32_t ___m_SpecifySize_3; Il2CppChar* ___m_Name_4; Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5; }; // UnityEngine.Camera/RenderRequestMode struct RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313 { public: // System.Int32 UnityEngine.Camera/RenderRequestMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313, ___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; } }; // UnityEngine.Camera/RenderRequestOutputSpace struct RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5 { public: // System.Int32 UnityEngine.Camera/RenderRequestOutputSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5, ___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.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 : public RuntimeObject { public: // System.Threading.ExecutionContext System.Threading.Tasks.Task/ContingentProperties::m_capturedContext ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___m_capturedContext_0; // System.Threading.ManualResetEventSlim modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_completionEvent ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * ___m_completionEvent_1; // System.Threading.Tasks.TaskExceptionHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_exceptionsHolder TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * ___m_exceptionsHolder_2; // System.Threading.CancellationToken System.Threading.Tasks.Task/ContingentProperties::m_cancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_cancellationToken_3; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> System.Threading.Tasks.Task/ContingentProperties::m_cancellationRegistration Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B * ___m_cancellationRegistration_4; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_internalCancellationRequested int32_t ___m_internalCancellationRequested_5; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_completionCountdown int32_t ___m_completionCountdown_6; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_exceptionalChildren List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB * ___m_exceptionalChildren_7; public: inline static int32_t get_offset_of_m_capturedContext_0() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_capturedContext_0)); } inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * get_m_capturedContext_0() const { return ___m_capturedContext_0; } inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 ** get_address_of_m_capturedContext_0() { return &___m_capturedContext_0; } inline void set_m_capturedContext_0(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * value) { ___m_capturedContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_capturedContext_0), (void*)value); } inline static int32_t get_offset_of_m_completionEvent_1() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_completionEvent_1)); } inline ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * get_m_completionEvent_1() const { return ___m_completionEvent_1; } inline ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E ** get_address_of_m_completionEvent_1() { return &___m_completionEvent_1; } inline void set_m_completionEvent_1(ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * value) { ___m_completionEvent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_completionEvent_1), (void*)value); } inline static int32_t get_offset_of_m_exceptionsHolder_2() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_exceptionsHolder_2)); } inline TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * get_m_exceptionsHolder_2() const { return ___m_exceptionsHolder_2; } inline TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 ** get_address_of_m_exceptionsHolder_2() { return &___m_exceptionsHolder_2; } inline void set_m_exceptionsHolder_2(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * value) { ___m_exceptionsHolder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionsHolder_2), (void*)value); } inline static int32_t get_offset_of_m_cancellationToken_3() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_cancellationToken_3)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_cancellationToken_3() const { return ___m_cancellationToken_3; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_cancellationToken_3() { return &___m_cancellationToken_3; } inline void set_m_cancellationToken_3(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_cancellationToken_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_cancellationToken_3))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_cancellationRegistration_4() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_cancellationRegistration_4)); } inline Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B * get_m_cancellationRegistration_4() const { return ___m_cancellationRegistration_4; } inline Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B ** get_address_of_m_cancellationRegistration_4() { return &___m_cancellationRegistration_4; } inline void set_m_cancellationRegistration_4(Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B * value) { ___m_cancellationRegistration_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cancellationRegistration_4), (void*)value); } inline static int32_t get_offset_of_m_internalCancellationRequested_5() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_internalCancellationRequested_5)); } inline int32_t get_m_internalCancellationRequested_5() const { return ___m_internalCancellationRequested_5; } inline int32_t* get_address_of_m_internalCancellationRequested_5() { return &___m_internalCancellationRequested_5; } inline void set_m_internalCancellationRequested_5(int32_t value) { ___m_internalCancellationRequested_5 = value; } inline static int32_t get_offset_of_m_completionCountdown_6() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_completionCountdown_6)); } inline int32_t get_m_completionCountdown_6() const { return ___m_completionCountdown_6; } inline int32_t* get_address_of_m_completionCountdown_6() { return &___m_completionCountdown_6; } inline void set_m_completionCountdown_6(int32_t value) { ___m_completionCountdown_6 = value; } inline static int32_t get_offset_of_m_exceptionalChildren_7() { return static_cast<int32_t>(offsetof(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0, ___m_exceptionalChildren_7)); } inline List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB * get_m_exceptionalChildren_7() const { return ___m_exceptionalChildren_7; } inline List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB ** get_address_of_m_exceptionalChildren_7() { return &___m_exceptionalChildren_7; } inline void set_m_exceptionalChildren_7(List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB * value) { ___m_exceptionalChildren_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionalChildren_7), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___dictionary_0)); } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___current_3)); } inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D get_current_3() const { return ___current_3; } inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane> struct NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<System.Int32> struct NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.Quaternion> struct NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<System.Single> struct NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> struct NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<System.UInt64> struct NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.Vector2> struct NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.Vector3> struct NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor> struct NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe> struct NativeArray_1_t901047647D1B0577009EA387273335B841552234 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace> struct NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody> struct NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant> struct NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud> struct NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast> struct NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> struct NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> struct NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> struct NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> struct NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum> struct Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB : public CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 { public: // T UnityEngine.XR.ARSubsystems.Promise`1::<result>k__BackingField int32_t ___U3CresultU3Ek__BackingField_0; // System.Boolean UnityEngine.XR.ARSubsystems.Promise`1::m_Complete bool ___m_Complete_1; public: inline static int32_t get_offset_of_U3CresultU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB, ___U3CresultU3Ek__BackingField_0)); } inline int32_t get_U3CresultU3Ek__BackingField_0() const { return ___U3CresultU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CresultU3Ek__BackingField_0() { return &___U3CresultU3Ek__BackingField_0; } inline void set_U3CresultU3Ek__BackingField_0(int32_t value) { ___U3CresultU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Complete_1() { return static_cast<int32_t>(offsetof(Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB, ___m_Complete_1)); } inline bool get_m_Complete_1() const { return ___m_Complete_1; } inline bool* get_address_of_m_Complete_1() { return &___m_Complete_1; } inline void set_m_Complete_1(bool value) { ___m_Complete_1 = value; } }; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B : public RuntimeObject { public: // T System.Threading.Tasks.Shared`1::Value CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B, ___Value_0)); } inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A get_Value_0() const { return ___Value_0; } inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Value_0))->___m_callbackInfo_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___Value_0))->___m_registrationInfo_1))->___m_source_0), (void*)NULL); #endif } }; // System.Collections.Generic.HashSet`1/Slot<System.Int32Enum> struct Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value int32_t ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___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.Threading.Tasks.TaskFactory`1<System.Boolean> struct TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.TaskFactory`1<System.Int32> struct TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.TaskFactory`1<System.Object> struct TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult> struct TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.Task`1<System.Boolean> struct Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result bool ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849, ___m_result_22)); } inline bool get_m_result_22() const { return ___m_result_22; } inline bool* get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(bool value) { ___m_result_22 = value; } }; struct Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result int32_t ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725, ___m_result_22)); } inline int32_t get_m_result_22() const { return ___m_result_22; } inline int32_t* get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(int32_t value) { ___m_result_22 = value; } }; struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result RuntimeObject * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17, ___m_result_22)); } inline RuntimeObject * get_m_result_22() const { return ___m_result_22; } inline RuntimeObject ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(RuntimeObject * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value); } }; struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284, ___m_result_22)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_result_22() const { return ___m_result_22; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value); } }; struct Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t4720246ADD352D9004AFCAA652A1A240B620DE4E * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t59E5EE359C575BAE84083A82848C07C4F342D995 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t4720246ADD352D9004AFCAA652A1A240B620DE4E * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t4720246ADD352D9004AFCAA652A1A240B620DE4E ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t4720246ADD352D9004AFCAA652A1A240B620DE4E * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t59E5EE359C575BAE84083A82848C07C4F342D995 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t59E5EE359C575BAE84083A82848C07C4F342D995 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t59E5EE359C575BAE84083A82848C07C4F342D995 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3, ___m_result_22)); } inline VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 get_m_result_22() const { return ___m_result_22; } inline VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 value) { ___m_result_22 = value; } }; struct Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * ___s_Factory_23; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.AggregateException struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 : public Exception_t { public: // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * ___m_innerExceptions_17; public: inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast<int32_t>(offsetof(AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1, ___m_innerExceptions_17)); } inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; } inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; } inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * value) { ___m_innerExceptions_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value); } }; // UnityEngine.XR.ARSubsystems.BoundedPlane struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1; // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_SubsumedById TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_SubsumedById_2; // UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Center Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Center_3; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_4; // UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Size Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_5; // UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::m_Alignment int32_t ___m_Alignment_6; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackingState int32_t ___m_TrackingState_7; // System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::m_NativePtr intptr_t ___m_NativePtr_8; // UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::m_Classification int32_t ___m_Classification_9; public: inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackableId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; } inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_1 = value; } inline static int32_t get_offset_of_m_SubsumedById_2() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_SubsumedById_2)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_SubsumedById_2() const { return ___m_SubsumedById_2; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_SubsumedById_2() { return &___m_SubsumedById_2; } inline void set_m_SubsumedById_2(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_SubsumedById_2 = value; } inline static int32_t get_offset_of_m_Center_3() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Center_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Center_3() const { return ___m_Center_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Center_3() { return &___m_Center_3; } inline void set_m_Center_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Center_3 = value; } inline static int32_t get_offset_of_m_Pose_4() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Pose_4)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_4() const { return ___m_Pose_4; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_4() { return &___m_Pose_4; } inline void set_m_Pose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_4 = value; } inline static int32_t get_offset_of_m_Size_5() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Size_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_5() const { return ___m_Size_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_5() { return &___m_Size_5; } inline void set_m_Size_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Size_5 = value; } inline static int32_t get_offset_of_m_Alignment_6() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Alignment_6)); } inline int32_t get_m_Alignment_6() const { return ___m_Alignment_6; } inline int32_t* get_address_of_m_Alignment_6() { return &___m_Alignment_6; } inline void set_m_Alignment_6(int32_t value) { ___m_Alignment_6 = value; } inline static int32_t get_offset_of_m_TrackingState_7() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackingState_7)); } inline int32_t get_m_TrackingState_7() const { return ___m_TrackingState_7; } inline int32_t* get_address_of_m_TrackingState_7() { return &___m_TrackingState_7; } inline void set_m_TrackingState_7(int32_t value) { ___m_TrackingState_7 = value; } inline static int32_t get_offset_of_m_NativePtr_8() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_NativePtr_8)); } inline intptr_t get_m_NativePtr_8() const { return ___m_NativePtr_8; } inline intptr_t* get_address_of_m_NativePtr_8() { return &___m_NativePtr_8; } inline void set_m_NativePtr_8(intptr_t value) { ___m_NativePtr_8 = value; } inline static int32_t get_offset_of_m_Classification_9() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Classification_9)); } inline int32_t get_m_Classification_9() const { return ___m_Classification_9; } inline int32_t* get_address_of_m_Classification_9() { return &___m_Classification_9; } inline void set_m_Classification_9(int32_t value) { ___m_Classification_9 = value; } }; struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields { public: // UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::s_Default BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields, ___s_Default_0)); } inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 get_s_Default_0() const { return ___s_Default_0; } inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 value) { ___s_Default_0 = value; } }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.XR.MeshInfo struct MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 { public: // UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::<MeshId>k__BackingField MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___U3CMeshIdU3Ek__BackingField_0; // UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::<ChangeState>k__BackingField int32_t ___U3CChangeStateU3Ek__BackingField_1; // System.Int32 UnityEngine.XR.MeshInfo::<PriorityHint>k__BackingField int32_t ___U3CPriorityHintU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CMeshIdU3Ek__BackingField_0)); } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; } inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; } inline void set_U3CMeshIdU3Ek__BackingField_0(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value) { ___U3CMeshIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CChangeStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CChangeStateU3Ek__BackingField_1)); } inline int32_t get_U3CChangeStateU3Ek__BackingField_1() const { return ___U3CChangeStateU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CChangeStateU3Ek__BackingField_1() { return &___U3CChangeStateU3Ek__BackingField_1; } inline void set_U3CChangeStateU3Ek__BackingField_1(int32_t value) { ___U3CChangeStateU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CPriorityHintU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CPriorityHintU3Ek__BackingField_2)); } inline int32_t get_U3CPriorityHintU3Ek__BackingField_2() const { return ___U3CPriorityHintU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CPriorityHintU3Ek__BackingField_2() { return &___U3CPriorityHintU3Ek__BackingField_2; } inline void set_U3CPriorityHintU3Ek__BackingField_2(int32_t value) { ___U3CPriorityHintU3Ek__BackingField_2 = value; } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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; }; // UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_pinvoke : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_com : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* 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_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // UnityEngine.XR.ARSubsystems.XRAnchor struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::m_Id TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::m_TrackingState int32_t ___m_TrackingState_3; // System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::m_NativePtr intptr_t ___m_NativePtr_4; // System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::m_SessionId Guid_t ___m_SessionId_5; public: inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Id_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; } inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_Id_1 = value; } inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Pose_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; } inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_2 = value; } inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_TrackingState_3)); } inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; } inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; } inline void set_m_TrackingState_3(int32_t value) { ___m_TrackingState_3 = value; } inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_NativePtr_4)); } inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; } inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; } inline void set_m_NativePtr_4(intptr_t value) { ___m_NativePtr_4 = value; } inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_SessionId_5)); } inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; } inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; } inline void set_m_SessionId_5(Guid_t value) { ___m_SessionId_5 = value; } }; struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::s_Default XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields, ___s_Default_0)); } inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C get_s_Default_0() const { return ___s_Default_0; } inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRFace struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::m_TrackingState int32_t ___m_TrackingState_2; // System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::m_NativePtr intptr_t ___m_NativePtr_3; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_LeftEyePose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_LeftEyePose_4; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_RightEyePose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_RightEyePose_5; // UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::m_FixationPoint Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_FixationPoint_6; public: inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackableId_0)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; } inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_0 = value; } inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_Pose_1)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; } inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_1 = value; } inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackingState_2)); } inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; } inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; } inline void set_m_TrackingState_2(int32_t value) { ___m_TrackingState_2 = value; } inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_NativePtr_3)); } inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; } inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; } inline void set_m_NativePtr_3(intptr_t value) { ___m_NativePtr_3 = value; } inline static int32_t get_offset_of_m_LeftEyePose_4() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_LeftEyePose_4)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_LeftEyePose_4() const { return ___m_LeftEyePose_4; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_LeftEyePose_4() { return &___m_LeftEyePose_4; } inline void set_m_LeftEyePose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_LeftEyePose_4 = value; } inline static int32_t get_offset_of_m_RightEyePose_5() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_RightEyePose_5)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_RightEyePose_5() const { return ___m_RightEyePose_5; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_RightEyePose_5() { return &___m_RightEyePose_5; } inline void set_m_RightEyePose_5(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_RightEyePose_5 = value; } inline static int32_t get_offset_of_m_FixationPoint_6() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_FixationPoint_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_FixationPoint_6() const { return ___m_FixationPoint_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_FixationPoint_6() { return &___m_FixationPoint_6; } inline void set_m_FixationPoint_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_FixationPoint_6 = value; } }; struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::s_Default XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___s_Default_7; public: inline static int32_t get_offset_of_s_Default_7() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields, ___s_Default_7)); } inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 get_s_Default_7() const { return ___s_Default_7; } inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * get_address_of_s_Default_7() { return &___s_Default_7; } inline void set_s_Default_7(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 value) { ___s_Default_7 = value; } }; // UnityEngine.XR.ARSubsystems.XRHumanBody struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1; // System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::m_EstimatedHeightScaleFactor float ___m_EstimatedHeightScaleFactor_2; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackingState int32_t ___m_TrackingState_3; // System.IntPtr UnityEngine.XR.ARSubsystems.XRHumanBody::m_NativePtr intptr_t ___m_NativePtr_4; public: inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackableId_0)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; } inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_0 = value; } inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_Pose_1)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; } inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_1 = value; } inline static int32_t get_offset_of_m_EstimatedHeightScaleFactor_2() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_EstimatedHeightScaleFactor_2)); } inline float get_m_EstimatedHeightScaleFactor_2() const { return ___m_EstimatedHeightScaleFactor_2; } inline float* get_address_of_m_EstimatedHeightScaleFactor_2() { return &___m_EstimatedHeightScaleFactor_2; } inline void set_m_EstimatedHeightScaleFactor_2(float value) { ___m_EstimatedHeightScaleFactor_2 = value; } inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackingState_3)); } inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; } inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; } inline void set_m_TrackingState_3(int32_t value) { ___m_TrackingState_3 = value; } inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_NativePtr_4)); } inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; } inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; } inline void set_m_NativePtr_4(intptr_t value) { ___m_NativePtr_4 = value; } }; struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::s_Default XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___s_Default_5; public: inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields, ___s_Default_5)); } inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B get_s_Default_5() const { return ___s_Default_5; } inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * get_address_of_s_Default_5() { return &___s_Default_5; } inline void set_s_Default_5(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B value) { ___s_Default_5 = value; } }; // UnityEngine.XR.XRNodeState struct XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 { public: // UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type int32_t ___m_Type_0; // UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields int32_t ___m_AvailableFields_1; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Position_2; // UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_Rotation_3; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Velocity_4; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularVelocity_5; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Acceleration_6; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularAcceleration_7; // System.Int32 UnityEngine.XR.XRNodeState::m_Tracked int32_t ___m_Tracked_8; // System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID uint64_t ___m_UniqueID_9; public: inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Type_0)); } inline int32_t get_m_Type_0() const { return ___m_Type_0; } inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; } inline void set_m_Type_0(int32_t value) { ___m_Type_0 = value; } inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AvailableFields_1)); } inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; } inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; } inline void set_m_AvailableFields_1(int32_t value) { ___m_AvailableFields_1 = value; } inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Position_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Position_2() const { return ___m_Position_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Position_2() { return &___m_Position_2; } inline void set_m_Position_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Position_2 = value; } inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Rotation_3)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_Rotation_3() const { return ___m_Rotation_3; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; } inline void set_m_Rotation_3(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___m_Rotation_3 = value; } inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Velocity_4)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Velocity_4() const { return ___m_Velocity_4; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Velocity_4() { return &___m_Velocity_4; } inline void set_m_Velocity_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Velocity_4 = value; } inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AngularVelocity_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; } inline void set_m_AngularVelocity_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_AngularVelocity_5 = value; } inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Acceleration_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Acceleration_6() const { return ___m_Acceleration_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; } inline void set_m_Acceleration_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Acceleration_6 = value; } inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AngularAcceleration_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; } inline void set_m_AngularAcceleration_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_AngularAcceleration_7 = value; } inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Tracked_8)); } inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; } inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; } inline void set_m_Tracked_8(int32_t value) { ___m_Tracked_8 = value; } inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_UniqueID_9)); } inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; } inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; } inline void set_m_UniqueID_9(uint64_t value) { ___m_UniqueID_9 = value; } }; // UnityEngine.XR.ARSubsystems.XRParticipant struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackingState int32_t ___m_TrackingState_2; // System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::m_NativePtr intptr_t ___m_NativePtr_3; // System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::m_SessionId Guid_t ___m_SessionId_4; public: inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackableId_0)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; } inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_0 = value; } inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_Pose_1)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; } inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_1 = value; } inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackingState_2)); } inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; } inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; } inline void set_m_TrackingState_2(int32_t value) { ___m_TrackingState_2 = value; } inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_NativePtr_3)); } inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; } inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; } inline void set_m_NativePtr_3(intptr_t value) { ___m_NativePtr_3 = value; } inline static int32_t get_offset_of_m_SessionId_4() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_SessionId_4)); } inline Guid_t get_m_SessionId_4() const { return ___m_SessionId_4; } inline Guid_t * get_address_of_m_SessionId_4() { return &___m_SessionId_4; } inline void set_m_SessionId_4(Guid_t value) { ___m_SessionId_4 = value; } }; struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::k_Default XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___k_Default_5; public: inline static int32_t get_offset_of_k_Default_5() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields, ___k_Default_5)); } inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F get_k_Default_5() const { return ___k_Default_5; } inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * get_address_of_k_Default_5() { return &___k_Default_5; } inline void set_k_Default_5(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F value) { ___k_Default_5 = value; } }; // UnityEngine.XR.ARSubsystems.XRPointCloud struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackingState int32_t ___m_TrackingState_3; // System.IntPtr UnityEngine.XR.ARSubsystems.XRPointCloud::m_NativePtr intptr_t ___m_NativePtr_4; public: inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackableId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; } inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_1 = value; } inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_Pose_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; } inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_2 = value; } inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackingState_3)); } inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; } inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; } inline void set_m_TrackingState_3(int32_t value) { ___m_TrackingState_3 = value; } inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_NativePtr_4)); } inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; } inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; } inline void set_m_NativePtr_4(intptr_t value) { ___m_NativePtr_4 = value; } }; struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::s_Default XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields, ___s_Default_0)); } inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 get_s_Default_0() const { return ___s_Default_0; } inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRRaycast struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycast::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackingState int32_t ___m_TrackingState_3; // System.IntPtr UnityEngine.XR.ARSubsystems.XRRaycast::m_NativePtr intptr_t ___m_NativePtr_4; // System.Single UnityEngine.XR.ARSubsystems.XRRaycast::m_Distance float ___m_Distance_5; // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_HitTrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_HitTrackableId_6; public: inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackableId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; } inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_1 = value; } inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Pose_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; } inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_2 = value; } inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackingState_3)); } inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; } inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; } inline void set_m_TrackingState_3(int32_t value) { ___m_TrackingState_3 = value; } inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_NativePtr_4)); } inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; } inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; } inline void set_m_NativePtr_4(intptr_t value) { ___m_NativePtr_4 = value; } inline static int32_t get_offset_of_m_Distance_5() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Distance_5)); } inline float get_m_Distance_5() const { return ___m_Distance_5; } inline float* get_address_of_m_Distance_5() { return &___m_Distance_5; } inline void set_m_Distance_5(float value) { ___m_Distance_5 = value; } inline static int32_t get_offset_of_m_HitTrackableId_6() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_HitTrackableId_6)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_HitTrackableId_6() const { return ___m_HitTrackableId_6; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_HitTrackableId_6() { return &___m_HitTrackableId_6; } inline void set_m_HitTrackableId_6(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_HitTrackableId_6 = value; } }; struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRRaycast UnityEngine.XR.ARSubsystems.XRRaycast::s_Default XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields, ___s_Default_0)); } inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 get_s_Default_0() const { return ___s_Default_0; } inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRRaycastHit struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2; // System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::m_HitType int32_t ___m_HitType_4; public: inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_TrackableId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; } inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_1 = value; } inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_Pose_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; } inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_HitType_4() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_HitType_4)); } inline int32_t get_m_HitType_4() const { return ___m_HitType_4; } inline int32_t* get_address_of_m_HitType_4() { return &___m_HitType_4; } inline void set_m_HitType_4(int32_t value) { ___m_HitType_4 = value; } }; struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::s_Default XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields, ___s_Default_0)); } inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB get_s_Default_0() const { return ___s_Default_0; } inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRReferencePoint struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Id TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::m_TrackingState int32_t ___m_TrackingState_3; // System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::m_NativePtr intptr_t ___m_NativePtr_4; // System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::m_SessionId Guid_t ___m_SessionId_5; public: inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Id_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; } inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_Id_1 = value; } inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Pose_2)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; } inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_2 = value; } inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_TrackingState_3)); } inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; } inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; } inline void set_m_TrackingState_3(int32_t value) { ___m_TrackingState_3 = value; } inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_NativePtr_4)); } inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; } inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; } inline void set_m_NativePtr_4(intptr_t value) { ___m_NativePtr_4 = value; } inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_SessionId_5)); } inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; } inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; } inline void set_m_SessionId_5(Guid_t value) { ___m_SessionId_5 = value; } }; struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::s_Default XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields, ___s_Default_0)); } inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 get_s_Default_0() const { return ___s_Default_0; } inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRTextureDescriptor struct XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 { public: // System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_NativeTexture intptr_t ___m_NativeTexture_0; // System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Width int32_t ___m_Width_1; // System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Height int32_t ___m_Height_2; // System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_MipmapCount int32_t ___m_MipmapCount_3; // UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Format int32_t ___m_Format_4; // System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_PropertyNameId int32_t ___m_PropertyNameId_5; // System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Depth int32_t ___m_Depth_6; // UnityEngine.Rendering.TextureDimension UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Dimension int32_t ___m_Dimension_7; public: inline static int32_t get_offset_of_m_NativeTexture_0() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_NativeTexture_0)); } inline intptr_t get_m_NativeTexture_0() const { return ___m_NativeTexture_0; } inline intptr_t* get_address_of_m_NativeTexture_0() { return &___m_NativeTexture_0; } inline void set_m_NativeTexture_0(intptr_t value) { ___m_NativeTexture_0 = value; } inline static int32_t get_offset_of_m_Width_1() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Width_1)); } inline int32_t get_m_Width_1() const { return ___m_Width_1; } inline int32_t* get_address_of_m_Width_1() { return &___m_Width_1; } inline void set_m_Width_1(int32_t value) { ___m_Width_1 = value; } inline static int32_t get_offset_of_m_Height_2() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Height_2)); } inline int32_t get_m_Height_2() const { return ___m_Height_2; } inline int32_t* get_address_of_m_Height_2() { return &___m_Height_2; } inline void set_m_Height_2(int32_t value) { ___m_Height_2 = value; } inline static int32_t get_offset_of_m_MipmapCount_3() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_MipmapCount_3)); } inline int32_t get_m_MipmapCount_3() const { return ___m_MipmapCount_3; } inline int32_t* get_address_of_m_MipmapCount_3() { return &___m_MipmapCount_3; } inline void set_m_MipmapCount_3(int32_t value) { ___m_MipmapCount_3 = value; } inline static int32_t get_offset_of_m_Format_4() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Format_4)); } inline int32_t get_m_Format_4() const { return ___m_Format_4; } inline int32_t* get_address_of_m_Format_4() { return &___m_Format_4; } inline void set_m_Format_4(int32_t value) { ___m_Format_4 = value; } inline static int32_t get_offset_of_m_PropertyNameId_5() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_PropertyNameId_5)); } inline int32_t get_m_PropertyNameId_5() const { return ___m_PropertyNameId_5; } inline int32_t* get_address_of_m_PropertyNameId_5() { return &___m_PropertyNameId_5; } inline void set_m_PropertyNameId_5(int32_t value) { ___m_PropertyNameId_5 = value; } inline static int32_t get_offset_of_m_Depth_6() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Depth_6)); } inline int32_t get_m_Depth_6() const { return ___m_Depth_6; } inline int32_t* get_address_of_m_Depth_6() { return &___m_Depth_6; } inline void set_m_Depth_6(int32_t value) { ___m_Depth_6 = value; } inline static int32_t get_offset_of_m_Dimension_7() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Dimension_7)); } inline int32_t get_m_Dimension_7() const { return ___m_Dimension_7; } inline int32_t* get_address_of_m_Dimension_7() { return &___m_Dimension_7; } inline void set_m_Dimension_7(int32_t value) { ___m_Dimension_7 = value; } }; // UnityEngine.XR.ARSubsystems.XRTrackedImage struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Id TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1; // System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::m_SourceImageId Guid_t ___m_SourceImageId_2; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3; // UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Size Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_4; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::m_TrackingState int32_t ___m_TrackingState_5; // System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::m_NativePtr intptr_t ___m_NativePtr_6; public: inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Id_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; } inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_Id_1 = value; } inline static int32_t get_offset_of_m_SourceImageId_2() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_SourceImageId_2)); } inline Guid_t get_m_SourceImageId_2() const { return ___m_SourceImageId_2; } inline Guid_t * get_address_of_m_SourceImageId_2() { return &___m_SourceImageId_2; } inline void set_m_SourceImageId_2(Guid_t value) { ___m_SourceImageId_2 = value; } inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Pose_3)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; } inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_3 = value; } inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Size_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_4() const { return ___m_Size_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_4() { return &___m_Size_4; } inline void set_m_Size_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Size_4 = value; } inline static int32_t get_offset_of_m_TrackingState_5() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_TrackingState_5)); } inline int32_t get_m_TrackingState_5() const { return ___m_TrackingState_5; } inline int32_t* get_address_of_m_TrackingState_5() { return &___m_TrackingState_5; } inline void set_m_TrackingState_5(int32_t value) { ___m_TrackingState_5 = value; } inline static int32_t get_offset_of_m_NativePtr_6() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_NativePtr_6)); } inline intptr_t get_m_NativePtr_6() const { return ___m_NativePtr_6; } inline intptr_t* get_address_of_m_NativePtr_6() { return &___m_NativePtr_6; } inline void set_m_NativePtr_6(intptr_t value) { ___m_NativePtr_6 = value; } }; struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::s_Default XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields, ___s_Default_0)); } inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F get_s_Default_0() const { return ___s_Default_0; } inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F value) { ___s_Default_0 = value; } }; // UnityEngine.XR.ARSubsystems.XRTrackedObject struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackingState int32_t ___m_TrackingState_2; // System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::m_NativePtr intptr_t ___m_NativePtr_3; // System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::m_ReferenceObjectGuid Guid_t ___m_ReferenceObjectGuid_4; public: inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackableId_0)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; } inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_0 = value; } inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_Pose_1)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; } inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_1 = value; } inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackingState_2)); } inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; } inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; } inline void set_m_TrackingState_2(int32_t value) { ___m_TrackingState_2 = value; } inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_NativePtr_3)); } inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; } inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; } inline void set_m_NativePtr_3(intptr_t value) { ___m_NativePtr_3 = value; } inline static int32_t get_offset_of_m_ReferenceObjectGuid_4() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_ReferenceObjectGuid_4)); } inline Guid_t get_m_ReferenceObjectGuid_4() const { return ___m_ReferenceObjectGuid_4; } inline Guid_t * get_address_of_m_ReferenceObjectGuid_4() { return &___m_ReferenceObjectGuid_4; } inline void set_m_ReferenceObjectGuid_4(Guid_t value) { ___m_ReferenceObjectGuid_4 = value; } }; struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields { public: // UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::s_Default XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___s_Default_5; public: inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields, ___s_Default_5)); } inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 get_s_Default_5() const { return ___s_Default_5; } inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * get_address_of_s_Default_5() { return &___s_Default_5; } inline void set_s_Default_5(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 value) { ___s_Default_5 = value; } }; // UnityEngine.Camera/RenderRequest struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 { public: // UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode int32_t ___m_CameraRenderMode_0; // UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1; // UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace int32_t ___m_OutputSpace_2; public: inline static int32_t get_offset_of_m_CameraRenderMode_0() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_CameraRenderMode_0)); } inline int32_t get_m_CameraRenderMode_0() const { return ___m_CameraRenderMode_0; } inline int32_t* get_address_of_m_CameraRenderMode_0() { return &___m_CameraRenderMode_0; } inline void set_m_CameraRenderMode_0(int32_t value) { ___m_CameraRenderMode_0 = value; } inline static int32_t get_offset_of_m_ResultRT_1() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_ResultRT_1)); } inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * get_m_ResultRT_1() const { return ___m_ResultRT_1; } inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 ** get_address_of_m_ResultRT_1() { return &___m_ResultRT_1; } inline void set_m_ResultRT_1(RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * value) { ___m_ResultRT_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ResultRT_1), (void*)value); } inline static int32_t get_offset_of_m_OutputSpace_2() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_OutputSpace_2)); } inline int32_t get_m_OutputSpace_2() const { return ___m_OutputSpace_2; } inline int32_t* get_address_of_m_OutputSpace_2() { return &___m_OutputSpace_2; } inline void set_m_OutputSpace_2(int32_t value) { ___m_OutputSpace_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_pinvoke { int32_t ___m_CameraRenderMode_0; RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1; int32_t ___m_OutputSpace_2; }; // Native definition for COM marshalling of UnityEngine.Camera/RenderRequest struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_com { int32_t ___m_CameraRenderMode_0; RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1; int32_t ___m_OutputSpace_2; }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane> struct Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72, ___m_Array_0)); } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object> struct Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 { public: // System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator::m_Enumerator Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 ___m_Enumerator_0; public: inline static int32_t get_offset_of_m_Enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07, ___m_Enumerator_0)); } inline Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 get_m_Enumerator_0() const { return ___m_Enumerator_0; } inline Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * get_address_of_m_Enumerator_0() { return &___m_Enumerator_0; } inline void set_m_Enumerator_0(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 value) { ___m_Enumerator_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Enumerator_0))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_Enumerator_0))->___current_3))->___value_1), (void*)NULL); #endif } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId> struct Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167, ___m_Array_0)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRAnchor> struct Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01, ___m_Array_0)); } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRFace> struct Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928, ___m_Array_0)); } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRParticipant> struct Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8, ___m_Array_0)); } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRPointCloud> struct Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A, ___m_Array_0)); } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRRaycast> struct Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094, ___m_Array_0)); } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferencePoint> struct Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55, ___m_Array_0)); } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedImage> struct Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD, ___m_Array_0)); } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedObject> struct Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608, ___m_Array_0)); } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // System.Func`1<System.Boolean> struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Int32> struct Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Object> struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Threading.Tasks.VoidTaskResult> struct Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>> struct Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>> struct Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>> struct Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>> struct Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Boolean> struct Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Int32> struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Object> struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult> struct Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 : public MulticastDelegate_t { public: public: }; // UnityEngine.XR.ARSubsystems.Promise`1/ImmediatePromise<System.Int32Enum> struct ImmediatePromise_t33A4A0865409F335C63D517D8BAE65CAFC0492DC : public Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB { public: public: }; // System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>> struct Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.InputDevice> struct Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Int32> struct Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Int32Enum> struct Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.MeshInfo> struct Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Object> struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.UInt64> struct Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Vector2> struct Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Vector3> struct Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.XRNodeState> struct Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Camera/RenderRequest> struct Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData> struct Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 : public MulticastDelegate_t { public: public: }; // System.Reflection.MonoProperty/StaticGetter`1<System.Object> struct StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01 : public MulticastDelegate_t { public: public: }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane> struct TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Added_1)); } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Updated_2)); } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor> struct TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Added_1)); } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Updated_2)); } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe> struct TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t901047647D1B0577009EA387273335B841552234 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t901047647D1B0577009EA387273335B841552234 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Added_1)); } inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t901047647D1B0577009EA387273335B841552234 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Updated_2)); } inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t901047647D1B0577009EA387273335B841552234 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace> struct TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Added_1)); } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Updated_2)); } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody> struct TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Added_1)); } inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Updated_2)); } inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant> struct TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Added_1)); } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Updated_2)); } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud> struct TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Added_1)); } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Updated_2)); } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast> struct TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Added_1)); } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Updated_2)); } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> struct TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Added_1)); } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Updated_2)); } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> struct TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Added_1)); } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Updated_2)); } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> struct TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 { public: // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField bool ___U3CisCreatedU3Ek__BackingField_0; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 ___m_Added_1; // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 ___m_Updated_2; // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3; public: inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___U3CisCreatedU3Ek__BackingField_0)); } inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; } inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; } inline void set_U3CisCreatedU3Ek__BackingField_0(bool value) { ___U3CisCreatedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Added_1)); } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 get_m_Added_1() const { return ___m_Added_1; } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * get_address_of_m_Added_1() { return &___m_Added_1; } inline void set_m_Added_1(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 value) { ___m_Added_1 = value; } inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Updated_2)); } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 get_m_Updated_2() const { return ___m_Updated_2; } inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * get_address_of_m_Updated_2() { return &___m_Updated_2; } inline void set_m_Updated_2(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 value) { ___m_Updated_2 = value; } inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Removed_3)); } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; } inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; } inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value) { ___m_Removed_3 = value; } }; // UnityEngine.Events.UnityAction`1<System.Boolean> struct UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`1<System.Int32> struct UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`1<System.Object> struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene> struct UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`1<System.Single> struct UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`2<System.Object,System.Object> struct UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum> struct UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene> struct UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object> struct UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object> struct UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC : public MulticastDelegate_t { public: public: }; // UnityEngine.XR.ARFoundation.ARRaycastHit struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E { public: // System.Single UnityEngine.XR.ARFoundation.ARRaycastHit::<distance>k__BackingField float ___U3CdistanceU3Ek__BackingField_0; // UnityEngine.XR.ARFoundation.ARTrackable UnityEngine.XR.ARFoundation.ARRaycastHit::<trackable>k__BackingField ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1; // UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARFoundation.ARRaycastHit::m_Hit XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2; // UnityEngine.Transform UnityEngine.XR.ARFoundation.ARRaycastHit::m_Transform Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3; public: inline static int32_t get_offset_of_U3CdistanceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___U3CdistanceU3Ek__BackingField_0)); } inline float get_U3CdistanceU3Ek__BackingField_0() const { return ___U3CdistanceU3Ek__BackingField_0; } inline float* get_address_of_U3CdistanceU3Ek__BackingField_0() { return &___U3CdistanceU3Ek__BackingField_0; } inline void set_U3CdistanceU3Ek__BackingField_0(float value) { ___U3CdistanceU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CtrackableU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___U3CtrackableU3Ek__BackingField_1)); } inline ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * get_U3CtrackableU3Ek__BackingField_1() const { return ___U3CtrackableU3Ek__BackingField_1; } inline ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 ** get_address_of_U3CtrackableU3Ek__BackingField_1() { return &___U3CtrackableU3Ek__BackingField_1; } inline void set_U3CtrackableU3Ek__BackingField_1(ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * value) { ___U3CtrackableU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackableU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_m_Hit_2() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___m_Hit_2)); } inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB get_m_Hit_2() const { return ___m_Hit_2; } inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * get_address_of_m_Hit_2() { return &___m_Hit_2; } inline void set_m_Hit_2(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB value) { ___m_Hit_2 = value; } inline static int32_t get_offset_of_m_Transform_3() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___m_Transform_3)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_m_Transform_3() const { return ___m_Transform_3; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_m_Transform_3() { return &___m_Transform_3; } inline void set_m_Transform_3(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___m_Transform_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Transform_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_marshaled_pinvoke { float ___U3CdistanceU3Ek__BackingField_0; ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1; XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3; }; // Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_marshaled_com { float ___U3CdistanceU3Ek__BackingField_0; ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1; XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3; }; // UnityEngine.XR.ARFoundation.ARTextureInfo struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 { public: // UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARFoundation.ARTextureInfo::m_Descriptor XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1; // UnityEngine.Texture UnityEngine.XR.ARFoundation.ARTextureInfo::m_Texture Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2; public: inline static int32_t get_offset_of_m_Descriptor_1() { return static_cast<int32_t>(offsetof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355, ___m_Descriptor_1)); } inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_Descriptor_1() const { return ___m_Descriptor_1; } inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_Descriptor_1() { return &___m_Descriptor_1; } inline void set_m_Descriptor_1(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value) { ___m_Descriptor_1 = value; } inline static int32_t get_offset_of_m_Texture_2() { return static_cast<int32_t>(offsetof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355, ___m_Texture_2)); } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * get_m_Texture_2() const { return ___m_Texture_2; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** get_address_of_m_Texture_2() { return &___m_Texture_2; } inline void set_m_Texture_2(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { ___m_Texture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_2), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_marshaled_pinvoke { XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1; Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2; }; // Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_marshaled_com { XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1; Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2; }; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { 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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // UnityEngine.XR.ARSubsystems.XREnvironmentProbe struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C { public: // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackableId TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1; // UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Scale Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Scale_2; // UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Pose Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3; // UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Size Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Size_4; // UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TextureDescriptor XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_TextureDescriptor_5; // UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackingState int32_t ___m_TrackingState_6; // System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_NativePtr intptr_t ___m_NativePtr_7; public: inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackableId_1)); } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; } inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { ___m_TrackableId_1 = value; } inline static int32_t get_offset_of_m_Scale_2() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Scale_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Scale_2() const { return ___m_Scale_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Scale_2() { return &___m_Scale_2; } inline void set_m_Scale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Scale_2 = value; } inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Pose_3)); } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; } inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; } inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value) { ___m_Pose_3 = value; } inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Size_4)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Size_4() const { return ___m_Size_4; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Size_4() { return &___m_Size_4; } inline void set_m_Size_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Size_4 = value; } inline static int32_t get_offset_of_m_TextureDescriptor_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TextureDescriptor_5)); } inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_TextureDescriptor_5() const { return ___m_TextureDescriptor_5; } inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_TextureDescriptor_5() { return &___m_TextureDescriptor_5; } inline void set_m_TextureDescriptor_5(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value) { ___m_TextureDescriptor_5 = value; } inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackingState_6)); } inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; } inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; } inline void set_m_TrackingState_6(int32_t value) { ___m_TrackingState_6 = value; } inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_NativePtr_7)); } inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; } inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; } inline void set_m_NativePtr_7(intptr_t value) { ___m_NativePtr_7 = value; } }; struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields { public: // UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::s_Default XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___s_Default_0; public: inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields, ___s_Default_0)); } inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C get_s_Default_0() const { return ___s_Default_0; } inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * get_address_of_s_Default_0() { return &___s_Default_0; } inline void set_s_Default_0(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C value) { ___s_Default_0 = value; } }; // UnityEngine.XR.Management.XRGeneralSettings struct XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A { public: // UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRGeneralSettings::m_LoaderManagerInstance XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * ___m_LoaderManagerInstance_6; // System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_InitManagerOnStart bool ___m_InitManagerOnStart_7; // UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRGeneralSettings::m_XRManager XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * ___m_XRManager_8; // System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_ProviderIntialized bool ___m_ProviderIntialized_9; // System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_ProviderStarted bool ___m_ProviderStarted_10; public: inline static int32_t get_offset_of_m_LoaderManagerInstance_6() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_LoaderManagerInstance_6)); } inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * get_m_LoaderManagerInstance_6() const { return ___m_LoaderManagerInstance_6; } inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F ** get_address_of_m_LoaderManagerInstance_6() { return &___m_LoaderManagerInstance_6; } inline void set_m_LoaderManagerInstance_6(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * value) { ___m_LoaderManagerInstance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_LoaderManagerInstance_6), (void*)value); } inline static int32_t get_offset_of_m_InitManagerOnStart_7() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_InitManagerOnStart_7)); } inline bool get_m_InitManagerOnStart_7() const { return ___m_InitManagerOnStart_7; } inline bool* get_address_of_m_InitManagerOnStart_7() { return &___m_InitManagerOnStart_7; } inline void set_m_InitManagerOnStart_7(bool value) { ___m_InitManagerOnStart_7 = value; } inline static int32_t get_offset_of_m_XRManager_8() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_XRManager_8)); } inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * get_m_XRManager_8() const { return ___m_XRManager_8; } inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F ** get_address_of_m_XRManager_8() { return &___m_XRManager_8; } inline void set_m_XRManager_8(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * value) { ___m_XRManager_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_XRManager_8), (void*)value); } inline static int32_t get_offset_of_m_ProviderIntialized_9() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_ProviderIntialized_9)); } inline bool get_m_ProviderIntialized_9() const { return ___m_ProviderIntialized_9; } inline bool* get_address_of_m_ProviderIntialized_9() { return &___m_ProviderIntialized_9; } inline void set_m_ProviderIntialized_9(bool value) { ___m_ProviderIntialized_9 = value; } inline static int32_t get_offset_of_m_ProviderStarted_10() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_ProviderStarted_10)); } inline bool get_m_ProviderStarted_10() const { return ___m_ProviderStarted_10; } inline bool* get_address_of_m_ProviderStarted_10() { return &___m_ProviderStarted_10; } inline void set_m_ProviderStarted_10(bool value) { ___m_ProviderStarted_10 = value; } }; struct XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields { public: // System.String UnityEngine.XR.Management.XRGeneralSettings::k_SettingsKey String_t* ___k_SettingsKey_4; // UnityEngine.XR.Management.XRGeneralSettings UnityEngine.XR.Management.XRGeneralSettings::s_RuntimeSettingsInstance XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * ___s_RuntimeSettingsInstance_5; public: inline static int32_t get_offset_of_k_SettingsKey_4() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields, ___k_SettingsKey_4)); } inline String_t* get_k_SettingsKey_4() const { return ___k_SettingsKey_4; } inline String_t** get_address_of_k_SettingsKey_4() { return &___k_SettingsKey_4; } inline void set_k_SettingsKey_4(String_t* value) { ___k_SettingsKey_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___k_SettingsKey_4), (void*)value); } inline static int32_t get_offset_of_s_RuntimeSettingsInstance_5() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields, ___s_RuntimeSettingsInstance_5)); } inline XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * get_s_RuntimeSettingsInstance_5() const { return ___s_RuntimeSettingsInstance_5; } inline XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 ** get_address_of_s_RuntimeSettingsInstance_5() { return &___s_RuntimeSettingsInstance_5; } inline void set_s_RuntimeSettingsInstance_5(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * value) { ___s_RuntimeSettingsInstance_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_RuntimeSettingsInstance_5), (void*)value); } }; // UnityEngine.XR.Management.XRLoader struct XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A { public: public: }; // UnityEngine.XR.Management.XRManagerSettings struct XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A { public: // System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_InitializationComplete bool ___m_InitializationComplete_4; // System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_RequiresSettingsUpdate bool ___m_RequiresSettingsUpdate_5; // System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticLoading bool ___m_AutomaticLoading_6; // System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticRunning bool ___m_AutomaticRunning_7; // System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings::m_Loaders List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * ___m_Loaders_8; // System.Collections.Generic.HashSet`1<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings::m_RegisteredLoaders HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * ___m_RegisteredLoaders_9; // UnityEngine.XR.Management.XRLoader UnityEngine.XR.Management.XRManagerSettings::<activeLoader>k__BackingField XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * ___U3CactiveLoaderU3Ek__BackingField_10; public: inline static int32_t get_offset_of_m_InitializationComplete_4() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_InitializationComplete_4)); } inline bool get_m_InitializationComplete_4() const { return ___m_InitializationComplete_4; } inline bool* get_address_of_m_InitializationComplete_4() { return &___m_InitializationComplete_4; } inline void set_m_InitializationComplete_4(bool value) { ___m_InitializationComplete_4 = value; } inline static int32_t get_offset_of_m_RequiresSettingsUpdate_5() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_RequiresSettingsUpdate_5)); } inline bool get_m_RequiresSettingsUpdate_5() const { return ___m_RequiresSettingsUpdate_5; } inline bool* get_address_of_m_RequiresSettingsUpdate_5() { return &___m_RequiresSettingsUpdate_5; } inline void set_m_RequiresSettingsUpdate_5(bool value) { ___m_RequiresSettingsUpdate_5 = value; } inline static int32_t get_offset_of_m_AutomaticLoading_6() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_AutomaticLoading_6)); } inline bool get_m_AutomaticLoading_6() const { return ___m_AutomaticLoading_6; } inline bool* get_address_of_m_AutomaticLoading_6() { return &___m_AutomaticLoading_6; } inline void set_m_AutomaticLoading_6(bool value) { ___m_AutomaticLoading_6 = value; } inline static int32_t get_offset_of_m_AutomaticRunning_7() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_AutomaticRunning_7)); } inline bool get_m_AutomaticRunning_7() const { return ___m_AutomaticRunning_7; } inline bool* get_address_of_m_AutomaticRunning_7() { return &___m_AutomaticRunning_7; } inline void set_m_AutomaticRunning_7(bool value) { ___m_AutomaticRunning_7 = value; } inline static int32_t get_offset_of_m_Loaders_8() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_Loaders_8)); } inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * get_m_Loaders_8() const { return ___m_Loaders_8; } inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 ** get_address_of_m_Loaders_8() { return &___m_Loaders_8; } inline void set_m_Loaders_8(List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * value) { ___m_Loaders_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Loaders_8), (void*)value); } inline static int32_t get_offset_of_m_RegisteredLoaders_9() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_RegisteredLoaders_9)); } inline HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * get_m_RegisteredLoaders_9() const { return ___m_RegisteredLoaders_9; } inline HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 ** get_address_of_m_RegisteredLoaders_9() { return &___m_RegisteredLoaders_9; } inline void set_m_RegisteredLoaders_9(HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * value) { ___m_RegisteredLoaders_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RegisteredLoaders_9), (void*)value); } inline static int32_t get_offset_of_U3CactiveLoaderU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___U3CactiveLoaderU3Ek__BackingField_10)); } inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * get_U3CactiveLoaderU3Ek__BackingField_10() const { return ___U3CactiveLoaderU3Ek__BackingField_10; } inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B ** get_address_of_U3CactiveLoaderU3Ek__BackingField_10() { return &___U3CactiveLoaderU3Ek__BackingField_10; } inline void set_U3CactiveLoaderU3Ek__BackingField_10(XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * value) { ___U3CactiveLoaderU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CactiveLoaderU3Ek__BackingField_10), (void*)value); } }; // UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob struct FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D { public: // Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob::vertices NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 ___vertices_0; public: inline static int32_t get_offset_of_vertices_0() { return static_cast<int32_t>(offsetof(FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D, ___vertices_0)); } inline NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 get_vertices_0() const { return ___vertices_0; } inline NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * get_address_of_vertices_0() { return &___vertices_0; } inline void set_vertices_0(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 value) { ___vertices_0 = value; } }; // UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob struct CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B { public: // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob::identifiersIn NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___identifiersIn_0; // Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob::identifiersOut NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___identifiersOut_1; public: inline static int32_t get_offset_of_identifiersIn_0() { return static_cast<int32_t>(offsetof(CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B, ___identifiersIn_0)); } inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 get_identifiersIn_0() const { return ___identifiersIn_0; } inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * get_address_of_identifiersIn_0() { return &___identifiersIn_0; } inline void set_identifiersIn_0(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 value) { ___identifiersIn_0 = value; } inline static int32_t get_offset_of_identifiersOut_1() { return static_cast<int32_t>(offsetof(CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B, ___identifiersOut_1)); } inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B get_identifiersOut_1() const { return ___identifiersOut_1; } inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * get_address_of_identifiersOut_1() { return &___identifiersOut_1; } inline void set_identifiersOut_1(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B value) { ___identifiersOut_1 = value; } }; // UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob struct ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 { public: // Unity.Collections.NativeArray`1<UnityEngine.Quaternion> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob::confidenceIn NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 ___confidenceIn_0; // Unity.Collections.NativeArray`1<System.Single> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob::confidenceOut NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 ___confidenceOut_1; public: inline static int32_t get_offset_of_confidenceIn_0() { return static_cast<int32_t>(offsetof(ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3, ___confidenceIn_0)); } inline NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 get_confidenceIn_0() const { return ___confidenceIn_0; } inline NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 * get_address_of_confidenceIn_0() { return &___confidenceIn_0; } inline void set_confidenceIn_0(NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 value) { ___confidenceIn_0 = value; } inline static int32_t get_offset_of_confidenceOut_1() { return static_cast<int32_t>(offsetof(ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3, ___confidenceOut_1)); } inline NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 get_confidenceOut_1() const { return ___confidenceOut_1; } inline NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * get_address_of_confidenceOut_1() { return &___confidenceOut_1; } inline void set_confidenceOut_1(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 value) { ___confidenceOut_1 = value; } }; // UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob struct TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 { public: // Unity.Collections.NativeArray`1<UnityEngine.Quaternion> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob::positionsIn NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 ___positionsIn_0; // Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob::positionsOut NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___positionsOut_1; public: inline static int32_t get_offset_of_positionsIn_0() { return static_cast<int32_t>(offsetof(TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5, ___positionsIn_0)); } inline NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 get_positionsIn_0() const { return ___positionsIn_0; } inline NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 * get_address_of_positionsIn_0() { return &___positionsIn_0; } inline void set_positionsIn_0(NativeArray_1_t2672EA3A09E3FE76419439DC581905D460584A60 value) { ___positionsIn_0 = value; } inline static int32_t get_offset_of_positionsOut_1() { return static_cast<int32_t>(offsetof(TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5, ___positionsOut_1)); } inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 get_positionsOut_1() const { return ___positionsOut_1; } inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * get_address_of_positionsOut_1() { return &___positionsOut_1; } inline void set_positionsOut_1(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 value) { ___positionsOut_1 = value; } }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction<UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob> struct ExecuteJobFunction_tB9B07E13F0F992A5250F412D653CF059235A2B21 : public MulticastDelegate_t { public: public: }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob> struct ExecuteJobFunction_tB758319D1432C84153E7F9278122F41DAFE509D5 : public MulticastDelegate_t { public: public: }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob> struct ExecuteJobFunction_t9FC63F233120D93D7F47500E97804001E73D8C1A : public MulticastDelegate_t { public: public: }; // Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1/ExecuteJobFunction<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob> struct ExecuteJobFunction_tE18544DC31122F2EA5BE30A0B1370828790DEDA2 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit> struct Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo> struct Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C : public MulticastDelegate_t { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { 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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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); } }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object> struct SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // TSubsystem UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3::<subsystem>k__BackingField RuntimeObject * ___U3CsubsystemU3Ek__BackingField_4; public: inline static int32_t get_offset_of_U3CsubsystemU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1, ___U3CsubsystemU3Ek__BackingField_4)); } inline RuntimeObject * get_U3CsubsystemU3Ek__BackingField_4() const { return ___U3CsubsystemU3Ek__BackingField_4; } inline RuntimeObject ** get_address_of_U3CsubsystemU3Ek__BackingField_4() { return &___U3CsubsystemU3Ek__BackingField_4; } inline void set_U3CsubsystemU3Ek__BackingField_4(RuntimeObject * value) { ___U3CsubsystemU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemU3Ek__BackingField_4), (void*)value); } }; struct SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1_StaticFields { public: // System.Collections.Generic.List`1<TSubsystemDescriptor> UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3::s_SubsystemDescriptors List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___s_SubsystemDescriptors_5; // System.Collections.Generic.List`1<TSubsystem> UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3::s_SubsystemInstances List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___s_SubsystemInstances_6; public: inline static int32_t get_offset_of_s_SubsystemDescriptors_5() { return static_cast<int32_t>(offsetof(SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1_StaticFields, ___s_SubsystemDescriptors_5)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_s_SubsystemDescriptors_5() const { return ___s_SubsystemDescriptors_5; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_s_SubsystemDescriptors_5() { return &___s_SubsystemDescriptors_5; } inline void set_s_SubsystemDescriptors_5(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___s_SubsystemDescriptors_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SubsystemDescriptors_5), (void*)value); } inline static int32_t get_offset_of_s_SubsystemInstances_6() { return static_cast<int32_t>(offsetof(SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1_StaticFields, ___s_SubsystemInstances_6)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_s_SubsystemInstances_6() const { return ___s_SubsystemInstances_6; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_s_SubsystemInstances_6() { return &___s_SubsystemInstances_6; } inline void set_s_SubsystemInstances_6(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___s_SubsystemInstances_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SubsystemInstances_6), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : 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.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA m_Items[1]; public: inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * 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, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL); #endif } inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL); #endif } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : 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.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98 : public RuntimeArray { public: ALIGN_FIELD (8) CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 m_Items[1]; public: inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * 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, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 m_Items[1]; public: inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 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 } }; // UnityEngine.XR.ARSubsystems.TrackableId[] struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0 : public RuntimeArray { public: ALIGN_FIELD (8) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B m_Items[1]; public: inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * 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, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>[] struct KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D m_Items[1]; public: inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } }; // System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object>[] struct NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A : public RuntimeArray { public: ALIGN_FIELD (8) Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * m_Items[1]; public: inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 ** 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, Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Node_t96E92EA297C14C2CA6CB776B34A4953C6EE32EF9 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : 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.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : 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.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : 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); } }; // !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.SortedList`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707_gshared (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 * __this, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ___sortedList0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8_gshared (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.SortedList`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3_gshared (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E * __this, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ___sortedList0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B_gshared (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___source0, int32_t ___index1, const RuntimeMethod* method); // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method); // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method); // !!0[] System.Array::Empty<System.Object>() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_gshared_inline (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D_gshared (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE_gshared (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_gshared_inline (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53_gshared (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846_gshared (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_gshared_inline (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2_gshared (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA_gshared (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_gshared_inline (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E_gshared (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB_gshared (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m00AE49530694432761D2AC5849CAF68F0BD49AEE_gshared (ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m93EA35BCE92CF8F40FACEED76DC3E9669191B78E_gshared (ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mBC64F50B1AF5434E6D60CEC0D77A57E28E99C0AD_gshared (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mD570AA3F661F72D4051BA5B379832317ECD78534_gshared (ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, bool ___value0, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_gshared (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultValue4, const RuntimeMethod* method); // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr<UnityEngine.XR.ARSubsystems.TrackableId>(Unity.Collections.NativeArray`1<!!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_gshared (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___nativeArray0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A_gshared (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * __this, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_gshared (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC_gshared (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46_gshared (NativeArray_1_t901047647D1B0577009EA387273335B841552234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3_gshared (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A_gshared (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC_gshared (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD_gshared (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7_gshared (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489_gshared (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23_gshared (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_isCreated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::set_isCreated(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultValue4, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1_gshared (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method); // UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method); // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method); // TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_Item(UnityEngine.XR.ARSubsystems.TrackableId) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method); // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::TryGetTrackable(UnityEngine.XR.ARSubsystems.TrackableId,TTrackable&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, RuntimeObject ** ___trackable1, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>::.ctor(T,T,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB_gshared (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 * __this, int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>::.ctor(T,T,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF_gshared (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F * __this, uint16_t ___a0, uint16_t ___b1, uint16_t ___c2, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_gshared (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 NativeArray_1_GetEnumerator_mFBDFDB583040000D34F8AEBCE6C439868F658865_gshared (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_gshared (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_gshared (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_gshared (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_gshared (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_gshared (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Contains(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_gshared (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_gshared (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 NativeArray_1_GetEnumerator_mCC9C3B42EFD7AB95BDBCCCA2462D86D635B16A6E_gshared (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRAnchor>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C Enumerator_get_Current_m196B512A19FE41091D8F5751C7FF09E7C4FCA630_gshared (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRAnchor>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m887E7D2302C8CA4260949FC94B387C3874C845BB_gshared (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 NativeArray_1_GetEnumerator_m11C949E47F3AC53AFF1576CCF85F3645497D31CC_gshared (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRFace>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 Enumerator_get_Current_m0A4B0CC96F8639258F7B73E779D2961D86B17FAC_gshared (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRFace>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mBD637C9D73C6B837ACA03E136FFDDB70493AF660_gshared (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 NativeArray_1_GetEnumerator_mC335F70E2D112EDBB46A2A56E2948FD820EE8AED_gshared (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRParticipant>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F Enumerator_get_Current_m96FE871F7CABF18C196CE48154DF240D8903DE62_gshared (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRParticipant>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFF3B9AF82DC77BC9FEDC809CD8DB7E966CAF6304_gshared (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A NativeArray_1_GetEnumerator_m70FA7CCC70CEC018068F004159462919A4DCFD6E_gshared (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 Enumerator_get_Current_m02EAB0B0A5270DE72E8BB80F19C6635708C57351_gshared (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRPointCloud>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m33B3D18C3492590DA6B8C1C619C46EC24A4DF6C2_gshared (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 NativeArray_1_GetEnumerator_mC553C46E7E171CD84C35ECAECB93F325E120F9E0_gshared (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRRaycast>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 Enumerator_get_Current_m4F05F7E264598A862E091259499B4A19A590F3BE_gshared (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRRaycast>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m56157D8C4082C79E45C035BB3F5B5FAC7612A1DE_gshared (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 NativeArray_1_GetEnumerator_mEA08BCE196F354D2DF1D87A4A268A1167331E882_gshared (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 Enumerator_get_Current_mCE55C5A0F102F48E3FE385D8221ADA709517D5C1_gshared (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferencePoint>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7968B0F5348FF40310E60F5BBE36DD03B240DA0C_gshared (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD NativeArray_1_GetEnumerator_mDC26D1E9A69C3FC30E5AA29DA885731E65303F3C_gshared (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F Enumerator_get_Current_m27E7BD3D26A3B5A99C5E44AECBB644D6DCF67E11_gshared (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedImage>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0AC428F77B6087B387128665E76CE539E7CDCEFD_gshared (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 NativeArray_1_GetEnumerator_m9C750641C453BB3F3DEDE6ED32B0D13EB11A4410_gshared (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * __this, const RuntimeMethod* method); // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 Enumerator_get_Current_m2B4C0D5C55F2993CD773DA8C4FCD17E79F112DF7_gshared (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedObject>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFDD801DDDE9811DB41E817B5A00940E46CA8F692_gshared (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobsUtility::CreateJobReflectionData(System.Type,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t JobsUtility_CreateJobReflectionData_mD36CCBEE0714A6B0FA356AAA7FA342A65517A37C (Type_t * ___type0, RuntimeObject * ___managedJobFunction01, RuntimeObject * ___managedJobFunction12, RuntimeObject * ___managedJobFunction23, const RuntimeMethod* method); // System.Boolean Unity.Jobs.LowLevel.Unsafe.JobsUtility::GetWorkStealingRange(Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JobsUtility_GetWorkStealingRange_m8E2276200A11FDF636F1C6092E786ACD0396435C (JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * ___ranges0, int32_t ___jobIndex1, int32_t* ___beginIndex2, int32_t* ___endIndex3, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob::Execute(System.Int32) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void FlipBoundaryHandednessJob_Execute_m12A8B45C5A693BE25146CDBB1861D6912B45B1BC (FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D * IL2CPP_PARAMETER_RESTRICT __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob::Execute(System.Int32) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void CopyIdentifiersJob_Execute_mD22646C052A2D4C2175BAC538A6C81865F4D936F (CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B * IL2CPP_PARAMETER_RESTRICT __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob::Execute(System.Int32) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ExtractConfidenceValuesJob_Execute_mBB32C6898200B2C2759A35A703C4BC9DAB33FFA1 (ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 * IL2CPP_PARAMETER_RESTRICT __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob::Execute(System.Int32) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void TransformPositionsJob_Execute_m66173C7E9F15B5BFC4A1F9EB7C5802C59DFEFEE9 (TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 * IL2CPP_PARAMETER_RESTRICT __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.CustomYieldInstruction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomYieldInstruction__ctor_m01929E3EEB78B751510038B32D889061960DA1BE (CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5 (int32_t ___argument0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowNotSupportedException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E (int32_t ___resource0, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A (int32_t ___resource0, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9FB0DE0E3CE685F3CC51CC7558F42F10931B8645 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline)(__this, method); } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(!0,!1) inline void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.SortedList`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707 (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 * __this, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ___sortedList0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 *, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707_gshared)(__this, ___sortedList0, ___getEnumeratorRetType1, method); } // System.String SR::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m60020D8FC246DAA800C991565515D51118F2B16A (String_t* ___resourceFormat0, RuntimeObject * ___p11, RuntimeObject * ___p22, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Key() inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method) { return (( TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B (*) (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(!0,!1) inline void KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8 (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.SortedList`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3 (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E * __this, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ___sortedList0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E *, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3_gshared)(__this, ___sortedList0, ___getEnumeratorRetType1, method); } // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m40103AA97DC582C557B912CF4BBE86A4D166F803 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) inline void SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___source0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, int32_t, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B_gshared)(__this, ___source0, ___index1, method); } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { return (( SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * (*) (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline)(__this, method); } // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() inline int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { return (( int32_t (*) (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline)(__this, method); } // UnityEngine.SubsystemsImplementation.SubsystemWithProvider UnityEngine.SubsystemManager::FindStandaloneSubsystemByDescriptor(UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * SubsystemManager_FindStandaloneSubsystemByDescriptor_m4D6228127478931DB7C3307ECD539A0DADD55968 (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * ___descriptor0, const RuntimeMethod* method); // System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::get_subsystemTypeOverride() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, const RuntimeMethod* method); // System.Object System.Activator::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295 (Type_t * ___type0, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemManager::AddStandaloneSubsystem(UnityEngine.SubsystemsImplementation.SubsystemWithProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemManager_AddStandaloneSubsystem_m81A1438431C2ED439EA025B87BC4017F7AD775B2 (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * ___subsystem0, const RuntimeMethod* method); // System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::get_providerType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider__ctor_m6549AFB004D82BC1439CF25E69BC8BAB9C315604 (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, const RuntimeMethod* method); // UnityEngine.XR.Management.XRGeneralSettings UnityEngine.XR.Management.XRGeneralSettings::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * XRGeneralSettings_get_Instance_m8D7FC68414773249E7C8EEF06048916FD7E7D68D (const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRGeneralSettings::get_Manager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * XRGeneralSettings_get_Manager_m5E4819323E32CA8E97058B8ED282558779099544 (XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * __this, const RuntimeMethod* method); // UnityEngine.XR.Management.XRLoader UnityEngine.XR.Management.XRManagerSettings::get_activeLoader() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * XRManagerSettings_get_activeLoader_mB1950E58B1DD1774EB2798CEBA6D3C371CE8F1D8_inline (XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // !!0[] System.Array::Empty<System.Object>() inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_inline (const RuntimeMethod* method) { return (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline)(method); } // System.Void UnityEngine.Debug::LogWarningFormat(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarningFormat_m405E9C0A631F815816F349D7591DD545932FF774 (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Boolean UnityEngine.Behaviour::get_enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_enabled_m08077AB79934634E1EAE909C2B482BEF4C15A800 (Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 * __this, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_Start_m003500C832A046B3D66AAFC80226B608A7F15A29 (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider::Stop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_Stop_m3033765FF29DE25A80A290E9C8F1D5B9087AD0FA (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemProvider__ctor_m2CE89B46251DEF756241F4339D1B3C97585C40D5 (SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * __this, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider::set_providerBase(UnityEngine.SubsystemsImplementation.SubsystemProvider) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemWithProvider_set_providerBase_m322900A6068F18D7D279ADDFD82D8FA6FE49CA52_inline (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider__ctor_m7839AE90041C8237270AFC52FC96E1BEECCDC653 (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskStatus System.Threading.Tasks.Task::get_Status() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Object System.Threading.Tasks.Task::get_AsyncState() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Task_get_AsyncState_m3470627DAC0FAD1BB41E763113037E70B21F5DB9_inline (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.Task::get_CreationOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_CreationOptions_mFFFB200145023232580498A32BCEC3263F915E16 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.AggregateException System.Threading.Tasks.Task::get_Exception() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * Task_get_Exception_m53945993385D4031240B0DB2C0585ABBFB8CFA81 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Tasks.Task::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Threading.CancellationToken System.Threading.Tasks.Task::get_CancellationToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD Task_get_CancellationToken_m95864774C9D967684A3BE04AC9A1F80874B19CC1 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_inline (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter::OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_OnCompletedInternal_m6B7D35FFFF726F689EABF9A513DF885B84CF790D (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation1, bool ___continueOnCapturedContext2, bool ___flowExecutionContext3, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D_gshared)(__this, ___continuation0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter::ValidateEnd(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_ValidateEnd_m8C8532E03B6F655525AB87D420CACE753DC1CD3B (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() inline bool TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, const RuntimeMethod* method) { return (( bool (*) (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_inline (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53 (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() inline int32_t TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846 (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, const RuntimeMethod* method) { return (( int32_t (*) (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_inline (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2 (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() inline RuntimeObject * TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_inline (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, const RuntimeMethod*))TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() inline VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, const RuntimeMethod* method) { return (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB_gshared)(__this, method); } // System.Void System.Threading.Tasks.TaskFactory::CheckMultiTaskContinuationOptions(System.Threading.Tasks.TaskContinuationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckMultiTaskContinuationOptions_m592473AB47584DE6B8C032335E63798E2737D40A (int32_t ___continuationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::CheckCreationOptions(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckCreationOptions_mB5BA78C895925094C20D93F462BB06FFE47AFB65 (int32_t ___creationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_mF1E8FBF8D067B862FF2E96557394CC8CB7EB334F (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::.ctor(System.Boolean,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, bool ___canceled0, int32_t ___creationOptions1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___ct2, const RuntimeMethod* method); // System.Threading.Tasks.Task System.Threading.Tasks.Task::InternalCurrentIfAttached(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5 (int32_t ___creationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::PossiblyCaptureContext(System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, int32_t* ___stackMark0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, Delegate_t * ___action0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsRanToCompletion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mD3809D54FDAC43AA11084A9FE53165D57A6153FF (RuntimeObject * ___arg00, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Delegate::get_Method() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227 (Delegate_t * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::AtomicStateUpdate(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, int32_t ___newBits0, int32_t ___illegalBits1, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task/ContingentProperties::SetCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties_SetCompleted_m44A115EBFE52BF43F884D212036223DF50F8A591 (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::FinishStageThree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_FinishStageThree_m69858B3BDD06352B2A0B0A25F399D52DE199E226 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsWaitNotificationEnabledOrNotRanToCompletion() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::InternalWait(System.Int32,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_InternalWait_mE57EF4D36E52156CE56428699F713D69BFF2C4B0 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, int32_t ___millisecondsTimeout0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::NotifyDebuggerOfWaitCompletionIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_NotifyDebuggerOfWaitCompletionIfNecessary_m566B12643DFD769D51D3CC476B00528CF658CABC (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::ThrowIfExceptional(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_ThrowIfExceptional_mD693A139D1600E19B1ACBEFA6DF2D92063BED55B (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, bool ___includeTaskCanceledExceptions0, const RuntimeMethod* method); // System.Threading.Tasks.Task/ContingentProperties System.Threading.Tasks.Task::EnsureContingentPropertiesInitialized(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * Task_EnsureContingentPropertiesInitialized_mB59C18080FCEA80351631975D751A478D44449F4 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, bool ___needsProtection0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::AddException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddException_mF68C273C2777513AD41B2064C15889F2D978173E (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::Finish(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_Finish_m924F5D1414BDC1A572D3C925CD9FBD4147C09FD5 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, bool ___bUserDelegateExecuted0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RecordInternalCancellationRequest(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RecordInternalCancellationRequest_mFA7A466EDA83666B183E9A69D9546F8FF45F99E3 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::CancellationCleanupLogic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_CancellationCleanupLogic_m17ACB54C48890F80AE8A7A489671E103767072B1 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m00AE49530694432761D2AC5849CAF68F0BD49AEE (ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D *, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m00AE49530694432761D2AC5849CAF68F0BD49AEE_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m93EA35BCE92CF8F40FACEED76DC3E9669191B78E (ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC *, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m93EA35BCE92CF8F40FACEED76DC3E9669191B78E_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mBC64F50B1AF5434E6D60CEC0D77A57E28E99C0AD (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 *, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mBC64F50B1AF5434E6D60CEC0D77A57E28E99C0AD_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mD570AA3F661F72D4051BA5B379832317ECD78534 (ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 *, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mD570AA3F661F72D4051BA5B379832317ECD78534_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_added() inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_updated() inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_gshared_inline)(__this, ___value0, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions) inline void NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_gshared)(__this, ___length0, ___allocator1, ___options2, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, int32_t, int32_t, int32_t, int32_t, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , const RuntimeMethod*))TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr<UnityEngine.XR.ARSubsystems.TrackableId>(Unity.Collections.NativeArray`1<!!0>) inline void* NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761 (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___nativeArray0, const RuntimeMethod* method) { return (( void* (*) (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 , const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_gshared)(___nativeArray0, method); } // System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpy(System.Void*,System.Void*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B (void* ___destination0, void* ___source1, int64_t ___size2, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, void*, int32_t, void*, int32_t, void*, int32_t, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose() inline void NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *, const RuntimeMethod*))NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A_gshared)(__this, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::Dispose() inline void NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *, const RuntimeMethod*))NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose() inline void TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215 (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_added() inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624 (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_updated() inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57 (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5 (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, int32_t, int32_t, int32_t, int32_t, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , const RuntimeMethod*))TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4 (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, void*, int32_t, void*, int32_t, void*, int32_t, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose() inline void NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *, const RuntimeMethod*))NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose() inline void TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451 (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_added() inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_updated() inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506 (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, int32_t, int32_t, int32_t, int32_t, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , const RuntimeMethod*))TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1 (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, void*, int32_t, void*, int32_t, void*, int32_t, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose() inline void NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46 (NativeArray_1_t901047647D1B0577009EA387273335B841552234 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t901047647D1B0577009EA387273335B841552234 *, const RuntimeMethod*))NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose() inline void TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28 (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_added() inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_updated() inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44 (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43 (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, int32_t, int32_t, int32_t, int32_t, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , const RuntimeMethod*))TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608 (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, void*, int32_t, void*, int32_t, void*, int32_t, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose() inline void NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3 (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *, const RuntimeMethod*))NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose() inline void TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_added() inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72 (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_updated() inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5 (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, int32_t, int32_t, int32_t, int32_t, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , const RuntimeMethod*))TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, void*, int32_t, void*, int32_t, void*, int32_t, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose() inline void NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *, const RuntimeMethod*))NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose() inline void TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6 (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_added() inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_updated() inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, int32_t, int32_t, int32_t, int32_t, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , const RuntimeMethod*))TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1 (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, void*, int32_t, void*, int32_t, void*, int32_t, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose() inline void NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *, const RuntimeMethod*))NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose() inline void TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9 (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_added() inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_updated() inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320 (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887 (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54 (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, int32_t, int32_t, int32_t, int32_t, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , const RuntimeMethod*))TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, void*, int32_t, void*, int32_t, void*, int32_t, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose() inline void NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *, const RuntimeMethod*))NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose() inline void TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2 (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_added() inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_updated() inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40 (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, int32_t, int32_t, int32_t, int32_t, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , const RuntimeMethod*))TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4 (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, void*, int32_t, void*, int32_t, void*, int32_t, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose() inline void NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7 (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *, const RuntimeMethod*))NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose() inline void TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_added() inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898 (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_updated() inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0 (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, int32_t, int32_t, int32_t, int32_t, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , const RuntimeMethod*))TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, void*, int32_t, void*, int32_t, void*, int32_t, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose() inline void NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489 (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *, const RuntimeMethod*))NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose() inline void TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7 (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_added() inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2 (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_updated() inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3 (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871 (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, int32_t, int32_t, int32_t, int32_t, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , const RuntimeMethod*))TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8 (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, void*, int32_t, void*, int32_t, void*, int32_t, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose() inline void NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23 (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *, const RuntimeMethod*))NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose() inline void TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051 (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_added() inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02 (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared)(__this, method); } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_updated() inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47 (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared)(__this, method); } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_removed() inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_isCreated() inline bool TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( bool (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_gshared_inline)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::set_isCreated(System.Boolean) inline void TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, bool, const RuntimeMethod*))TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_gshared_inline)(__this, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) inline void TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6 (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultValue4, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, int32_t, int32_t, int32_t, int32_t, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , const RuntimeMethod*))TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6_gshared)(__this, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) inline void TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120 (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, void*, int32_t, void*, int32_t, void*, int32_t, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , int32_t, int32_t, const RuntimeMethod*))TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120_gshared)(__this, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose() inline void NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1 (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *, const RuntimeMethod*))NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose() inline void TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { (( void (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC_gshared)(__this, method); } // System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>) inline void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_gshared)(__this, ___trackables0, method); } // UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetEnumerator() inline Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { return (( Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, const RuntimeMethod*))TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE_gshared)(__this, method); } // System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>) inline void TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method) { (( void (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_gshared)(__this, ___trackables0, method); } // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_count() inline int32_t TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161 (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, const RuntimeMethod*))TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_gshared)(__this, method); } // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyNotFoundException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_m6757CFA9B5CC91705866ABDD9E48681DAB1C71D9 (KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_Item(UnityEngine.XR.ARSubsystems.TrackableId) inline RuntimeObject * TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20 (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method) { return (( RuntimeObject * (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_gshared)(__this, ___trackableId0, method); } // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetHashCode() inline int32_t TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, const RuntimeMethod*))TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D_gshared)(__this, method); } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>) inline bool TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008 (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___other0, const RuntimeMethod* method) { return (( bool (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 , const RuntimeMethod*))TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008_gshared)(__this, ___other0, method); } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(System.Object) inline bool TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03 (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, RuntimeObject *, const RuntimeMethod*))TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03_gshared)(__this, ___obj0, method); } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::TryGetTrackable(UnityEngine.XR.ARSubsystems.TrackableId,TTrackable&) inline bool TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581 (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, RuntimeObject ** ___trackable1, const RuntimeMethod* method) { return (( bool (*) (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject **, const RuntimeMethod*))TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_gshared)(__this, ___trackableId0, ___trackable1, method); } // System.Void UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>::.ctor(T,T,T) inline void Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 * __this, int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method) { (( void (*) (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 *, int32_t, int32_t, int32_t, const RuntimeMethod*))Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB_gshared)(__this, ___a0, ___b1, ___c2, method); } // System.Void UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>::.ctor(T,T,T) inline void Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F * __this, uint16_t ___a0, uint16_t ___b1, uint16_t ___c2, const RuntimeMethod* method) { (( void (*) (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F *, uint16_t, uint16_t, uint16_t, const RuntimeMethod*))Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF_gshared)(__this, ___a0, ___b1, ___c2, method); } // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB (int32_t ___h10, int32_t ___h21, int32_t ___h32, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityEventBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101 (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityEventBase::AddCall(UnityEngine.Events.BaseInvokableCall) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * ___call0, const RuntimeMethod* method); // System.Object System.Delegate::get_Target() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline (Delegate_t * __this, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityEventBase::RemoveListener(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method); // System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Type,System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36 (Type_t * ___objectType0, String_t* ___functionName1, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___argumentTypes2, const RuntimeMethod* method); // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.UnityEventBase::PrepareInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32) inline BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * __this, int32_t ___index0, const RuntimeMethod* method) { return (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void UnityEngine.Events.InvokableCall::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7 (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count() inline int32_t List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Clear() inline void HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8 (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *, const RuntimeMethod*))HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::GetEnumerator() inline Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 NativeArray_1_GetEnumerator_mFBDFDB583040000D34F8AEBCE6C439868F658865 (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * __this, const RuntimeMethod* method) { return (( Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 (*) (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mFBDFDB583040000D34F8AEBCE6C439868F658865_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current() inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787 (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method) { return (( BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Add(!0) inline bool HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_gshared)(__this, ___item0, method); } // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext() inline bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::GetEnumerator() inline Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7 (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * __this, const RuntimeMethod* method) { return (( Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 (*) (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId>::get_Current() inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315 (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 * __this, const RuntimeMethod* method) { return (( TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B (*) (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *, const RuntimeMethod*))Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_gshared)(__this, method); } // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Remove(!0) inline bool HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_gshared)(__this, ___item0, method); } // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId>::MoveNext() inline bool Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *, const RuntimeMethod*))Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_gshared)(__this, method); } // System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::Contains(!0) inline bool HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_gshared)(__this, ___item0, method); } // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.ARSubsystems.TrackableId>::.ctor() inline void HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1 (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *, const RuntimeMethod*))HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::GetEnumerator() inline Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 NativeArray_1_GetEnumerator_mCC9C3B42EFD7AB95BDBCCCA2462D86D635B16A6E (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * __this, const RuntimeMethod* method) { return (( Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 (*) (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mCC9C3B42EFD7AB95BDBCCCA2462D86D635B16A6E_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRAnchor>::get_Current() inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C Enumerator_get_Current_m196B512A19FE41091D8F5751C7FF09E7C4FCA630 (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 * __this, const RuntimeMethod* method) { return (( XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C (*) (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *, const RuntimeMethod*))Enumerator_get_Current_m196B512A19FE41091D8F5751C7FF09E7C4FCA630_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRAnchor>::MoveNext() inline bool Enumerator_MoveNext_m887E7D2302C8CA4260949FC94B387C3874C845BB (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *, const RuntimeMethod*))Enumerator_MoveNext_m887E7D2302C8CA4260949FC94B387C3874C845BB_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::GetEnumerator() inline Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 NativeArray_1_GetEnumerator_m11C949E47F3AC53AFF1576CCF85F3645497D31CC (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * __this, const RuntimeMethod* method) { return (( Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 (*) (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_m11C949E47F3AC53AFF1576CCF85F3645497D31CC_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRFace>::get_Current() inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 Enumerator_get_Current_m0A4B0CC96F8639258F7B73E779D2961D86B17FAC (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 * __this, const RuntimeMethod* method) { return (( XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 (*) (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *, const RuntimeMethod*))Enumerator_get_Current_m0A4B0CC96F8639258F7B73E779D2961D86B17FAC_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRFace>::MoveNext() inline bool Enumerator_MoveNext_mBD637C9D73C6B837ACA03E136FFDDB70493AF660 (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *, const RuntimeMethod*))Enumerator_MoveNext_mBD637C9D73C6B837ACA03E136FFDDB70493AF660_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::GetEnumerator() inline Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 NativeArray_1_GetEnumerator_mC335F70E2D112EDBB46A2A56E2948FD820EE8AED (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * __this, const RuntimeMethod* method) { return (( Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 (*) (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mC335F70E2D112EDBB46A2A56E2948FD820EE8AED_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRParticipant>::get_Current() inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F Enumerator_get_Current_m96FE871F7CABF18C196CE48154DF240D8903DE62 (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 * __this, const RuntimeMethod* method) { return (( XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F (*) (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *, const RuntimeMethod*))Enumerator_get_Current_m96FE871F7CABF18C196CE48154DF240D8903DE62_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRParticipant>::MoveNext() inline bool Enumerator_MoveNext_mFF3B9AF82DC77BC9FEDC809CD8DB7E966CAF6304 (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *, const RuntimeMethod*))Enumerator_MoveNext_mFF3B9AF82DC77BC9FEDC809CD8DB7E966CAF6304_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::GetEnumerator() inline Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A NativeArray_1_GetEnumerator_m70FA7CCC70CEC018068F004159462919A4DCFD6E (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * __this, const RuntimeMethod* method) { return (( Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A (*) (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *, const RuntimeMethod*))NativeArray_1_GetEnumerator_m70FA7CCC70CEC018068F004159462919A4DCFD6E_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_Current() inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 Enumerator_get_Current_m02EAB0B0A5270DE72E8BB80F19C6635708C57351 (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A * __this, const RuntimeMethod* method) { return (( XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 (*) (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *, const RuntimeMethod*))Enumerator_get_Current_m02EAB0B0A5270DE72E8BB80F19C6635708C57351_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRPointCloud>::MoveNext() inline bool Enumerator_MoveNext_m33B3D18C3492590DA6B8C1C619C46EC24A4DF6C2 (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *, const RuntimeMethod*))Enumerator_MoveNext_m33B3D18C3492590DA6B8C1C619C46EC24A4DF6C2_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast>::GetEnumerator() inline Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 NativeArray_1_GetEnumerator_mC553C46E7E171CD84C35ECAECB93F325E120F9E0 (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * __this, const RuntimeMethod* method) { return (( Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 (*) (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mC553C46E7E171CD84C35ECAECB93F325E120F9E0_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRRaycast>::get_Current() inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 Enumerator_get_Current_m4F05F7E264598A862E091259499B4A19A590F3BE (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 * __this, const RuntimeMethod* method) { return (( XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 (*) (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *, const RuntimeMethod*))Enumerator_get_Current_m4F05F7E264598A862E091259499B4A19A590F3BE_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRRaycast>::MoveNext() inline bool Enumerator_MoveNext_m56157D8C4082C79E45C035BB3F5B5FAC7612A1DE (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *, const RuntimeMethod*))Enumerator_MoveNext_m56157D8C4082C79E45C035BB3F5B5FAC7612A1DE_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::GetEnumerator() inline Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 NativeArray_1_GetEnumerator_mEA08BCE196F354D2DF1D87A4A268A1167331E882 (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * __this, const RuntimeMethod* method) { return (( Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 (*) (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mEA08BCE196F354D2DF1D87A4A268A1167331E882_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_Current() inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 Enumerator_get_Current_mCE55C5A0F102F48E3FE385D8221ADA709517D5C1 (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 * __this, const RuntimeMethod* method) { return (( XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 (*) (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *, const RuntimeMethod*))Enumerator_get_Current_mCE55C5A0F102F48E3FE385D8221ADA709517D5C1_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferencePoint>::MoveNext() inline bool Enumerator_MoveNext_m7968B0F5348FF40310E60F5BBE36DD03B240DA0C (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *, const RuntimeMethod*))Enumerator_MoveNext_m7968B0F5348FF40310E60F5BBE36DD03B240DA0C_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::GetEnumerator() inline Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD NativeArray_1_GetEnumerator_mDC26D1E9A69C3FC30E5AA29DA885731E65303F3C (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * __this, const RuntimeMethod* method) { return (( Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD (*) (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *, const RuntimeMethod*))NativeArray_1_GetEnumerator_mDC26D1E9A69C3FC30E5AA29DA885731E65303F3C_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_Current() inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F Enumerator_get_Current_m27E7BD3D26A3B5A99C5E44AECBB644D6DCF67E11 (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD * __this, const RuntimeMethod* method) { return (( XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F (*) (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *, const RuntimeMethod*))Enumerator_get_Current_m27E7BD3D26A3B5A99C5E44AECBB644D6DCF67E11_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedImage>::MoveNext() inline bool Enumerator_MoveNext_m0AC428F77B6087B387128665E76CE539E7CDCEFD (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *, const RuntimeMethod*))Enumerator_MoveNext_m0AC428F77B6087B387128665E76CE539E7CDCEFD_gshared)(__this, method); } // Unity.Collections.NativeArray`1/Enumerator<!0> Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::GetEnumerator() inline Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 NativeArray_1_GetEnumerator_m9C750641C453BB3F3DEDE6ED32B0D13EB11A4410 (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * __this, const RuntimeMethod* method) { return (( Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 (*) (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *, const RuntimeMethod*))NativeArray_1_GetEnumerator_m9C750641C453BB3F3DEDE6ED32B0D13EB11A4410_gshared)(__this, method); } // !0 Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_Current() inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 Enumerator_get_Current_m2B4C0D5C55F2993CD773DA8C4FCD17E79F112DF7 (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 * __this, const RuntimeMethod* method) { return (( XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 (*) (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *, const RuntimeMethod*))Enumerator_get_Current_m2B4C0D5C55F2993CD773DA8C4FCD17E79F112DF7_gshared)(__this, method); } // UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::get_trackableId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.XRTrackedObject>::MoveNext() inline bool Enumerator_MoveNext_mFDD801DDDE9811DB41E817B5A00940E46CA8F692 (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *, const RuntimeMethod*))Enumerator_MoveNext_mFDD801DDDE9811DB41E817B5A00940E46CA8F692_gshared)(__this, method); } // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, int32_t, int32_t, const RuntimeMethod*))ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E , const RuntimeMethod*))ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) inline bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E , const RuntimeMethod*))ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.Int32::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared)(__this, ___comparer0, method); } // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() inline String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, const RuntimeMethod*))ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, bool, const RuntimeMethod*))ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 , const RuntimeMethod*))ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) inline bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 , const RuntimeMethod*))ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared)(__this, ___comparer0, method); } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() inline String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, const RuntimeMethod*))ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*))ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) inline bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*))ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() inline String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, const RuntimeMethod*))ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() inline bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob>::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ParallelForJobStruct_1_Initialize_mF153FF3368BE8864F6359FC5668629A7DCCE3BB5_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); { intptr_t L_0 = ((ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); bool L_1; L_1 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); V_0 = (bool)L_1; bool L_2 = V_0; if (!L_2) { goto IL_0036; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL); ExecuteJobFunction_tB9B07E13F0F992A5250F412D653CF059235A2B21 * L_5 = (ExecuteJobFunction_tB9B07E13F0F992A5250F412D653CF059235A2B21 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (ExecuteJobFunction_tB9B07E13F0F992A5250F412D653CF059235A2B21 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)NULL, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); intptr_t L_6; L_6 = JobsUtility_CreateJobReflectionData_mD36CCBEE0714A6B0FA356AAA7FA342A65517A37C((Type_t *)L_4, (RuntimeObject *)L_5, (RuntimeObject *)NULL, (RuntimeObject *)NULL, /*hidden argument*/NULL); ((ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_jobReflectionData_0((intptr_t)L_6); } IL_0036: { intptr_t L_7 = ((ParallelForJobStruct_1_t0353D28A6B49A5BEF79501EC8EE55453AA501A40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); V_1 = (intptr_t)L_7; goto IL_003e; } IL_003e: { intptr_t L_8 = V_1; return (intptr_t)L_8; } } // System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCorePlaneSubsystem/ARCoreProvider/FlipBoundaryHandednessJob>::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelForJobStruct_1_Execute_m4476198A7D3BFDBE1ABB6FDA052C0F9524F6B81F_gshared (FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D * ___jobData0, intptr_t ___additionalPtr1, intptr_t ___bufferRangePatchData2, JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * ___ranges3, int32_t ___jobIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; bool V_5 = false; bool V_6 = false; { goto IL_0041; } IL_0003: { JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * L_0 = ___ranges3; int32_t L_1 = ___jobIndex4; bool L_2; L_2 = JobsUtility_GetWorkStealingRange_m8E2276200A11FDF636F1C6092E786ACD0396435C((JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)L_0, (int32_t)L_1, (int32_t*)(int32_t*)(&V_0), (int32_t*)(int32_t*)(&V_1), /*hidden argument*/NULL); V_3 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_3; if (!L_3) { goto IL_0019; } } { goto IL_0046; } IL_0019: { int32_t L_4 = V_1; V_2 = (int32_t)L_4; int32_t L_5 = V_0; V_4 = (int32_t)L_5; goto IL_0035; } IL_0020: { FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D * L_6 = ___jobData0; int32_t L_7 = V_4; FlipBoundaryHandednessJob_Execute_m12A8B45C5A693BE25146CDBB1861D6912B45B1BC((FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D *)(FlipBoundaryHandednessJob_t0C441DB8FEA090BD59B068B67406FF258CFD214D *)L_6, (int32_t)L_7, /*hidden argument*/NULL); int32_t L_8 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0035: { int32_t L_9 = V_4; int32_t L_10 = V_2; V_5 = (bool)((((int32_t)L_9) < ((int32_t)L_10))? 1 : 0); bool L_11 = V_5; if (L_11) { goto IL_0020; } } { } IL_0041: { V_6 = (bool)1; goto IL_0003; } IL_0046: { 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.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob>::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ParallelForJobStruct_1_Initialize_m402B50E3E8D8ABEE4D86C12044D1083745607159_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); { intptr_t L_0 = ((ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); bool L_1; L_1 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); V_0 = (bool)L_1; bool L_2 = V_0; if (!L_2) { goto IL_0036; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL); ExecuteJobFunction_tB758319D1432C84153E7F9278122F41DAFE509D5 * L_5 = (ExecuteJobFunction_tB758319D1432C84153E7F9278122F41DAFE509D5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (ExecuteJobFunction_tB758319D1432C84153E7F9278122F41DAFE509D5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)NULL, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); intptr_t L_6; L_6 = JobsUtility_CreateJobReflectionData_mD36CCBEE0714A6B0FA356AAA7FA342A65517A37C((Type_t *)L_4, (RuntimeObject *)L_5, (RuntimeObject *)NULL, (RuntimeObject *)NULL, /*hidden argument*/NULL); ((ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_jobReflectionData_0((intptr_t)L_6); } IL_0036: { intptr_t L_7 = ((ParallelForJobStruct_1_t46AD7A8F056C62091BA03C7E399714E0897EB9DF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); V_1 = (intptr_t)L_7; goto IL_003e; } IL_003e: { intptr_t L_8 = V_1; return (intptr_t)L_8; } } // System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/CopyIdentifiersJob>::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelForJobStruct_1_Execute_m28DC164D07C10711F09A32003C9ACE0960E70FE8_gshared (CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B * ___jobData0, intptr_t ___additionalPtr1, intptr_t ___bufferRangePatchData2, JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * ___ranges3, int32_t ___jobIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; bool V_5 = false; bool V_6 = false; { goto IL_0041; } IL_0003: { JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * L_0 = ___ranges3; int32_t L_1 = ___jobIndex4; bool L_2; L_2 = JobsUtility_GetWorkStealingRange_m8E2276200A11FDF636F1C6092E786ACD0396435C((JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)L_0, (int32_t)L_1, (int32_t*)(int32_t*)(&V_0), (int32_t*)(int32_t*)(&V_1), /*hidden argument*/NULL); V_3 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_3; if (!L_3) { goto IL_0019; } } { goto IL_0046; } IL_0019: { int32_t L_4 = V_1; V_2 = (int32_t)L_4; int32_t L_5 = V_0; V_4 = (int32_t)L_5; goto IL_0035; } IL_0020: { CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B * L_6 = ___jobData0; int32_t L_7 = V_4; CopyIdentifiersJob_Execute_mD22646C052A2D4C2175BAC538A6C81865F4D936F((CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B *)(CopyIdentifiersJob_tD324D0C48F429D2772540945C8D1F161876F523B *)L_6, (int32_t)L_7, /*hidden argument*/NULL); int32_t L_8 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0035: { int32_t L_9 = V_4; int32_t L_10 = V_2; V_5 = (bool)((((int32_t)L_9) < ((int32_t)L_10))? 1 : 0); bool L_11 = V_5; if (L_11) { goto IL_0020; } } { } IL_0041: { V_6 = (bool)1; goto IL_0003; } IL_0046: { 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.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob>::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ParallelForJobStruct_1_Initialize_mF5C615EA6B9F4D517F5895C7BE2B29C150D0AACC_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); { intptr_t L_0 = ((ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); bool L_1; L_1 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); V_0 = (bool)L_1; bool L_2 = V_0; if (!L_2) { goto IL_0036; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL); ExecuteJobFunction_t9FC63F233120D93D7F47500E97804001E73D8C1A * L_5 = (ExecuteJobFunction_t9FC63F233120D93D7F47500E97804001E73D8C1A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (ExecuteJobFunction_t9FC63F233120D93D7F47500E97804001E73D8C1A *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)NULL, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); intptr_t L_6; L_6 = JobsUtility_CreateJobReflectionData_mD36CCBEE0714A6B0FA356AAA7FA342A65517A37C((Type_t *)L_4, (RuntimeObject *)L_5, (RuntimeObject *)NULL, (RuntimeObject *)NULL, /*hidden argument*/NULL); ((ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_jobReflectionData_0((intptr_t)L_6); } IL_0036: { intptr_t L_7 = ((ParallelForJobStruct_1_tC130CAC7B179C5DDA087BF5DB30701C1B749365B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); V_1 = (intptr_t)L_7; goto IL_003e; } IL_003e: { intptr_t L_8 = V_1; return (intptr_t)L_8; } } // System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/ExtractConfidenceValuesJob>::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelForJobStruct_1_Execute_mD86657D88747F6B017C2DC19BA0B06365CC1E5AC_gshared (ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 * ___jobData0, intptr_t ___additionalPtr1, intptr_t ___bufferRangePatchData2, JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * ___ranges3, int32_t ___jobIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; bool V_5 = false; bool V_6 = false; { goto IL_0041; } IL_0003: { JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * L_0 = ___ranges3; int32_t L_1 = ___jobIndex4; bool L_2; L_2 = JobsUtility_GetWorkStealingRange_m8E2276200A11FDF636F1C6092E786ACD0396435C((JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)L_0, (int32_t)L_1, (int32_t*)(int32_t*)(&V_0), (int32_t*)(int32_t*)(&V_1), /*hidden argument*/NULL); V_3 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_3; if (!L_3) { goto IL_0019; } } { goto IL_0046; } IL_0019: { int32_t L_4 = V_1; V_2 = (int32_t)L_4; int32_t L_5 = V_0; V_4 = (int32_t)L_5; goto IL_0035; } IL_0020: { ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 * L_6 = ___jobData0; int32_t L_7 = V_4; ExtractConfidenceValuesJob_Execute_mBB32C6898200B2C2759A35A703C4BC9DAB33FFA1((ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 *)(ExtractConfidenceValuesJob_t3C3E3C2C06E49CC331FB2A0C7A243A76DBB144B3 *)L_6, (int32_t)L_7, /*hidden argument*/NULL); int32_t L_8 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0035: { int32_t L_9 = V_4; int32_t L_10 = V_2; V_5 = (bool)((((int32_t)L_9) < ((int32_t)L_10))? 1 : 0); bool L_11 = V_5; if (L_11) { goto IL_0020; } } { } IL_0041: { V_6 = (bool)1; goto IL_0003; } IL_0046: { 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.IntPtr Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob>::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ParallelForJobStruct_1_Initialize_m3277995B6712B0406046F6AAF8C8547CA5026D23_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); { intptr_t L_0 = ((ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); bool L_1; L_1 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); V_0 = (bool)L_1; bool L_2 = V_0; if (!L_2) { goto IL_0036; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 1)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_3, /*hidden argument*/NULL); ExecuteJobFunction_tE18544DC31122F2EA5BE30A0B1370828790DEDA2 * L_5 = (ExecuteJobFunction_tE18544DC31122F2EA5BE30A0B1370828790DEDA2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (ExecuteJobFunction_tE18544DC31122F2EA5BE30A0B1370828790DEDA2 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)NULL, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); intptr_t L_6; L_6 = JobsUtility_CreateJobReflectionData_mD36CCBEE0714A6B0FA356AAA7FA342A65517A37C((Type_t *)L_4, (RuntimeObject *)L_5, (RuntimeObject *)NULL, (RuntimeObject *)NULL, /*hidden argument*/NULL); ((ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_jobReflectionData_0((intptr_t)L_6); } IL_0036: { intptr_t L_7 = ((ParallelForJobStruct_1_t36FCFAD1A7D9189440A0D08E344987416F1BEE1B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_jobReflectionData_0(); V_1 = (intptr_t)L_7; goto IL_003e; } IL_003e: { intptr_t L_8 = V_1; return (intptr_t)L_8; } } // System.Void Unity.Jobs.IJobParallelForExtensions/ParallelForJobStruct`1<UnityEngine.XR.ARCore.ARCoreXRDepthSubsystem/ARCoreProvider/TransformPositionsJob>::Execute(T&,System.IntPtr,System.IntPtr,Unity.Jobs.LowLevel.Unsafe.JobRanges&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelForJobStruct_1_Execute_m8C65D7FB53570F9D70B9C47880CC7D95411B9E99_gshared (TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 * ___jobData0, intptr_t ___additionalPtr1, intptr_t ___bufferRangePatchData2, JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * ___ranges3, int32_t ___jobIndex4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; bool V_5 = false; bool V_6 = false; { goto IL_0041; } IL_0003: { JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E * L_0 = ___ranges3; int32_t L_1 = ___jobIndex4; bool L_2; L_2 = JobsUtility_GetWorkStealingRange_m8E2276200A11FDF636F1C6092E786ACD0396435C((JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)(JobRanges_tC73669D80CD008ABB5B2F5D58B28FF369DB3855E *)L_0, (int32_t)L_1, (int32_t*)(int32_t*)(&V_0), (int32_t*)(int32_t*)(&V_1), /*hidden argument*/NULL); V_3 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_3; if (!L_3) { goto IL_0019; } } { goto IL_0046; } IL_0019: { int32_t L_4 = V_1; V_2 = (int32_t)L_4; int32_t L_5 = V_0; V_4 = (int32_t)L_5; goto IL_0035; } IL_0020: { TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 * L_6 = ___jobData0; int32_t L_7 = V_4; TransformPositionsJob_Execute_m66173C7E9F15B5BFC4A1F9EB7C5802C59DFEFEE9((TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 *)(TransformPositionsJob_tA20C365F14C480BE23A500C6D7CD86E1F7C3E2B5 *)L_6, (int32_t)L_7, /*hidden argument*/NULL); int32_t L_8 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0035: { int32_t L_9 = V_4; int32_t L_10 = V_2; V_5 = (bool)((((int32_t)L_9) < ((int32_t)L_10))? 1 : 0); bool L_11 = V_5; if (L_11) { goto IL_0020; } } { } IL_0041: { V_6 = (bool)1; goto IL_0003; } IL_0046: { 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.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m6DDF071DE28B2B2AFB774BA6A79DAFAF42AF8CC9_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __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.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFC4A9C842C594CE8A47D08444A331DE0F64D8CC4_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m12D7E28C790416B7F3E8738CD0C98213E744E19F_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mE6D0BC78CE5F328848C27C4411D47E3D285FE01E_gshared (Predicate_1_t71B48A6F8F2E9674171F09CA11C0A20A066C1B40 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m776B952921086121A0E3CCA654DEE684E6C5C646_gshared (Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4 * __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.Boolean System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m44D4F3DA33F0E5DBE06C8D89AC70FB08D2096709_gshared (Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4 * __this, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD766D6685770E4443571B64F2002415576136A67_gshared (Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4 * __this, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m86C03AAD9765133022277A08A2478F322261083C_gshared (Predicate_1_tB8E2ED1E4FEDF65D77E77AC5BACEC5D697BEDDB4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m05C078F3E4B1B0DC59760760AEFFC8702E43807E_gshared (Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B * __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.Boolean System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mE182A88AE5DD80DEC00012BEA4B169B28BAC8616_gshared (Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B * __this, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m313A1A8A83BBFEE68EB9B694C3D2587C7D6FC55E_gshared (Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B * __this, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m61116BC4C982A3C0ED471C5D59DC1FD19F242D4A_gshared (Predicate_1_tFE28F061DA20590309AB96EB0DD9AEDBA973BE1B * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mF51D5A5F86029BD1F8BB33D29D708DA3592A0FCF_gshared (Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C * __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.Boolean System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m168B753B76D58EE55DDA65AF037597640FCC914B_gshared (Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C * __this, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m61FDD31919FFE187ECB61995B233754C558E51E5_gshared (Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C * __this, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mEE81B99896D44BBA2FDF03D5CD1C51C05762BF92_gshared (Predicate_1_t9C2948BF8EE6C2452FE5C21641A9DFF2D6ED764C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.InputDevice>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7063B28AB3812221EAF8E9536BEFFE848F48D3BB_gshared (Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70 * __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.Boolean System.Predicate`1<UnityEngine.XR.InputDevice>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDD53D34A5D4E1A444A8BE7D181BE970998B04519_gshared (Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70 * __this, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.InputDevice>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE891F007EEA9926F040A10471E7CC5C0858616D4_gshared (Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70 * __this, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.InputDevice>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7735CBDC30D1D459CFF3C4A1653451467A5A3D4C_gshared (Predicate_1_t47FF8D29E26D933AD874C69E51BB93C62D8BCD70 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Int32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m15D44D0E044DB7B98816BEAF9CC9937AB75637E9_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __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.Boolean System.Predicate`1<System.Int32>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2CD0DAA41126E0DF23F140A7C6BECA0AB6592959_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, int32_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m82601F0455C2256B440D7CCD4A582FE006878A45_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, int32_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<System.Int32>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3CA4AEF257C04CBD04A01F2A160AF2EF76991DD2_gshared (Predicate_1_tED4FCD5B1AA7E54F65C6005FA1131B090CD5205E * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m153A7D35187FF7F4631C59D1584FAE7BE97DB0EC_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __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.Boolean System.Predicate`1<System.Int32Enum>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD73508EF1CC48FF2AA3DBD127CBE9D40CEDB6A78_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, int32_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m6D680A16ABF97FEDB1462FC5C6E5B0E3AE452D43_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, int32_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mC8875FFE8A800DE94B35312FC7448DE653A17739_gshared (Predicate_1_t130E2B8C41454BCB6F3296488EB55572BC7B0B48 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.MeshInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m328F1052EEC2941896306624F4F1356087025CFD_gshared (Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9 * __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.Boolean System.Predicate`1<UnityEngine.XR.MeshInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m160F3EA15E50CAF53A8A9324424817EA051EDFD0_gshared (Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9 * __this, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.MeshInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mCCB87AD9C5ADF289C0E9A6FBA3FCEA48EB38AAAC_gshared (Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9 * __this, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.MeshInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3CBA6F48B3EBEAABA1EBD74AF35624BECEDE0DD2_gshared (Predicate_1_t12A6BF4D792729E8E41AEE5DBDC77D34C58D3FC9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __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.Boolean System.Predicate`1<System.Object>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6D3A43A54FAC38E55033FA2CCD04E7BD19C943CF_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< bool >::Invoke(targetMethod, ___obj0); else result = GenericVirtFuncInvoker0< bool >::Invoke(targetMethod, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0); else result = VirtFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0); } } else { typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2BEA907731B8CDA9D4CA213637D54EBB1F7F8174_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___obj0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD0302860893AAE37F05B1C30D2055E37D7C5A657_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.UInt64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m10C8E7879ABB530F94BDCF745D66F8B2643A3EA0_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __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.Boolean System.Predicate`1<System.UInt64>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6A92B10BBE951E6E989D4A5ED88067E83C49F288_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, uint64_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.UInt64>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m4DEA32367BA7003BA7CC43F58B2A35CDBCFD857D_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, uint64_t ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<System.UInt64>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7A92C14D8A6ADCC3B2042366AED5C2D2BE6D9CDD_gshared (Predicate_1_t42BE435912A24D47C2E3B2A75F006C528AC131E7 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD78990C2EAEBFB9AB76C5DA6A7236414B461EE77_gshared (Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838 * __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.Boolean System.Predicate`1<UnityEngine.Vector2>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mB27DE151E21D000D9184B00780B4DCE10E074D5C_gshared (Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m0E4931C7B35E3DDEAD97AE6D1C7CDC6028176AF8_gshared (Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m04BDD816A16886F2DB19B2CDE496554E5ABCD786_gshared (Predicate_1_t537C282C9F8BD5CAA8035063B516A90C27B8F838 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m753A323EFCEC0CFF32E4DAABEAA0F71EE7F2809F_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __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.Boolean System.Predicate`1<UnityEngine.Vector3>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m8A46CD72E2849E47BCF38ABE5B3C0CA56A68C06E_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mBA970C920E69EA498F8FF4ACFF971B2E9A8ADD26_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m196C32984931A3BB771EDA03963C525FAE071BA8_gshared (Predicate_1_tFA18DEC8134D5D2D0C1FE30372A0B455BB6FA0CD * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.XRNodeState>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3BFDEB49DD3AD3194196DD994967F3CE46E24EC9_gshared (Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8 * __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.Boolean System.Predicate`1<UnityEngine.XR.XRNodeState>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m10227601BFEAD7B52F473EAA935D49DF3D27ED61_gshared (Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8 * __this, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.XRNodeState>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mB2560643662D55FFD3F169DF4FB6F2CAF470D0F4_gshared (Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8 * __this, XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.XRNodeState>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m563F787405F117DB70586561D19287E806876AE6_gshared (Predicate_1_t8ED7FE26DB5C1D54053076D6C9BB435B05FBA3E8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m64F6C874E8DF166528CBAAB9ABE6483BDDA29A63_gshared (Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5 * __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.Boolean System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mB2942DA2292D38B8A1BDB2455C8BB3DB269E67EE_gshared (Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5 * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mDA5828F797D4C691E17DB3A0DF61F2D8DF063A9D_gshared (Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5 * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mEB4A615F370EE1B06518D6F20786BFFE70ED8BE7_gshared (Predicate_1_t4BE268C98C5858CD60E56D9D2331C177D55B2DC5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m001B1B924BDD3E634F2E41B1327E25580D341DB9_gshared (Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE * __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.Boolean System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9A365316FFCCF2FA65FB21624EA834A74C87083B_gshared (Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m5BE8335ED153FC8CA5C316FE561AB54662074DE6_gshared (Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m100D507B400342C91FE198FB41D6153C01B9D32B_gshared (Predicate_1_t7A8C93ACC84DF4CBC36E079A63E3ACC488D361EE * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7E44171AD6CE787A9CD91692FE20B2A164A9EC29_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __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.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m39F943F4658F60A061C8FB960995950D016208A3_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mADE188062858C4208D0CD63502F58F7B22F7F3DA_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mF4AA09CE0D4E9CA9D465A5D8A8E3C5DB9DA3907C_gshared (Predicate_1_tDCE23EAF6493699BBEEFEFA2DF749D6B29AD17C3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Camera/RenderRequest>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m9AE1FBB59C7804F43BB7F70F6616C066E08357CE_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __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.Boolean System.Predicate`1<UnityEngine.Camera/RenderRequest>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD7797CBE2273C74BD54ED7F5D4A3B161F3B1BB75_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Camera/RenderRequest>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m64DC80BAF17601C4F4088CD2D43FFFAECC036855_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.Camera/RenderRequest>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m288662FE7F0DFC2608C68B449142CD896DE8213D_gshared (Predicate_1_tDFA01DE6116A07CF0BA344A62DCEB459F6553CDF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3C5810242C7DA82A1533E24B5DE37D6835C42203_gshared (Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F * __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.Boolean System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m4C68E4C5D908B0C7F8D087A94DF7C2E5C9FBC462_gshared (Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F * __this, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mC988A25FC836EEB38B0D3BCFD026F97FB533AB9F_gshared (Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F * __this, PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mF71BCAEA86B3113265A14C0013DD337329B4D0EA_gshared (Predicate_1_t2891A41B66CC41FB44CE31758AB08E9856DB439F * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m8F857AB4515F540252A80981F665591BEFCCB2A0_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __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.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCD1DAC421B4FB481E03C84B48CA31C89C061E43D_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m9A5A4ED350C2539D89FD48792B05AA0795F501DA_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___obj0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m9C48A7530861655B9C99D94F8F1558E9D66B647A_gshared (Predicate_1_t37DCC10ABCA72CA0B7539363EF733CDC2823E931 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::get_keepWaiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Promise_1_get_keepWaiting_m85382BAFD7B83B380400BA956F96D37C1A8D0DDB_gshared (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * __this, const RuntimeMethod* method) { bool V_0 = false; { // OnKeepWaiting(); NullCheck((Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)__this); VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::OnKeepWaiting() */, (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)__this); // return !m_Complete; bool L_0 = (bool)__this->get_m_Complete_1(); V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); goto IL_0014; } IL_0014: { // } bool L_1 = V_0; return (bool)L_1; } } // T UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::get_result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Promise_1_get_result_m33053FA985B63B89584FB72198A244113EBB811F_gshared (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * __this, const RuntimeMethod* method) { { // public T result { get; private set; } int32_t L_0 = (int32_t)__this->get_U3CresultU3Ek__BackingField_0(); return (int32_t)L_0; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::set_result(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1_set_result_m36182B073E68F1D427E3EA9B0513C383930CAD6D_gshared (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * __this, int32_t ___value0, const RuntimeMethod* method) { { // public T result { get; private set; } int32_t L_0 = ___value0; __this->set_U3CresultU3Ek__BackingField_0(L_0); return; } } // UnityEngine.XR.ARSubsystems.Promise`1<T> UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::CreateResolvedPromise(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * Promise_1_CreateResolvedPromise_m4772DECEBD5DFF6811D242285DE7B47DD5749CE4_gshared (int32_t ___result0, const RuntimeMethod* method) { Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * V_0 = NULL; { // return new ImmediatePromise(result); int32_t L_0 = ___result0; ImmediatePromise_t33A4A0865409F335C63D517D8BAE65CAFC0492DC * L_1 = (ImmediatePromise_t33A4A0865409F335C63D517D8BAE65CAFC0492DC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (ImmediatePromise_t33A4A0865409F335C63D517D8BAE65CAFC0492DC *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_1, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); V_0 = (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)L_1; goto IL_000a; } IL_000a: { // } Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * L_2 = V_0; return (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)L_2; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::Resolve(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1_Resolve_mF8B1A1D8C8E70C67C551DA612CD612809D34D145_gshared (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * __this, int32_t ___result0, const RuntimeMethod* method) { { // this.result = result; int32_t L_0 = ___result0; NullCheck((Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)__this); (( void (*) (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); // m_Complete = true; __this->set_m_Complete_1((bool)1); // } return; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1__ctor_m2CE1E91F6A1BD6DFFCA356F5C97304CD792A5A5D_gshared (Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * __this, const RuntimeMethod* method) { { NullCheck((CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 *)__this); CustomYieldInstruction__ctor_m01929E3EEB78B751510038B32D889061960DA1BE((CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::get_keepWaiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Promise_1_get_keepWaiting_m8F56FAFA07207A7F948D83F9CB7C6FB4CB9B4420_gshared (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * __this, const RuntimeMethod* method) { bool V_0 = false; { // OnKeepWaiting(); NullCheck((Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)__this); VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::OnKeepWaiting() */, (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)__this); // return !m_Complete; bool L_0 = (bool)__this->get_m_Complete_1(); V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); goto IL_0014; } IL_0014: { // } bool L_1 = V_0; return (bool)L_1; } } // T UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::get_result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Promise_1_get_result_mF19249D63E164EB89F42E5F39C8A864D24D173D9_gshared (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * __this, const RuntimeMethod* method) { { // public T result { get; private set; } RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CresultU3Ek__BackingField_0(); return (RuntimeObject *)L_0; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::set_result(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1_set_result_m78F692F6A487C3820C9BEF158185879E29CDA609_gshared (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // public T result { get; private set; } RuntimeObject * L_0 = ___value0; __this->set_U3CresultU3Ek__BackingField_0(L_0); return; } } // UnityEngine.XR.ARSubsystems.Promise`1<T> UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::CreateResolvedPromise(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * Promise_1_CreateResolvedPromise_m0B951AB248D9F8E0A47DE79A38C2CE6D6516A9F5_gshared (RuntimeObject * ___result0, const RuntimeMethod* method) { Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * V_0 = NULL; { // return new ImmediatePromise(result); RuntimeObject * L_0 = ___result0; ImmediatePromise_tD743EC53293FA1E94CF3AEAF6354F917FB138E75 * L_1 = (ImmediatePromise_tD743EC53293FA1E94CF3AEAF6354F917FB138E75 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (ImmediatePromise_tD743EC53293FA1E94CF3AEAF6354F917FB138E75 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); V_0 = (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)L_1; goto IL_000a; } IL_000a: { // } Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * L_2 = V_0; return (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)L_2; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::Resolve(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1_Resolve_mD129574A3B098F10F5EA378A28AF26AA42D0AE3B_gshared (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { { // this.result = result; RuntimeObject * L_0 = ___result0; NullCheck((Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)__this); (( void (*) (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); // m_Complete = true; __this->set_m_Complete_1((bool)1); // } return; } } // System.Void UnityEngine.XR.ARSubsystems.Promise`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Promise_1__ctor_m6EDB6790E9CEA6E2081E6C73ACA93416C2BB5824_gshared (Promise_1_tBBBB45840CF402A358D3D757F84CDA3AC9DE5BEB * __this, const RuntimeMethod* method) { { NullCheck((CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 *)__this); CustomYieldInstruction__ctor_m01929E3EEB78B751510038B32D889061960DA1BE((CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 *)__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.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Collections.Generic.IList`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mDCF2476FE7DC5E93AC43D7C21B04F4F6592D3505_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject* ___list0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___list0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)7, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___list0; __this->set_list_0(L_1); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_m736D640DF2D568C1FD5CC7C979434F7F466EB9C8_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0); return (int32_t)L_1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ReadOnlyCollection_1_get_Item_m3D3A82B39E83A3B8DF5C0F9CBA41F9D7B31601A1_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_m7E23A0C5417203FA2478280AC8653392D6FBBB16_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_1 = ___value0; NullCheck((RuntimeObject*)L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_1); return (bool)L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m43AC73B4E6BC21BBAEBC0E87D4C4D409578C83A9_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* ___array0, int32_t ___index1, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_1 = ___array0; int32_t L_2 = ___index1; NullCheck((RuntimeObject*)L_0); InterfaceActionInvoker2< CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)L_1, (int32_t)L_2); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m51D83255337C9CE25E59E9AD3BA7EE248F897FEE_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_IndexOf_m63608906E7B76468FE7B9D70E54DB08182E4B4BF_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_1 = ___value0; NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_1); return (int32_t)L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m9E419D50D2E4B7EFAE745F0C2B46F1322DAA160E_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { return (bool)1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m8EF1834C1BE327DF515590AB748537C53BE83A11_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_mB2E1C5ED371E697D87335E20463BCF3A64DB0C89_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m31C79871AAE5E071D6A9B9FEBC4567BB59B32A76_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mC63D378BF8A02DD3697BD5F5278BE9C58555FD21_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m412801944A4C0A312DAACB6F5B26E7145054963B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m6920B3D3823CCE300F8520F2E83B986571D3584B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_mE7497EA49C1D3CC94C4E9B5538F459196FC636A3_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_mEFA5DAD8BB90E9E7D1DB93C5BA82746DD7933692_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_mF1AA67CC5B4C018659391958D865FBD6D2CF17DF_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)3, /*hidden argument*/NULL); } IL_0009: { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2; L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)7, /*hidden argument*/NULL); } IL_0018: { RuntimeArray * L_3 = ___array0; NullCheck((RuntimeArray *)L_3); int32_t L_4; L_4 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_3, (int32_t)0, /*hidden argument*/NULL); if (!L_4) { goto IL_0027; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)6, /*hidden argument*/NULL); } IL_0027: { int32_t L_5 = ___index1; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0033; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11((int32_t)((int32_t)17), (int32_t)4, /*hidden argument*/NULL); } IL_0033: { RuntimeArray * L_6 = ___array0; NullCheck((RuntimeArray *)L_6); int32_t L_7; L_7 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_6, /*hidden argument*/NULL); int32_t L_8 = ___index1; NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this); int32_t L_9; L_9 = (( int32_t (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9))) { goto IL_0049; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)5, /*hidden argument*/NULL); } IL_0049: { RuntimeArray * L_10 = ___array0; V_0 = (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)((CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)IsInst((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_11 = V_0; if (!L_11) { goto IL_0061; } } { RuntimeObject* L_12 = (RuntimeObject*)__this->get_list_0(); CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_13 = V_0; int32_t L_14 = ___index1; NullCheck((RuntimeObject*)L_12); InterfaceActionInvoker2< CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_12, (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)L_13, (int32_t)L_14); return; } IL_0061: { RuntimeArray * L_15 = ___array0; NullCheck((RuntimeObject *)L_15); Type_t * L_16; L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_15, /*hidden argument*/NULL); NullCheck((Type_t *)L_16); Type_t * L_17; L_17 = VirtFuncInvoker0< Type_t * >::Invoke(91 /* System.Type System.Type::GetElementType() */, (Type_t *)L_16); V_1 = (Type_t *)L_17; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19; L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_18, /*hidden argument*/NULL); V_2 = (Type_t *)L_19; Type_t * L_20 = V_1; Type_t * L_21 = V_2; NullCheck((Type_t *)L_20); bool L_22; L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_20, (Type_t *)L_21); if (L_22) { goto IL_0091; } } { Type_t * L_23 = V_2; Type_t * L_24 = V_1; NullCheck((Type_t *)L_23); bool L_25; L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_23, (Type_t *)L_24); if (L_25) { goto IL_0091; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_0091: { RuntimeArray * L_26 = ___array0; V_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_3; if (L_27) { goto IL_00a2; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_00a2: { RuntimeObject* L_28 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_28); int32_t L_29; L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_28); V_4 = (int32_t)L_29; } IL_00af: try { // begin try (depth: 1) { V_5 = (int32_t)0; goto IL_00d4; } IL_00b4: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = V_3; int32_t L_31 = ___index1; int32_t L_32 = (int32_t)L_31; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); RuntimeObject* L_33 = (RuntimeObject*)__this->get_list_0(); int32_t L_34 = V_5; NullCheck((RuntimeObject*)L_33); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_35; L_35 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_33, (int32_t)L_34); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_36 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_35; RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_36); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_37); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (RuntimeObject *)L_37); int32_t L_38 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); } IL_00d4: { int32_t L_39 = V_5; int32_t L_40 = V_4; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_00b4; } } IL_00da: { goto IL_00e6; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00dc; } throw e; } CATCH_00dc: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00e6; } // end catch (depth: 1) IL_00e6: { return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m13C50D50797D424309378B8AD8BAE437724E9940_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_IList_get_Item_mF8C2C44B7870037B7E274AF7C8AC202B4E3DED1B_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_3 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_3); return (RuntimeObject *)L_4; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_set_Item_mCFD65CE6DA818F63C30A9653AC384B4E6B4E8F80_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_Add_m3A778B50120BAB734ED23A25F42846C2445C7573_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Clear_m642595225F9F050BA091B09AF4A2B51101B6A439_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IsCompatibleObject(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_IsCompatibleObject_mF9BCB0CC5E80207124F1531BBB57AE36CDB17E6A_gshared (RuntimeObject * ___value0, const RuntimeMethod* method) { CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )); CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_2 = V_0; CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_3 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_Contains_m95F7845C553CFE3B69FA205B4D658A50A7E1F536_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this); bool L_3; L_3 = (( bool (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )((*(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)((CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (bool)L_3; } IL_0015: { return (bool)0; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_IndexOf_mB133EB8DDA0C35BAD009F6484043CC3C6ACEF7F6_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this); int32_t L_3; L_3 = (( int32_t (*) (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 *)__this, (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )((*(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)((CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return (int32_t)L_3; } IL_0015: { return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Insert_m2F331159BB2F4782680939A66DAE27646B5FC37C_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Remove_m448A233C5DF5AC45768D5315C37CB7FC6A57D89F_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_mB5085D8DC4FA66E09B93353F6C372CBE07154943_gshared (ReadOnlyCollection_1_t02BB5C6352D96419CA6197B50B8B18B3F6A95AE0 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*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.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Collections.Generic.IList`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m5AD02ABD96C2DBF99144C430920F41CF64C658FA_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject* ___list0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___list0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)7, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___list0; __this->set_list_0(L_1); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_mF6F24336D702AB0E175BF95DE0B3C982DD183CF1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0); return (int32_t)L_1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ReadOnlyCollection_1_get_Item_mD36A5BC7E4B76316C5FFD2AACF470C67565490EC_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_m1226644270DBAF86C0D5640A1E28072F8959FF1E_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_1 = ___value0; NullCheck((RuntimeObject*)L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_1); return (bool)L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m7F5DB8CBAD2E79CD147FBFABF230B8058D1F6AFF_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* ___array0, int32_t ___index1, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_1 = ___array0; int32_t L_2 = ___index1; NullCheck((RuntimeObject*)L_0); InterfaceActionInvoker2< CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)L_1, (int32_t)L_2); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m336D6EC6CD86C85072EBEDC5D830681D86FB23D1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_IndexOf_mA1A0D3CF230F70B67CBB9338C85156A87F7B6F43_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_1 = ___value0; NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_1); return (int32_t)L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mF75C45D87F8EDDFC67EC68FB14481FCFCDFB24A1_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { return (bool)1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_mC051C9D120F0E28DC6224E223E4AF0AB088FB111_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m9B01E76A587EE8262375344318467BD893FD98DF_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m09EE7F5FBC866DCF02459609E962D1405579E1C2_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mBDDF794E50A3663413E065ACAC05AD82AD9F5155_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m623114E8C4EA100D70CD37704E272B268CF3DF7E_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_mD9806DFD68033291F74EDA207E3C4ECA1804FDB2_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_mC60815F5BC89E4FD0DCA56C9BF5B7819C0ECB29C_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m380FBF21C104202A7AF0646F9F3D2A807DA5DB8D_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_mCDA696E42FE1EFB6DD640B95D6A2E14684F1B849_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)3, /*hidden argument*/NULL); } IL_0009: { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2; L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)7, /*hidden argument*/NULL); } IL_0018: { RuntimeArray * L_3 = ___array0; NullCheck((RuntimeArray *)L_3); int32_t L_4; L_4 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_3, (int32_t)0, /*hidden argument*/NULL); if (!L_4) { goto IL_0027; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)6, /*hidden argument*/NULL); } IL_0027: { int32_t L_5 = ___index1; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0033; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11((int32_t)((int32_t)17), (int32_t)4, /*hidden argument*/NULL); } IL_0033: { RuntimeArray * L_6 = ___array0; NullCheck((RuntimeArray *)L_6); int32_t L_7; L_7 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_6, /*hidden argument*/NULL); int32_t L_8 = ___index1; NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this); int32_t L_9; L_9 = (( int32_t (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9))) { goto IL_0049; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)5, /*hidden argument*/NULL); } IL_0049: { RuntimeArray * L_10 = ___array0; V_0 = (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)((CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)IsInst((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_11 = V_0; if (!L_11) { goto IL_0061; } } { RuntimeObject* L_12 = (RuntimeObject*)__this->get_list_0(); CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_13 = V_0; int32_t L_14 = ___index1; NullCheck((RuntimeObject*)L_12); InterfaceActionInvoker2< CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_12, (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)L_13, (int32_t)L_14); return; } IL_0061: { RuntimeArray * L_15 = ___array0; NullCheck((RuntimeObject *)L_15); Type_t * L_16; L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_15, /*hidden argument*/NULL); NullCheck((Type_t *)L_16); Type_t * L_17; L_17 = VirtFuncInvoker0< Type_t * >::Invoke(91 /* System.Type System.Type::GetElementType() */, (Type_t *)L_16); V_1 = (Type_t *)L_17; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19; L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_18, /*hidden argument*/NULL); V_2 = (Type_t *)L_19; Type_t * L_20 = V_1; Type_t * L_21 = V_2; NullCheck((Type_t *)L_20); bool L_22; L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_20, (Type_t *)L_21); if (L_22) { goto IL_0091; } } { Type_t * L_23 = V_2; Type_t * L_24 = V_1; NullCheck((Type_t *)L_23); bool L_25; L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_23, (Type_t *)L_24); if (L_25) { goto IL_0091; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_0091: { RuntimeArray * L_26 = ___array0; V_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_3; if (L_27) { goto IL_00a2; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_00a2: { RuntimeObject* L_28 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_28); int32_t L_29; L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_28); V_4 = (int32_t)L_29; } IL_00af: try { // begin try (depth: 1) { V_5 = (int32_t)0; goto IL_00d4; } IL_00b4: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = V_3; int32_t L_31 = ___index1; int32_t L_32 = (int32_t)L_31; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); RuntimeObject* L_33 = (RuntimeObject*)__this->get_list_0(); int32_t L_34 = V_5; NullCheck((RuntimeObject*)L_33); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_35; L_35 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_33, (int32_t)L_34); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_36 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_35; RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_36); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_37); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (RuntimeObject *)L_37); int32_t L_38 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); } IL_00d4: { int32_t L_39 = V_5; int32_t L_40 = V_4; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_00b4; } } IL_00da: { goto IL_00e6; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00dc; } throw e; } CATCH_00dc: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00e6; } // end catch (depth: 1) IL_00e6: { return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_mE3E746D6EA83CD29A7F3DB96E88BC666A8485303_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_IList_get_Item_m1168CE7B1CCD8FED6B3F6CC50FF5B0C10F790198_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2; L_2 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_3 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_3); return (RuntimeObject *)L_4; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_set_Item_m42AFF35D7BB9411ED601378492B0415FA724A468_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_Add_mE9E394DF2990CDC9BA75DD7F69DD2CC733BCEDA8_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Clear_m1F10D2D0CFB72FDE846EF3E6032D69C44DDDB521_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IsCompatibleObject(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_IsCompatibleObject_m17592EE4D7D3B338A09DEAE5B2402FC72EE7557F_gshared (RuntimeObject * ___value0, const RuntimeMethod* method) { CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )); CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_2 = V_0; CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_3 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_Contains_m18207D2F683DF7925612204E4F900E6D10D7B501_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this); bool L_3; L_3 = (( bool (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )((*(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)((CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (bool)L_3; } IL_0015: { return (bool)0; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_IndexOf_m0B51029DADCA88BB7F074CCEE1760FEB35CBEF16_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this); int32_t L_3; L_3 = (( int32_t (*) (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 *)__this, (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )((*(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)((CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return (int32_t)L_3; } IL_0015: { return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Insert_m779DCE8D7DF3C3CC7FB3ACB0910DC2B5D4E10845_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Remove_m49A4A90B6646111E1F83AD543DB394AC93010A23_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m7AEB35746E9B5FC54384438D9C9DC5421FC29FF8_gshared (ReadOnlyCollection_1_t8838EC5DC5D2BD0C82AEA8EAE373E5AE9F09B294 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*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.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mED7425C8A39DDAE57BB831E4903F987E9D033BF2_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject* ___list0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___list0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)7, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___list0; __this->set_list_0(L_1); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_m2D719EE02B7FE98B5D6E9515334C594836D2C0C7_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0); return (int32_t)L_1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_get_Item_m92C5369651F9216CBCAD03983F2F34C5C3BF0744_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (RuntimeObject *)L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_mC72DF447A107ADCA6039253F8ADDF04BEA6A6141_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); RuntimeObject * L_1 = ___value0; NullCheck((RuntimeObject*)L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Contains(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (RuntimeObject *)L_1); return (bool)L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::CopyTo(T[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m257850439F8265C4EA32B5D0F74243E80A8AEE0C_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ___array0; int32_t L_2 = ___index1; NullCheck((RuntimeObject*)L_0); InterfaceActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Object>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_0, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1, (int32_t)L_2); return; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m0CE931B041CCAD14563EF1808A3182A88EF2B812_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IndexOf(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_IndexOf_mF929EFA5DE6DF61B265560697794F889C81A6AF2_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); RuntimeObject * L_1 = ___value0; NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<System.Object>::IndexOf(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (RuntimeObject *)L_1); return (int32_t)L_2; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mC88B2CD1D342FDF3B26FC6095AAAB13DA0D4A6B3_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { return (bool)1; } } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3762DBC45EB750898E681279218BC855829A6DB3_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (RuntimeObject *)L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m149EDF4B4DB4928C6E8428136204F89E7496EACF_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2225B6AD256B3FAE1E1081DE8E01CFE5AF0A9414_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2FFA76CA7E0FCD9FEAC7FB3EBBC701F74CC87DF5_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1ED09233B5A31E2938BB2525A9296D2C57327D8A_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_mEB2E03D65A5EE2D541DFBFE8035540B29F7F8EB5_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_mC14724FBDDF76FB15528F0B75009B652E760D528_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_mCD18249AD9D761049EE55D0636032982C1C9F243_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject*)L_1; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_mB67BFDF2B527A8CEDB4C2865B0E8ACC240C06112_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5((int32_t)3, /*hidden argument*/NULL); } IL_0009: { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2; L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)7, /*hidden argument*/NULL); } IL_0018: { RuntimeArray * L_3 = ___array0; NullCheck((RuntimeArray *)L_3); int32_t L_4; L_4 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_3, (int32_t)0, /*hidden argument*/NULL); if (!L_4) { goto IL_0027; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)6, /*hidden argument*/NULL); } IL_0027: { int32_t L_5 = ___index1; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0033; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11((int32_t)((int32_t)17), (int32_t)4, /*hidden argument*/NULL); } IL_0033: { RuntimeArray * L_6 = ___array0; NullCheck((RuntimeArray *)L_6); int32_t L_7; L_7 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_6, /*hidden argument*/NULL); int32_t L_8 = ___index1; NullCheck((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this); int32_t L_9; L_9 = (( int32_t (*) (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9))) { goto IL_0049; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)5, /*hidden argument*/NULL); } IL_0049: { RuntimeArray * L_10 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = V_0; if (!L_11) { goto IL_0061; } } { RuntimeObject* L_12 = (RuntimeObject*)__this->get_list_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = V_0; int32_t L_14 = ___index1; NullCheck((RuntimeObject*)L_12); InterfaceActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Object>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_12, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_13, (int32_t)L_14); return; } IL_0061: { RuntimeArray * L_15 = ___array0; NullCheck((RuntimeObject *)L_15); Type_t * L_16; L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_15, /*hidden argument*/NULL); NullCheck((Type_t *)L_16); Type_t * L_17; L_17 = VirtFuncInvoker0< Type_t * >::Invoke(91 /* System.Type System.Type::GetElementType() */, (Type_t *)L_16); V_1 = (Type_t *)L_17; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19; L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_18, /*hidden argument*/NULL); V_2 = (Type_t *)L_19; Type_t * L_20 = V_1; Type_t * L_21 = V_2; NullCheck((Type_t *)L_20); bool L_22; L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_20, (Type_t *)L_21); if (L_22) { goto IL_0091; } } { Type_t * L_23 = V_2; Type_t * L_24 = V_1; NullCheck((Type_t *)L_23); bool L_25; L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_23, (Type_t *)L_24); if (L_25) { goto IL_0091; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_0091: { RuntimeArray * L_26 = ___array0; V_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_3; if (L_27) { goto IL_00a2; } } { ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); } IL_00a2: { RuntimeObject* L_28 = (RuntimeObject*)__this->get_list_0(); NullCheck((RuntimeObject*)L_28); int32_t L_29; L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (RuntimeObject*)L_28); V_4 = (int32_t)L_29; } IL_00af: try { // begin try (depth: 1) { V_5 = (int32_t)0; goto IL_00d4; } IL_00b4: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = V_3; int32_t L_31 = ___index1; int32_t L_32 = (int32_t)L_31; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); RuntimeObject* L_33 = (RuntimeObject*)__this->get_list_0(); int32_t L_34 = V_5; NullCheck((RuntimeObject*)L_33); RuntimeObject * L_35; L_35 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_33, (int32_t)L_34); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_35); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (RuntimeObject *)L_35); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00d4: { int32_t L_37 = V_5; int32_t L_38 = V_4; if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_00b4; } } IL_00da: { goto IL_00e6; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00dc; } throw e; } CATCH_00dc: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A((int32_t)((int32_t)18), /*hidden argument*/NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00e6; } // end catch (depth: 1) IL_00e6: { return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m7573E99B7118813CA97795A165CC0EB01B7A86F0_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyCollection_1_System_Collections_IList_get_Item_mDDEB20B53AA922998D9018C247C472D3937DF38F_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_list_0(); int32_t L_1 = ___index0; NullCheck((RuntimeObject*)L_0); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (RuntimeObject*)L_0, (int32_t)L_1); return (RuntimeObject *)L_2; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_set_Item_m6D55D340A6B38B289D590605A7363C933B32C1E3_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_Add_mBE1B08C4EEC8A211909AB7F95B44A17097396ED7_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Clear_mC1FF0192037C29BAFB58B2811D78E30559D88847_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IsCompatibleObject(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_IsCompatibleObject_m78A3E1647C2ED83B76F6EA30E4AB61FFCF2AD3A7_gshared (RuntimeObject * ___value0, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; return (bool)((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_System_Collections_IList_Contains_mB46A345349EE20AE5A34205F05FB150183439B10_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this); bool L_3; L_3 = (( bool (*) (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (bool)L_3; } IL_0015: { return (bool)0; } } // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_System_Collections_IList_IndexOf_m00721ACCB402BE1BFEC4A332292719ADC053B4F4_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___value0; NullCheck((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this); int32_t L_3; L_3 = (( int32_t (*) (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return (int32_t)L_3; } IL_0015: { return (int32_t)(-1); } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Insert_m8FFB7B74031610605DAB6E0B6A03E99DD48C920D_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_Remove_m5FCF844190884920DA8B891DD4C05A023E847FF6_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_mBE5AAD6D030712DB038D8515F166CB63C289F5B1_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, int32_t ___index0, const RuntimeMethod* method) { { ThrowHelper_ThrowNotSupportedException_m8627239FD340A8B1A832B66169EA2CABAC601A2E((int32_t)((int32_t)28), /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.IO.SearchResultHandler`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SearchResultHandler_1__ctor_m1287C307D907806F0E375E508CF4313F47C63340_gshared (SearchResultHandler_1_tB819A963B62A843474E27DDAFE239812CF70839D * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__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.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shared_1__ctor_m7749556A37187DE384D2541510890ACC6C312EEB_gshared (Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B * __this, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ___value0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_0 = ___value0; __this->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.Threading.Tasks.Shared`1<System.Object>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shared_1__ctor_m7DC8FFEC854851906F8DB91B026481A5C4E4B930_gshared (Shared_1_t9CD470164021C8F0989F8E21A955B5B9AE6CA05C * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___value0; __this->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 #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.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator__ctor_m3B635E93CE5584876E9A68C791563280D5A947EE_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ___sortedList0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = ___sortedList0; __this->set__sortedList_0(L_0); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_1 = ___sortedList0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set__version_2(L_2); return; } } // System.Void System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator_Dispose_mA8CDA2C6028BAF238E4452B9C81180A05C5C7898_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, const RuntimeMethod* method) { { __this->set__index_1(0); RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *)); return; } } // System.Boolean System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedListValueEnumerator_MoveNext_mF4DAF8DF0562167B7BAB25CF8D3A56F921622B68_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__version_2(); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_1 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_MoveNext_mF4DAF8DF0562167B7BAB25CF8D3A56F921622B68_RuntimeMethod_var))); } IL_001e: { int32_t L_4 = (int32_t)__this->get__index_1(); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_5 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_5); int32_t L_6; L_6 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_005d; } } { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_7 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck(L_7); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_7->get_values_1(); int32_t L_9 = (int32_t)__this->get__index_1(); NullCheck(L_8); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set__currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get__index_1(); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_005d: { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_13 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_13); int32_t L_14; L_14 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); RuntimeObject ** L_15 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_15, sizeof(RuntimeObject *)); return (bool)0; } } // TValue System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListValueEnumerator_get_Current_m1F533F563F4444C2B7ADA513CBADEDAFEC162570_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get__currentValue_3(); return (RuntimeObject *)L_0; } } // System.Object System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_mAFAE4985082D0A6CE53DF3A1B3F76D65AE9F1A13_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get__index_1(); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_2 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_2); int32_t L_3; L_3 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_mAFAE4985082D0A6CE53DF3A1B3F76D65AE9F1A13_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get__currentValue_3(); return (RuntimeObject *)L_5; } } // System.Void System.Collections.Generic.SortedList`2/SortedListValueEnumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m4D4A9DA8F291F03B909D7497C921A04A1DB0C39A_gshared (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__version_2(); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_1 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__sortedList_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m4D4A9DA8F291F03B909D7497C921A04A1DB0C39A_RuntimeMethod_var))); } IL_001e: { __this->set__index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator__ctor_m4D72E8B2FAA46A30DF0C5EA195B1AD18A1163267_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ___sortedList0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = ___sortedList0; __this->set__sortedList_0(L_0); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_1 = ___sortedList0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set__version_2(L_2); return; } } // System.Void System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator_Dispose_m80EB9DC2A198C0032C7200D8699440D47B2D16FE_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, const RuntimeMethod* method) { { __this->set__index_1(0); RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *)); return; } } // System.Boolean System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedListValueEnumerator_MoveNext_mFADC3C01EC61B24284329FA215B49E563E91E842_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__version_2(); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_1 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_MoveNext_mFADC3C01EC61B24284329FA215B49E563E91E842_RuntimeMethod_var))); } IL_001e: { int32_t L_4 = (int32_t)__this->get__index_1(); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_5 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_5); int32_t L_6; L_6 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_005d; } } { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_7 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck(L_7); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_7->get_values_1(); int32_t L_9 = (int32_t)__this->get__index_1(); NullCheck(L_8); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set__currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get__index_1(); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_005d: { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_13 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_13); int32_t L_14; L_14 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); RuntimeObject ** L_15 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_15, sizeof(RuntimeObject *)); return (bool)0; } } // TValue System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListValueEnumerator_get_Current_m3E3D3B71D779A70BD49073D32F6E09B87139F9FF_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get__currentValue_3(); return (RuntimeObject *)L_0; } } // System.Object System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_m96EF9904BA7E969AEF948B90C9677DFCCE81503B_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get__index_1(); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_2 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_2); int32_t L_3; L_3 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_System_Collections_IEnumerator_get_Current_m96EF9904BA7E969AEF948B90C9677DFCCE81503B_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get__currentValue_3(); return (RuntimeObject *)L_5; } } // System.Void System.Collections.Generic.SortedList`2/SortedListValueEnumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m236099C85D8E64CC552E9292E3EC4ECB121FAA47_gshared (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__version_2(); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_1 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__sortedList_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedListValueEnumerator_System_Collections_IEnumerator_Reset_m236099C85D8E64CC552E9292E3EC4ECB121FAA47_RuntimeMethod_var))); } IL_001e: { __this->set__index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2__ctor_mC402FD43F0810F120888D10CDD5E8A6FC78FEAE7_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0; L_0 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_keys_0(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1; L_1 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set_values_1(L_1); __this->set__size_2(0); Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_2; L_2 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); __this->set_comparer_4(L_2); return; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2__ctor_m438F01C131C405354E7A7A392F343B2A75D25723_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); RuntimeObject* L_0 = ___comparer0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___comparer0; __this->set_comparer_4(L_1); } IL_0010: { return; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Add_m9BC195D158E8159756C95C2D13CC3509C90C2A09_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_Add_m9BC195D158E8159756C95C2D13CC3509C90C2A09_RuntimeMethod_var))); } IL_0013: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); RuntimeObject * L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)0, (int32_t)L_3, (RuntimeObject *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_004c; } } { RuntimeObject * L_8 = ___key0; String_t* L_9; L_9 = SR_Format_m9FB0DE0E3CE685F3CC51CC7558F42F10931B8645((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46A01A440913AE3A82489D220ACF899D570C29A7)), (RuntimeObject *)L_8, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_10, (String_t*)L_9, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_Add_m9BC195D158E8159756C95C2D13CC3509C90C2A09_RuntimeMethod_var))); } IL_004c: { int32_t L_11 = V_0; RuntimeObject * L_12 = ___key0; RuntimeObject * L_13 = ___value1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)((~L_11)), (RuntimeObject *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mDFB7472E766A3AB8C8EA8796E7FE51613492F116_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0; L_0 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); RuntimeObject * L_1; L_1 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m0882B207A70A35089657F31DC751C5168827BBFF_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0; L_0 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0033; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_3; L_3 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3); bool L_9; L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3, (RuntimeObject *)L_7, (RuntimeObject *)L_8); if (!L_9) { goto IL_0033; } } { return (bool)1; } IL_0033: { return (bool)0; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m4DFCF948300DF678FA1DD6D2C06471208B92285A_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0; L_0 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_003a; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_3; L_3 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3); bool L_9; L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3, (RuntimeObject *)L_7, (RuntimeObject *)L_8); if (!L_9) { goto IL_003a; } } { int32_t L_10 = V_0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); return (bool)1; } IL_003a: { return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::set_Capacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_set_Capacity_m26FA5958A11E7EF60913AD382D4903ACB2F17F41_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, int32_t ___value0, const RuntimeMethod* method) { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; { int32_t L_0 = ___value0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); NullCheck(L_1); if ((((int32_t)L_0) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_0095; } } { int32_t L_2 = ___value0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002d; } } { int32_t L_4 = ___value0; int32_t L_5 = L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_5); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), (RuntimeObject *)L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D1773CA7AF4AE36C001FBC3E1E5DA5574C041FA)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_set_Capacity_m26FA5958A11E7EF60913AD382D4903ACB2F17F41_RuntimeMethod_var))); } IL_002d: { int32_t L_8 = ___value0; if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_007f; } } { int32_t L_9 = ___value0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16), (uint32_t)L_9); V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_10; int32_t L_11 = ___value0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), (uint32_t)L_11); V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_12; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_13) <= ((int32_t)0))) { goto IL_0070; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = V_0; int32_t L_16 = (int32_t)__this->get__size_2(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_14, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_15, (int32_t)0, (int32_t)L_16, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = V_1; int32_t L_19 = (int32_t)__this->get__size_2(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_17, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_18, (int32_t)0, (int32_t)L_19, /*hidden argument*/NULL); } IL_0070: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = V_0; __this->set_keys_0(L_20); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = V_1; __this->set_values_1(L_21); return; } IL_007f: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22; L_22 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_keys_0(L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23; L_23 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set_values_1(L_23); } IL_0095: { return; } } // System.Int32 System.Collections.Generic.SortedList`2<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_get_Count_mC511F994A76D828FF51D041619E167515D2B9D55_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } // System.Collections.Generic.IList`1<TValue> System.Collections.Generic.SortedList`2<System.Object,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_get_Values_mA1A5D7F4F5CD0824312D210B83CF61DEF4E8A7F5_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * L_0; L_0 = (( ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return (RuntimeObject*)L_0; } } // System.Collections.Generic.SortedList`2/ValueList<TKey,TValue> System.Collections.Generic.SortedList`2<System.Object,System.Object>::GetValueListHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * SortedList_2_GetValueListHelper_m25EBA9A6283BD5FE7C51CC86CFBD2C39D2C2E7D4_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * L_0 = (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 *)__this->get_valueList_6(); if (L_0) { goto IL_0014; } } { ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * L_1 = (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19)); (( void (*) (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 *, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)(L_1, (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); __this->set_valueList_6(L_1); } IL_0014: { ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * L_2 = (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 *)__this->get_valueList_6(); return (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 *)L_2; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mE0425EE4365526B1DEF6B9EECAE3EE0492C12F78_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Clear_mF0E0117A9DFD1A8F53A827E91D06094C25C805F7_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); bool L_1; L_1 = true; if (!L_1) { goto IL_0027; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (int32_t)L_3, /*hidden argument*/NULL); } IL_0027: { bool L_4; L_4 = true; if (!L_4) { goto IL_0040; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_6 = (int32_t)__this->get__size_2(); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (int32_t)L_6, /*hidden argument*/NULL); } IL_0040: { __this->set__size_2(0); return; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_IDictionary_Contains_m752AF2A533C4AE7A1C008F0FBD8A41D566FB101D_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); bool L_3; L_3 = (( bool (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return (bool)L_3; } IL_0015: { return (bool)0; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_ContainsKey_m366461E4C7203072D876F3318A65921EC2B34F1C_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_ContainsValue_m5468553C9568E33FA9AFC710872140D117D3165F_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m86B735D70DFD1C1F1980E8DD12FBB712B63F7D16_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { int32_t V_0 = 0; KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 V_1; memset((&V_1), 0, sizeof(V_1)); { KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m86B735D70DFD1C1F1980E8DD12FBB712B63F7D16_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___arrayIndex1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___arrayIndex1; KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___arrayIndex1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), (RuntimeObject *)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m86B735D70DFD1C1F1980E8DD12FBB712B63F7D16_RuntimeMethod_var))); } IL_002e: { KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___arrayIndex1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_11; L_11 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_12, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m86B735D70DFD1C1F1980E8DD12FBB712B63F7D16_RuntimeMethod_var))); } IL_0046: { V_0 = (int32_t)0; goto IL_0077; } IL_004a: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_18 = V_0; NullCheck(L_17); int32_t L_19 = L_18; RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(&V_1), (RuntimeObject *)L_16, (RuntimeObject *)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_21 = ___array0; int32_t L_22 = ___arrayIndex1; int32_t L_23 = V_0; KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_24 = V_1; NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23))), (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_24); int32_t L_25 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0077: { int32_t L_26 = V_0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_27; L_27 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_004a; } } { return; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* V_0 = NULL; int32_t V_1 = 0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_2 = NULL; int32_t V_3 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3; L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6; L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11; L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_14, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17; L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_19; L_19 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*)((KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29))); KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_22 = V_0; if (!L_22) { goto IL_00c0; } } { V_1 = (int32_t)0; goto IL_00b6; } IL_008c: { KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_23 = V_0; int32_t L_24 = V_1; int32_t L_25 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_26 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_27 = V_1; NullCheck(L_26); int32_t L_28 = L_27; RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_31 = V_1; NullCheck(L_30); int32_t L_32 = L_31; RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_34; memset((&L_34), 0, sizeof(L_34)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_34), (RuntimeObject *)L_29, (RuntimeObject *)L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25))), (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_34); int32_t L_35 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_00b6: { int32_t L_36 = V_1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_37; L_37 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_36) < ((int32_t)L_37))) { goto IL_008c; } } { return; } IL_00c0: { RuntimeArray * L_38 = ___array0; V_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_38, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_39 = V_2; if (L_39) { goto IL_00da; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_40, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } IL_00da: { } IL_00db: try { // begin try (depth: 1) { V_3 = (int32_t)0; goto IL_010a; } IL_00df: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_41 = V_2; int32_t L_42 = V_3; int32_t L_43 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_44 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_45 = V_3; NullCheck(L_44); int32_t L_46 = L_45; RuntimeObject * L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_48 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = L_49; RuntimeObject * L_51 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_52; memset((&L_52), 0, sizeof(L_52)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_52), (RuntimeObject *)L_47, (RuntimeObject *)L_51, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_53 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_52; RuntimeObject * L_54 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), &L_53); NullCheck(L_41); ArrayElementTypeCheck (L_41, L_54); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_43))), (RuntimeObject *)L_54); int32_t L_55 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)); } IL_010a: { int32_t L_56 = V_3; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_57; L_57 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_56) < ((int32_t)L_57))) { goto IL_00df; } } IL_0113: { goto IL_0126; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0115; } throw e; } CATCH_0115: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_58 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_58, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mEF2558D436E4E2A1321A00862A4A1C8B87D6A2FC_RuntimeMethod_var))); } // end catch (depth: 1) IL_0126: { return; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_EnsureCapacity_m2A6BF44B16B4B1FF84E58213DBD267E33C4B9039_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B3_0 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); NullCheck(L_0); if (!(((RuntimeArray*)L_0)->max_length)) { goto IL_0015; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); NullCheck(L_1); G_B3_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))), (int32_t)2)); goto IL_0016; } IL_0015: { G_B3_0 = 4; } IL_0016: { V_0 = (int32_t)G_B3_0; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0025; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0025: { int32_t L_3 = V_0; int32_t L_4 = ___min0; if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_002b; } } { int32_t L_5 = ___min0; V_0 = (int32_t)L_5; } IL_002b: { int32_t L_6 = V_0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // TValue System.Collections.Generic.SortedList`2<System.Object,System.Object>::GetByIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_2_GetByIndex_m9B1255E856F90023DFFDF788900D8CC850A825FA_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0023; } } IL_000d: { int32_t L_3 = ___index0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_4); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_GetByIndex_m9B1255E856F90023DFFDF788900D8CC850A825FA_RuntimeMethod_var))); } IL_0023: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_8 = ___index0; NullCheck(L_7); int32_t L_9 = L_8; RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return (RuntimeObject *)L_10; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m23B8815C6EE04C6EDEF9B1FAFC8B5BE3EEB78D4B_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707((&L_0), (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_1 = (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_IDictionary_GetEnumerator_mDC64CF9CD9098645DEAD2DBC5AE15F269C42B7AC_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707((&L_0), (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_1 = (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_IEnumerable_GetEnumerator_m2F7BAD811EC2FDFD12965D4616BB6FF59629AEE1_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, const RuntimeMethod* method) { { Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m9D79CB3CDC544EBFCAE873797273D831C7B88707((&L_0), (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 L_1 = (Enumerator_tB86E9EE2236DCDA4BD679CBACCE1425F37D53D66 )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_set_Item_m3EA2F47D25047DC10881EC20B3914B12EAF1E3AB_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_set_Item_m3EA2F47D25047DC10881EC20B3914B12EAF1E3AB_RuntimeMethod_var))); } IL_0013: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); RuntimeObject * L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)0, (int32_t)L_3, (RuntimeObject *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_004d; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_9 = V_0; RuntimeObject * L_10 = ___value1; NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (RuntimeObject *)L_10); int32_t L_11 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); return; } IL_004d: { int32_t L_12 = V_0; RuntimeObject * L_13 = ___key0; RuntimeObject * L_14 = ___value1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)((~L_12)), (RuntimeObject *)L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return; } } // System.Object System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_2_System_Collections_IDictionary_get_Item_m2A838595829B3DEDDEBF8E19E50D06B6719E0EF7_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (!L_1) { goto IL_002b; } } { RuntimeObject * L_2 = ___key0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_3; L_3 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_002b; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return (RuntimeObject *)L_8; } IL_002b: { return (RuntimeObject *)NULL; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_IDictionary_set_Item_m1110A190602850E778779D1BAE20FB78FA0668E5_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (L_1) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m1110A190602850E778779D1BAE20FB78FA0668E5_RuntimeMethod_var))); } IL_0013: { RuntimeObject * L_3 = ___value1; if (L_3) { goto IL_0031; } } { il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_1; if (!L_4) { goto IL_0031; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_5 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m1110A190602850E778779D1BAE20FB78FA0668E5_RuntimeMethod_var))); } IL_0031: { RuntimeObject * L_6 = ___key0; V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))); } IL_0038: try { // begin try (depth: 1) RuntimeObject * L_7 = V_0; RuntimeObject * L_8 = ___value1; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_7, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0068; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0047; } throw e; } CATCH_0047: { // begin catch(System.InvalidCastException) RuntimeObject * L_9 = ___value1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var))); Type_t * L_11; L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = SR_Format_m60020D8FC246DAA800C991565515D51118F2B16A((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF0569A2D4DF78C8C40FBF38FD14928474637FF26)), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_13, (String_t*)L_12, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m1110A190602850E778779D1BAE20FB78FA0668E5_RuntimeMethod_var))); } // end catch (depth: 1) IL_0068: { return; } } // System.Int32 System.Collections.Generic.SortedList`2<System.Object,System.Object>::IndexOfKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_IndexOfKey_mAAA0A32FAB33613ABF78B3EF0D11C9F46300D5F3_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_IndexOfKey_mAAA0A32FAB33613ABF78B3EF0D11C9F46300D5F3_RuntimeMethod_var))); } IL_0013: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); RuntimeObject * L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)0, (int32_t)L_3, (RuntimeObject *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_0033; } } { return (int32_t)(-1); } IL_0033: { int32_t L_8 = V_0; return (int32_t)L_8; } } // System.Int32 System.Collections.Generic.SortedList`2<System.Object,System.Object>::IndexOfValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_IndexOfValue_mA6DADA3A45FB88668990D15E4DB373265F1F973A_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); RuntimeObject * L_1 = ___value0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3; L_3 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (RuntimeObject *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return (int32_t)L_3; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::Insert(System.Int32,TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Insert_mF7270FC585E31D8367F38E93B0BF8FD554FF324C_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, int32_t ___index0, RuntimeObject * ___key1, RuntimeObject * ___value2, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); } IL_001e: { int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0061; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_6 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_12 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_11, (int32_t)L_12, (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0061: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_18 = ___index0; RuntimeObject * L_19 = ___key1; NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (RuntimeObject *)L_19); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_21 = ___index0; RuntimeObject * L_22 = ___value2; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_22); int32_t L_23 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); int32_t L_24 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_TryGetValue_m2B317D99B25BB316B6BC80D4C5E107CFFC964D10_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0020; } } { RuntimeObject ** L_3 = ___value1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); *(RuntimeObject **)L_3 = L_7; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)L_7); return (bool)1; } IL_0020: { RuntimeObject ** L_8 = ___value1; il2cpp_codegen_initobj(L_8, sizeof(RuntimeObject *)); return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<System.Object,System.Object>::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_RemoveAt_m432DE9487CAC6F6D1876A0D751CE335E287AC695_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, int32_t ___index0, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0023; } } IL_000d: { int32_t L_3 = ___index0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_4); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_RemoveAt_m432DE9487CAC6F6D1876A0D751CE335E287AC695_RuntimeMethod_var))); } IL_0023: { int32_t L_7 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0074; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_11 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_13 = ___index0; int32_t L_14 = (int32_t)__this->get__size_2(); int32_t L_15 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_17 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_19 = ___index0; int32_t L_20 = (int32_t)__this->get__size_2(); int32_t L_21 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_16, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_18, (int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL); } IL_0074: { bool L_22; L_22 = true; if (!L_22) { goto IL_0095; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_0(); int32_t L_24 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_25 = V_0; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (RuntimeObject *)L_25); } IL_0095: { bool L_26; L_26 = true; if (!L_26) { goto IL_00b6; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_28 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_29 = V_1; NullCheck(L_27); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (RuntimeObject *)L_29); } IL_00b6: { int32_t L_30 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_Remove_m1D476BE255390E8F06F3D3B2C3813B065D853D4B_gshared (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0013; } } { int32_t L_3 = V_0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this); (( void (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); } IL_0013: { int32_t L_4 = V_0; return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.SortedList`2<System.Object,System.Object>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_IsCompatibleKey_m8B212C2AF14D829519F1B3BDC05F91012446B857_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_IsCompatibleKey_m8B212C2AF14D829519F1B3BDC05F91012446B857_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 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.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2__ctor_m030909388EE3DB17C3840E192F01E65ADF3BCC7A_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_0; L_0 = (( TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_keys_0(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1; L_1 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set_values_1(L_1); __this->set__size_2(0); Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E * L_2; L_2 = (( Comparer_1_t6106101E94E2C8E5B185968B9ECCFC4296EABF9E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); __this->set_comparer_4(L_2); return; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(System.Collections.Generic.IComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2__ctor_m83E5DB3996174D3B58CF47A35DDE014EFF275740_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); RuntimeObject* L_0 = ___comparer0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___comparer0; __this->set_comparer_4(L_1); } IL_0010: { return; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Add_mDD879D505E17A1A3932FD4381C60758783891F35_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { goto IL_0013; } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_Add_mDD879D505E17A1A3932FD4381C60758783891F35_RuntimeMethod_var))); } IL_0013: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_2 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*, int32_t, int32_t, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)L_2, (int32_t)0, (int32_t)L_3, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_004c; } } { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_8 = ___key0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_9 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), &L_9); String_t* L_11; L_11 = SR_Format_m9FB0DE0E3CE685F3CC51CC7558F42F10931B8645((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46A01A440913AE3A82489D220ACF899D570C29A7)), (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_12, (String_t*)L_11, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_Add_mDD879D505E17A1A3932FD4381C60758783891F35_RuntimeMethod_var))); } IL_004c: { int32_t L_13 = V_0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14 = ___key0; RuntimeObject * L_15 = ___value1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)((~L_13)), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mAA60C6E971D1E7ACE45EAF43A36AF9BEA6C38FD2_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D ___keyValuePair0, const RuntimeMethod* method) { { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0; L_0 = KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); RuntimeObject * L_1; L_1 = KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); return; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m8FD971368A3A17889F1A3A03BF2DB26B2B3C013C_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0; L_0 = KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0033; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_3; L_3 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3); bool L_9; L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3, (RuntimeObject *)L_7, (RuntimeObject *)L_8); if (!L_9) { goto IL_0033; } } { return (bool)1; } IL_0033: { return (bool)0; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mCA5C2B462580E637BCAD186BE62BF6121DB88B94_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0; L_0 = KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_003a; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_3; L_3 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3); bool L_9; L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_3, (RuntimeObject *)L_7, (RuntimeObject *)L_8); if (!L_9) { goto IL_003a; } } { int32_t L_10 = V_0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); return (bool)1; } IL_003a: { return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::set_Capacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_set_Capacity_m7A0ED577BC29CC13A0AEE80D638680CB6AE733F8_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, int32_t ___value0, const RuntimeMethod* method) { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; { int32_t L_0 = ___value0; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_1 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); NullCheck(L_1); if ((((int32_t)L_0) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_0095; } } { int32_t L_2 = ___value0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002d; } } { int32_t L_4 = ___value0; int32_t L_5 = L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_5); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), (RuntimeObject *)L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D1773CA7AF4AE36C001FBC3E1E5DA5574C041FA)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_set_Capacity_m7A0ED577BC29CC13A0AEE80D638680CB6AE733F8_RuntimeMethod_var))); } IL_002d: { int32_t L_8 = ___value0; if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_007f; } } { int32_t L_9 = ___value0; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_10 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)(TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16), (uint32_t)L_9); V_0 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)L_10; int32_t L_11 = ___value0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), (uint32_t)L_11); V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_12; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_13) <= ((int32_t)0))) { goto IL_0070; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_14 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_15 = V_0; int32_t L_16 = (int32_t)__this->get__size_2(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_14, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_15, (int32_t)0, (int32_t)L_16, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = V_1; int32_t L_19 = (int32_t)__this->get__size_2(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_17, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_18, (int32_t)0, (int32_t)L_19, /*hidden argument*/NULL); } IL_0070: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_20 = V_0; __this->set_keys_0(L_20); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = V_1; __this->set_values_1(L_21); return; } IL_007f: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_22; L_22 = (( TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); __this->set_keys_0(L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23; L_23 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set_values_1(L_23); } IL_0095: { return; } } // System.Int32 System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_get_Count_m160E9865016C75FF5902CF5CC214711355B63162_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } // System.Collections.Generic.IList`1<TValue> System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_get_Values_m4467BD7019B3943EEC273199DEE41AC963DC5C5A_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * L_0; L_0 = (( ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return (RuntimeObject*)L_0; } } // System.Collections.Generic.SortedList`2/ValueList<TKey,TValue> System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::GetValueListHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * SortedList_2_GetValueListHelper_mF3B01C72A076A2A62EB58AFAFEFD5FBE6AAEAA3E_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * L_0 = (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A *)__this->get_valueList_6(); if (L_0) { goto IL_0014; } } { ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * L_1 = (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19)); (( void (*) (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A *, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)(L_1, (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); __this->set_valueList_6(L_1); } IL_0014: { ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * L_2 = (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A *)__this->get_valueList_6(); return (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A *)L_2; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m606B99EF69EF07D00A5C2A7FB05E3A876442B90F_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Clear_mF3CC1B67B9E2B0DCAB7116F98057DFD287A120A1_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); bool L_1; L_1 = false; if (!L_1) { goto IL_0027; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_2 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (int32_t)L_3, /*hidden argument*/NULL); } IL_0027: { bool L_4; L_4 = true; if (!L_4) { goto IL_0040; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_6 = (int32_t)__this->get__size_2(); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (int32_t)L_6, /*hidden argument*/NULL); } IL_0040: { __this->set__size_2(0); return; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_System_Collections_IDictionary_Contains_m002E088C7BE88AB16DA8BBF5CB6E6827B3F01516_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); bool L_3; L_3 = (( bool (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )((*(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return (bool)L_3; } IL_0015: { return (bool)0; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_ContainsKey_m351D7BF03A74649B4EFCC872989937EE62C6BEBB_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, const RuntimeMethod* method) { { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___key0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_ContainsValue_m9AACC4F6B2FD2EF3792AEEFF6D20DEFAC450EF5A_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m011DF590F1158921AD698A26D329AA8230098E49_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { int32_t V_0 = 0; KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D V_1; memset((&V_1), 0, sizeof(V_1)); { KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m011DF590F1158921AD698A26D329AA8230098E49_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___arrayIndex1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___arrayIndex1; KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___arrayIndex1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), (RuntimeObject *)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m011DF590F1158921AD698A26D329AA8230098E49_RuntimeMethod_var))); } IL_002e: { KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___arrayIndex1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_11; L_11 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_12, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m011DF590F1158921AD698A26D329AA8230098E49_RuntimeMethod_var))); } IL_0046: { V_0 = (int32_t)0; goto IL_0077; } IL_004a: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_13 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_18 = V_0; NullCheck(L_17); int32_t L_19 = L_18; RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&V_1), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_16, (RuntimeObject *)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_21 = ___array0; int32_t L_22 = ___arrayIndex1; int32_t L_23 = V_0; KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_24 = V_1; NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23))), (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_24); int32_t L_25 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0077: { int32_t L_26 = V_0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_27; L_27 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_004a; } } { return; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* V_0 = NULL; int32_t V_1 = 0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_2 = NULL; int32_t V_3 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3; L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6; L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11; L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_14, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17; L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_19; L_19 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357*)((KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29))); KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_22 = V_0; if (!L_22) { goto IL_00c0; } } { V_1 = (int32_t)0; goto IL_00b6; } IL_008c: { KeyValuePair_2U5BU5D_t1BE7C68DDC5870546D8907B3F7E4E177F4892357* L_23 = V_0; int32_t L_24 = V_1; int32_t L_25 = ___index1; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_26 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_27 = V_1; NullCheck(L_26); int32_t L_28 = L_27; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_31 = V_1; NullCheck(L_30); int32_t L_32 = L_31; RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_34; memset((&L_34), 0, sizeof(L_34)); KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8((&L_34), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_29, (RuntimeObject *)L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25))), (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_34); int32_t L_35 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_00b6: { int32_t L_36 = V_1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_37; L_37 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_36) < ((int32_t)L_37))) { goto IL_008c; } } { return; } IL_00c0: { RuntimeArray * L_38 = ___array0; V_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_38, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_39 = V_2; if (L_39) { goto IL_00da; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_40, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } IL_00da: { } IL_00db: try { // begin try (depth: 1) { V_3 = (int32_t)0; goto IL_010a; } IL_00df: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_41 = V_2; int32_t L_42 = V_3; int32_t L_43 = ___index1; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_44 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_45 = V_3; NullCheck(L_44); int32_t L_46 = L_45; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_48 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = L_49; RuntimeObject * L_51 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50)); KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_52; memset((&L_52), 0, sizeof(L_52)); KeyValuePair_2__ctor_m7F873AD19F531EC737BA7670608F6CD23771E7F8((&L_52), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_47, (RuntimeObject *)L_51, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_53 = (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_52; RuntimeObject * L_54 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), &L_53); NullCheck(L_41); ArrayElementTypeCheck (L_41, L_54); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_43))), (RuntimeObject *)L_54); int32_t L_55 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)); } IL_010a: { int32_t L_56 = V_3; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_57; L_57 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); if ((((int32_t)L_56) < ((int32_t)L_57))) { goto IL_00df; } } IL_0113: { goto IL_0126; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0115; } throw e; } CATCH_0115: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_58 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_58, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_ICollection_CopyTo_mD487EF6AD9D9492DDE2307351103BA19149BED5D_RuntimeMethod_var))); } // end catch (depth: 1) IL_0126: { return; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_EnsureCapacity_m9688B13D341DF849FA6252D08A0CA754DE65D811_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B3_0 = 0; { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_0 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); NullCheck(L_0); if (!(((RuntimeArray*)L_0)->max_length)) { goto IL_0015; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_1 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); NullCheck(L_1); G_B3_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))), (int32_t)2)); goto IL_0016; } IL_0015: { G_B3_0 = 4; } IL_0016: { V_0 = (int32_t)G_B3_0; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0025; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0025: { int32_t L_3 = V_0; int32_t L_4 = ___min0; if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_002b; } } { int32_t L_5 = ___min0; V_0 = (int32_t)L_5; } IL_002b: { int32_t L_6 = V_0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // TValue System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::GetByIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_2_GetByIndex_mB0313DBD1EEC108E7A56CBD032B41935A98B9744_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0023; } } IL_000d: { int32_t L_3 = ___index0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_4); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_GetByIndex_mB0313DBD1EEC108E7A56CBD032B41935A98B9744_RuntimeMethod_var))); } IL_0023: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_8 = ___index0; NullCheck(L_7); int32_t L_9 = L_8; RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return (RuntimeObject *)L_10; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m9A06113B2D2AF6AB8B41D6C1AD321CAC777632D5_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3((&L_0), (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_1 = (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_IDictionary_GetEnumerator_m4848C6C05F2453D5D6487B55DB0449BE8CD3ED1C_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3((&L_0), (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_1 = (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_2_System_Collections_IEnumerable_GetEnumerator_mEA0E161906F3B51A6BC42DA287AD5D0138DA300D_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, const RuntimeMethod* method) { { Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mD9604EF71EF9A32062D0729C7924E8510BEC3EF3((&L_0), (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E L_1 = (Enumerator_t9740C9DD5D736553DD841DD1D28A61308E21D44E )L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_set_Item_mAB7967F9D9CA54F508B799F8F5F14A2D3654D928_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { goto IL_0013; } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_set_Item_mAB7967F9D9CA54F508B799F8F5F14A2D3654D928_RuntimeMethod_var))); } IL_0013: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_2 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*, int32_t, int32_t, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)L_2, (int32_t)0, (int32_t)L_3, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_004d; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_9 = V_0; RuntimeObject * L_10 = ___value1; NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (RuntimeObject *)L_10); int32_t L_11 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); return; } IL_004d: { int32_t L_12 = V_0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_13 = ___key0; RuntimeObject * L_14 = ___value1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)((~L_12)), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return; } } // System.Object System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_2_System_Collections_IDictionary_get_Item_mCAC64BCDE55D094291A2B4E0B959A5718230DC1F_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (!L_1) { goto IL_002b; } } { RuntimeObject * L_2 = ___key0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_3; L_3 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )((*(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_002b; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return (RuntimeObject *)L_8; } IL_002b: { return (RuntimeObject *)NULL; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_System_Collections_IDictionary_set_Item_m4CC10DBA13A1786799154FF276C74A2D3E32E7E7_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeObject * L_0 = ___key0; bool L_1; L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); if (L_1) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m4CC10DBA13A1786799154FF276C74A2D3E32E7E7_RuntimeMethod_var))); } IL_0013: { RuntimeObject * L_3 = ___value1; if (L_3) { goto IL_0031; } } { il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_1; if (!L_4) { goto IL_0031; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_5 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m4CC10DBA13A1786799154FF276C74A2D3E32E7E7_RuntimeMethod_var))); } IL_0031: { RuntimeObject * L_6 = ___key0; V_0 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )((*(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5))))); } IL_0038: try { // begin try (depth: 1) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7 = V_0; RuntimeObject * L_8 = ___value1; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0068; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0047; } throw e; } CATCH_0047: { // begin catch(System.InvalidCastException) RuntimeObject * L_9 = ___value1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var))); Type_t * L_11; L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = SR_Format_m60020D8FC246DAA800C991565515D51118F2B16A((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF0569A2D4DF78C8C40FBF38FD14928474637FF26)), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_13, (String_t*)L_12, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_System_Collections_IDictionary_set_Item_m4CC10DBA13A1786799154FF276C74A2D3E32E7E7_RuntimeMethod_var))); } // end catch (depth: 1) IL_0068: { return; } } // System.Int32 System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::IndexOfKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_IndexOfKey_mD52CCF52F87BC77A9CD8C75ED210B12A17D7CF60_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { goto IL_0013; } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_IndexOfKey_mD52CCF52F87BC77A9CD8C75ED210B12A17D7CF60_RuntimeMethod_var))); } IL_0013: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_2 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_3 = (int32_t)__this->get__size_2(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___key0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_6; L_6 = (( int32_t (*) (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*, int32_t, int32_t, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)L_2, (int32_t)0, (int32_t)L_3, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (int32_t)L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_0033; } } { return (int32_t)(-1); } IL_0033: { int32_t L_8 = V_0; return (int32_t)L_8; } } // System.Int32 System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::IndexOfValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_2_IndexOfValue_m897A22018A691BD6EEFA4AAFCBB96A77ACC1C6B1_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); RuntimeObject * L_1 = ___value0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3; L_3 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (RuntimeObject *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return (int32_t)L_3; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Insert(System.Int32,TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_Insert_m5C1A20CCC508679FBCD4B3F3AF5A122229B8BB2B_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, int32_t ___index0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key1, RuntimeObject * ___value2, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_1 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); } IL_001e: { int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0061; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_5 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_6 = ___index0; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_7 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_12 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_11, (int32_t)L_12, (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0061: { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_17 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_18 = ___index0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_19 = ___key1; NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_19); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_21 = ___index0; RuntimeObject * L_22 = ___value2; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_22); int32_t L_23 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); int32_t L_24 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_TryGetValue_mB4E4495E9674B667622221A8B9CF15BFE5167728_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___key0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0020; } } { RuntimeObject ** L_3 = ___value1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); *(RuntimeObject **)L_3 = L_7; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)L_7); return (bool)1; } IL_0020: { RuntimeObject ** L_8 = ___value1; il2cpp_codegen_initobj(L_8, sizeof(RuntimeObject *)); return (bool)0; } } // System.Void System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_2_RemoveAt_mB2AFE137DBB80D922138521966B0CEC40B2E700A_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, int32_t ___index0, const RuntimeMethod* method) { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0023; } } IL_000d: { int32_t L_3 = ___index0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_4); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (RuntimeObject *)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_RemoveAt_mB2AFE137DBB80D922138521966B0CEC40B2E700A_RuntimeMethod_var))); } IL_0023: { int32_t L_7 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0074; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_10 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_11 = ___index0; TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_12 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_13 = ___index0; int32_t L_14 = (int32_t)__this->get__size_2(); int32_t L_15 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_17 = ___index0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_19 = ___index0; int32_t L_20 = (int32_t)__this->get__size_2(); int32_t L_21 = ___index0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_16, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_18, (int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL); } IL_0074: { bool L_22; L_22 = false; if (!L_22) { goto IL_0095; } } { TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_23 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)__this->get_keys_0(); int32_t L_24 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_25 = V_0; NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_25); } IL_0095: { bool L_26; L_26 = true; if (!L_26) { goto IL_00b6; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_values_1(); int32_t L_28 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_29 = V_1; NullCheck(L_27); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (RuntimeObject *)L_29); } IL_00b6: { int32_t L_30 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_Remove_mBC0A958CFC05F4243E1EFB841FF36570B7913490_gshared (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___key0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); int32_t L_1; L_1 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0013; } } { int32_t L_3 = V_0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this); (( void (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); } IL_0013: { int32_t L_4 = V_0; return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.SortedList`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedList_2_IsCompatibleKey_mC8E077F01BD5706B6B421211E43936A5C8F0FCD9_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SortedList_2_IsCompatibleKey_mC8E077F01BD5706B6B421211E43936A5C8F0FCD9_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 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.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparseArray_1__ctor_m73CC33002A0329EBD6BD0836220C3A637C40178A_gshared (SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259 * __this, int32_t ___initialSize0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___initialSize0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (uint32_t)L_0); il2cpp_codegen_memory_barrier(); __this->set_m_array_0(L_1); return; } } // T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* SparseArray_1_get_Current_m25F9E3ACF8D3CA2611F95C633A4C6AEB3B0B6D73_gshared (SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; } } // System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparseArray_1_Add_m6F50AAC239FDD8AAE9EBFC2B3F3F2016629DEC5D_gshared (SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259 * __this, RuntimeObject * ___e0, const RuntimeMethod* method) { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; bool V_2 = false; int32_t V_3 = 0; int32_t V_4 = 0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_5 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; IL_0000: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = V_0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1; V_2 = (bool)0; } IL_000d: try { // begin try (depth: 1) { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = V_1; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4((RuntimeObject *)(RuntimeObject *)L_2, (bool*)(bool*)(&V_2), /*hidden argument*/NULL); V_3 = (int32_t)0; goto IL_0083; } IL_0019: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = V_0; int32_t L_4 = V_3; NullCheck(L_3); int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if (L_6) { goto IL_0039; } } IL_0027: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = V_0; int32_t L_8 = V_3; NullCheck(L_7); RuntimeObject * L_9 = ___e0; VolatileWrite((RuntimeObject **)(RuntimeObject **)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), (RuntimeObject *)L_9); int32_t L_10 = V_3; V_4 = (int32_t)L_10; IL2CPP_LEAVE(0x98, FINALLY_008e); } IL_0039: { int32_t L_11 = V_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = V_0; NullCheck(L_12); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))), (int32_t)1)))))) { goto IL_007f; } } IL_0041: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = V_0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); if ((!(((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_13) == ((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_14)))) { goto IL_007f; } } IL_004c: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = V_0; NullCheck(L_15); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length))), (int32_t)2))); V_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_16; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = V_0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = V_5; int32_t L_19 = V_3; Array_Copy_m40103AA97DC582C557B912CF4BBE86A4D166F803((RuntimeArray *)(RuntimeArray *)L_17, (RuntimeArray *)(RuntimeArray *)L_18, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)), /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = V_5; int32_t L_21 = V_3; RuntimeObject * L_22 = ___e0; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1))), (RuntimeObject *)L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_5; il2cpp_codegen_memory_barrier(); __this->set_m_array_0(L_23); int32_t L_24 = V_3; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); IL2CPP_LEAVE(0x98, FINALLY_008e); } IL_007f: { int32_t L_25 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0083: { int32_t L_26 = V_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_0; NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))) { goto IL_0019; } } IL_0089: { IL2CPP_LEAVE(0x0, FINALLY_008e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_008e; } FINALLY_008e: { // begin finally (depth: 1) { bool L_28 = V_2; if (!L_28) { goto IL_0097; } } IL_0091: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = V_1; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A((RuntimeObject *)(RuntimeObject *)L_29, /*hidden argument*/NULL); } IL_0097: { IL2CPP_END_FINALLY(142) } } // end finally (depth: 1) IL2CPP_CLEANUP(142) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x98, IL_0098) IL2CPP_JUMP_TBL(0x0, IL_0000) } IL_0098: { int32_t L_30 = V_4; return (int32_t)L_30; } } // System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparseArray_1_Remove_mE2B0F58E246578556EF983DF5186A2BA917B81D8_gshared (SparseArray_1_t0EBA1596FB6FD2DC6F89C27334AFE9C976DBD259 * __this, RuntimeObject * ___e0, const RuntimeMethod* method) { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; V_1 = (bool)0; } IL_000b: try { // begin try (depth: 1) { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4((RuntimeObject *)(RuntimeObject *)L_1, (bool*)(bool*)(&V_1), /*hidden argument*/NULL); V_2 = (int32_t)0; goto IL_0054; } IL_0017: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); RuntimeObject * L_6 = ___e0; if ((!(((RuntimeObject*)(RuntimeObject *)L_5) == ((RuntimeObject*)(RuntimeObject *)L_6)))) { goto IL_0050; } } IL_0032: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_8 = V_2; NullCheck(L_7); il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *)); RuntimeObject * L_9 = V_3; VolatileWrite((RuntimeObject **)(RuntimeObject **)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), (RuntimeObject *)L_9); IL2CPP_LEAVE(0x6D, FINALLY_0063); } IL_0050: { int32_t L_10 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0054: { int32_t L_11 = V_2; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_array_0(); il2cpp_codegen_memory_barrier(); NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))) { goto IL_0017; } } IL_0061: { IL2CPP_LEAVE(0x6D, FINALLY_0063); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0063; } FINALLY_0063: { // begin finally (depth: 1) { bool L_13 = V_1; if (!L_13) { goto IL_006c; } } IL_0066: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A((RuntimeObject *)(RuntimeObject *)L_14, /*hidden argument*/NULL); } IL_006c: { IL2CPP_END_FINALLY(99) } } // end finally (depth: 1) IL2CPP_CLEANUP(99) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x6D, IL_006d) } IL_006d: { 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.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B_gshared (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___source0, int32_t ___index1, const RuntimeMethod* method) { { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = ___source0; __this->set_m_source_0(L_0); int32_t L_1 = ___index1; __this->set_m_index_1(L_1); return; } } IL2CPP_EXTERN_C void SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B_AdjustorThunk (RuntimeObject * __this, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___source0, int32_t ___index1, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *>(__this + _offset); SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B(_thisAdjusted, ___source0, ___index1, method); } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_source_0(); return (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0; } } IL2CPP_EXTERN_C SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *>(__this + _offset); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * _returnValue; _returnValue = SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_index_1(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D *>(__this + _offset); int32_t _returnValue; _returnValue = SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_inline(_thisAdjusted, method); return _returnValue; } #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.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m01E13321F6DB13FB51AB1B18CCCB7D0D44AF2379_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___size0, const RuntimeMethod* method) { { int32_t L_0 = ___size0; NullCheck((SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this); (( void (*) (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, int32_t, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this, (int32_t)L_0, (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m255C270BA84DAD7624581CDFCF78AFBAC5301130_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___size0, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___prev1, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___size0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); __this->set_m_elements_0(L_1); int32_t L_2 = ___size0; il2cpp_codegen_memory_barrier(); __this->set_m_freeCount_1(L_2); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_3 = ___prev1; il2cpp_codegen_memory_barrier(); __this->set_m_prev_3(L_3); return; } } // T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_get_Item_mC3579E477C53F9088A8C833575B30C7D71C7E8FC_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___index0, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_elements_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VolatileRead((RuntimeObject **)(RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))); return (RuntimeObject *)L_2; } } // System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayFragment_1_get_Length_mB0DC970D503F4C5776CB9A81094AF51DA6CA4B89_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_elements_0(); NullCheck(L_0); return (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))); } } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayFragment_1_get_Prev_m3AE2D2BEA384B3DDB6F5E8232451AC419F160665_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, const RuntimeMethod* method) { { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_prev_3(); il2cpp_codegen_memory_barrier(); return (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0; } } // T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m6252DF164CBE58871C4AA1183160ABE31637D844_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___index0, RuntimeObject * ___expectedElement1, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * G_B2_0 = NULL; RuntimeObject * G_B1_0 = NULL; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_elements_0(); int32_t L_1 = ___index0; NullCheck(L_0); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; RuntimeObject * L_3 = ___expectedElement1; RuntimeObject * L_4; L_4 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), (RuntimeObject *)L_2, (RuntimeObject *)L_3); RuntimeObject * L_5 = (RuntimeObject *)L_4; G_B1_0 = L_5; if (!L_5) { G_B2_0 = L_5; goto IL_0035; } } { int32_t L_6 = (int32_t)__this->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_freeCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); G_B2_0 = G_B1_0; } IL_0035: { return (RuntimeObject *)G_B2_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.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArray_1__ctor_m4819219D17EF783AA631AE71218B59EA894AA9E6_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, int32_t ___initialSize0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___initialSize0; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_1 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_1, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_1); return; } } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArray_1_get_Tail_mBAA868E1B7091E1FF6BDF656AF3BDE21E98A9048_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, const RuntimeMethod* method) { { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_tail_0(); il2cpp_codegen_memory_barrier(); return (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0; } } // System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D SparselyPopulatedArray_1_Add_m64CEDA3841ECF9A5BAD346FF0714610AB9E40CAE_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, RuntimeObject * ___element0, const RuntimeMethod* method) { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * V_0 = NULL; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * V_1 = NULL; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; RuntimeObject * V_7 = NULL; int32_t V_8 = 0; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * G_B15_0 = NULL; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * G_B14_0 = NULL; int32_t G_B16_0 = 0; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * G_B16_1 = NULL; int32_t G_B24_0 = 0; IL_0000: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_tail_0(); il2cpp_codegen_memory_barrier(); V_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0; goto IL_001d; } IL_000b: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_1 = V_0; NullCheck(L_1); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_2 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_1->get_m_next_2(); il2cpp_codegen_memory_barrier(); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_3 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_2; V_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_3; il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_3); } IL_001d: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_4 = V_0; NullCheck(L_4); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_5 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_4->get_m_next_2(); il2cpp_codegen_memory_barrier(); if (L_5) { goto IL_000b; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_6 = V_0; V_1 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_6; goto IL_0115; } IL_002e: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_7 = V_1; NullCheck(L_7); int32_t L_8 = (int32_t)L_7->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_8) >= ((int32_t)1))) { goto IL_004b; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_9 = V_1; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_10 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_9; NullCheck(L_10); int32_t L_11 = (int32_t)L_10->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_10); il2cpp_codegen_memory_barrier(); L_10->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1))); } IL_004b: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_12 = V_1; NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_13) > ((int32_t)0))) { goto IL_0065; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_14 = V_1; NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_15) >= ((int32_t)((int32_t)-10)))) { goto IL_010c; } } IL_0065: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_16 = V_1; NullCheck((SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_16); int32_t L_17; L_17 = (( int32_t (*) (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (int32_t)L_17; int32_t L_18 = V_3; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_19 = V_1; NullCheck(L_19); int32_t L_20 = (int32_t)L_19->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); int32_t L_21 = V_3; V_4 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_20))%(int32_t)L_21)); int32_t L_22 = V_4; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_0094; } } { V_4 = (int32_t)0; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_23 = V_1; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_24 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_23; NullCheck(L_24); int32_t L_25 = (int32_t)L_24->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_24); il2cpp_codegen_memory_barrier(); L_24->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1))); } IL_0094: { V_5 = (int32_t)0; goto IL_0107; } IL_0099: { int32_t L_26 = V_4; int32_t L_27 = V_5; int32_t L_28 = V_3; V_6 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))%(int32_t)L_28)); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_29 = V_1; NullCheck(L_29); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_29->get_m_elements_0(); int32_t L_31 = V_6; NullCheck(L_30); int32_t L_32 = L_31; RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); if (L_33) { goto IL_0101; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_34 = V_1; NullCheck(L_34); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_35 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_34->get_m_elements_0(); int32_t L_36 = V_6; NullCheck(L_35); RuntimeObject * L_37 = ___element0; il2cpp_codegen_initobj((&V_7), sizeof(RuntimeObject *)); RuntimeObject * L_38 = V_7; RuntimeObject * L_39; L_39 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36))), (RuntimeObject *)L_37, (RuntimeObject *)L_38); if (L_39) { goto IL_0101; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_40 = V_1; NullCheck(L_40); int32_t L_41 = (int32_t)L_40->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); V_8 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_42 = V_1; int32_t L_43 = V_8; G_B14_0 = L_42; if ((((int32_t)L_43) > ((int32_t)0))) { G_B15_0 = L_42; goto IL_00ef; } } { G_B16_0 = 0; G_B16_1 = G_B14_0; goto IL_00f1; } IL_00ef: { int32_t L_44 = V_8; G_B16_0 = L_44; G_B16_1 = G_B15_0; } IL_00f1: { NullCheck(G_B16_1); il2cpp_codegen_memory_barrier(); G_B16_1->set_m_freeCount_1(G_B16_0); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_45 = V_1; int32_t L_46 = V_6; SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D L_47; memset((&L_47), 0, sizeof(L_47)); SparselyPopulatedArrayAddInfo_1__ctor_mC515DCE911FCE4CB31B221DB67FD3F613B4D743B((&L_47), (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_45, (int32_t)L_46, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D )L_47; } IL_0101: { int32_t L_48 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); } IL_0107: { int32_t L_49 = V_5; int32_t L_50 = V_3; if ((((int32_t)L_49) < ((int32_t)L_50))) { goto IL_0099; } } IL_010c: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_51 = V_1; NullCheck(L_51); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_52 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_51->get_m_prev_3(); il2cpp_codegen_memory_barrier(); V_1 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_52; } IL_0115: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_53 = V_1; if (L_53) { goto IL_002e; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_54 = V_0; NullCheck(L_54); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_55 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_54->get_m_elements_0(); NullCheck(L_55); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))) == ((int32_t)((int32_t)4096)))) { goto IL_0136; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_56 = V_0; NullCheck(L_56); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_57 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_56->get_m_elements_0(); NullCheck(L_57); G_B24_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length))), (int32_t)2)); goto IL_013b; } IL_0136: { G_B24_0 = ((int32_t)4096); } IL_013b: { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_58 = V_0; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_59 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, int32_t, SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_59, (int32_t)G_B24_0, (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); V_2 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_59; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_60 = V_0; NullCheck(L_60); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** L_61 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 **)L_60->get_address_of_m_next_2(); il2cpp_codegen_memory_barrier(); SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_62 = V_2; SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_63; L_63 = InterlockedCompareExchangeImpl<SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *>((SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 **)(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 **)L_61, (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_62, (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)NULL); if (L_63) { goto IL_0000; } } { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_64 = V_2; il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_64); goto IL_0000; } } #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.Reflection.MonoProperty/StaticGetter`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StaticGetter_1__ctor_mCB9F6199681B0664F67E085BB97DAE5DB341AC30_gshared (StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01 * __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); } // R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_Invoke_m08F70CE702870040A78BB0E5F863F253ECEBC8D4_gshared (StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01 * __this, const RuntimeMethod* method) { RuntimeObject * result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 0) { // open typedef RuntimeObject * (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult System.Reflection.MonoProperty/StaticGetter`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StaticGetter_1_BeginInvoke_m7C19626A86BEC69169C4BB781F40448AFC036D04_gshared (StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_EndInvoke_m4BCFC92037FF0D7ED5747DBE3C5B0F8A5CB38F44_gshared (StaticGetter_1_t34703320355FB45822699F7FF6C0BC577E0DDA01 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result;; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.ISubsystem UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::CreateImpl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SubsystemDescriptorWithProvider_2_CreateImpl_m1B9B418D75EF3F4C06D9D2D6F5037E1F94D5CA19_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (RuntimeObject*)L_0; } } // TSubsystem UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemDescriptorWithProvider_2_Create_m408B960884D6341C051185F1D9362DA5B8CC1BF2_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemManager_t4397CEF2ED795CB9B3DDBA2BB468BCB6B45B76D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; RuntimeObject * V_3 = NULL; bool V_4 = false; RuntimeObject * V_5 = NULL; RuntimeObject * G_B7_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(SubsystemManager_t4397CEF2ED795CB9B3DDBA2BB468BCB6B45B76D9_il2cpp_TypeInfo_var); SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * L_0; L_0 = SubsystemManager_FindStandaloneSubsystemByDescriptor_m4D6228127478931DB7C3307ECD539A0DADD55968((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))), IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))); RuntimeObject * L_1 = V_0; V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_2 = V_2; if (!L_2) { goto IL_0023; } } { RuntimeObject * L_3 = V_0; V_3 = (RuntimeObject *)L_3; goto IL_0089; } IL_0023: { NullCheck((SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *)__this); RuntimeObject * L_4; L_4 = (( RuntimeObject * (*) (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_1 = (RuntimeObject *)L_4; RuntimeObject * L_5 = V_1; V_4 = (bool)((((RuntimeObject*)(RuntimeObject *)L_5) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_6 = V_4; if (!L_6) { goto IL_0046; } } { il2cpp_codegen_initobj((&V_5), sizeof(RuntimeObject *)); RuntimeObject * L_7 = V_5; V_3 = (RuntimeObject *)L_7; goto IL_0089; } IL_0046: { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_8; L_8 = SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); if (L_8) { goto IL_0055; } } { RuntimeObject * L_9; L_9 = (( RuntimeObject * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); G_B7_0 = L_9; goto IL_0065; } IL_0055: { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_10; L_10 = SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); RuntimeObject * L_11; L_11 = Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295((Type_t *)L_10, /*hidden argument*/NULL); G_B7_0 = ((RuntimeObject *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))); } IL_0065: { V_0 = (RuntimeObject *)G_B7_0; RuntimeObject * L_12 = V_0; RuntimeObject * L_13 = V_1; NullCheck((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_12); VirtActionInvoker2< SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *, SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * >::Invoke(11 /* System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider::Initialize(UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider,UnityEngine.SubsystemsImplementation.SubsystemProvider) */, (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_12, (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, (SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 *)L_13); RuntimeObject * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(SubsystemManager_t4397CEF2ED795CB9B3DDBA2BB468BCB6B45B76D9_il2cpp_TypeInfo_var); SubsystemManager_AddStandaloneSubsystem_m81A1438431C2ED439EA025B87BC4017F7AD775B2((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_14, /*hidden argument*/NULL); RuntimeObject * L_15 = V_0; V_3 = (RuntimeObject *)L_15; goto IL_0089; } IL_0089: { RuntimeObject * L_16 = V_3; return (RuntimeObject *)L_16; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::ThrowIfInvalid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_2_ThrowIfInvalid_mE6EB7079FF076D272363D43C8FDFCE84EA2FF44E_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; bool V_2 = false; int32_t G_B7_0 = 0; { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_0; L_0 = SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0019; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFB56FBFCFCE2DBB8D871868DE37CF24B441C78DD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SubsystemDescriptorWithProvider_2_ThrowIfInvalid_mE6EB7079FF076D272363D43C8FDFCE84EA2FF44E_RuntimeMethod_var))); } IL_0019: { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_3; L_3 = SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck((Type_t *)L_3); bool L_6; L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(100 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, (Type_t *)L_3, (Type_t *)L_5); V_1 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0); bool L_7 = V_1; if (!L_7) { goto IL_005f; } } { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_8; L_8 = SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_8); String_t* L_9; L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 5)) }; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var))); Type_t * L_11; L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_10, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_11); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_11); String_t* L_13; L_13 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3987FA95BD46CCE848A84361CD17D11219DC101A)), (RuntimeObject *)L_9, (RuntimeObject *)L_12, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_14 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_14, (String_t*)L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SubsystemDescriptorWithProvider_2_ThrowIfInvalid_mE6EB7079FF076D272363D43C8FDFCE84EA2FF44E_RuntimeMethod_var))); } IL_005f: { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_15; L_15 = SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); if (!L_15) { goto IL_0081; } } { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_16; L_16 = SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18; L_18 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_17, /*hidden argument*/NULL); NullCheck((Type_t *)L_16); bool L_19; L_19 = VirtFuncInvoker1< bool, Type_t * >::Invoke(100 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, (Type_t *)L_16, (Type_t *)L_18); G_B7_0 = ((((int32_t)L_19) == ((int32_t)0))? 1 : 0); goto IL_0082; } IL_0081: { G_B7_0 = 0; } IL_0082: { V_2 = (bool)G_B7_0; bool L_20 = V_2; if (!L_20) { goto IL_00b0; } } { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_21; L_21 = SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_21); String_t* L_22; L_22 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_21); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var))); Type_t * L_24; L_24 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_23, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_24); String_t* L_25; L_25 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_24); String_t* L_26; L_26 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6D6D7D98EEF97DA8106B4F84DC56051C3D100924)), (RuntimeObject *)L_22, (RuntimeObject *)L_25, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_27 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_27, (String_t*)L_26, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SubsystemDescriptorWithProvider_2_ThrowIfInvalid_mE6EB7079FF076D272363D43C8FDFCE84EA2FF44E_RuntimeMethod_var))); } IL_00b0: { return; } } // TProvider UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::CreateProvider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemDescriptorWithProvider_2_CreateProvider_m30E201C853A2AC0DC0607279AADCD2CA1DD3A1CE_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; RuntimeObject * G_B3_0 = NULL; { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); Type_t * L_0; L_0 = SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this, /*hidden argument*/NULL); RuntimeObject * L_1; L_1 = Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295((Type_t *)L_0, /*hidden argument*/NULL); V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); RuntimeObject * L_2 = V_0; NullCheck((SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_2); bool L_3; L_3 = VirtFuncInvoker0< bool >::Invoke(4 /* System.Boolean UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::TryInitialize() */, (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_2); if (L_3) { goto IL_002a; } } { il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_1; G_B3_0 = L_4; goto IL_002b; } IL_002a: { RuntimeObject * L_5 = V_0; G_B3_0 = L_5; } IL_002b: { V_2 = (RuntimeObject *)G_B3_0; goto IL_002e; } IL_002e: { RuntimeObject * L_6 = V_2; return (RuntimeObject *)L_6; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__this); SubsystemDescriptorWithProvider__ctor_m6549AFB004D82BC1439CF25E69BC8BAB9C315604((SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)__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 // TSubsystem UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::get_subsystem() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemLifecycleManager_3_get_subsystem_m50CDB488C754452B0104C6EC4DAC7D0A85A43F61_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { { // public TSubsystem subsystem { get; private set; } RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CsubsystemU3Ek__BackingField_4(); return (RuntimeObject *)L_0; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::set_subsystem(TSubsystem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_set_subsystem_m57B02FAB5F438B150DD1C5F7F78F99460CBDA14C_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // public TSubsystem subsystem { get; private set; } RuntimeObject * L_0 = ___value0; __this->set_U3CsubsystemU3Ek__BackingField_4(L_0); return; } } // TSubsystemDescriptor UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::get_descriptor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemLifecycleManager_3_get_descriptor_m7D53DE0BA46C48ED506F48EF81E7778AAFD2902E_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * G_B2_0 = NULL; RuntimeObject * G_B1_0 = NULL; RuntimeObject * G_B3_0 = NULL; { // subsystem?.subsystemDescriptor; NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject * L_1 = (RuntimeObject *)L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001a; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; G_B3_0 = L_2; goto IL_001f; } IL_001a: { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)G_B2_0); RuntimeObject * L_3; L_3 = (( RuntimeObject * (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)G_B2_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B3_0 = L_3; } IL_001f: { return (RuntimeObject *)G_B3_0; } } // TSubsystem UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::GetActiveSubsystemInstance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemLifecycleManager_3_GetActiveSubsystemInstance_m03B8C1AA5C0DFAAF46D17C0B8F87A1A6142EF3A5_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C380E819D3DABEF164F2B0B89310A19646E5D32); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7245127280C0B0EA336358EDF301389A962363E0); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * V_2 = NULL; bool V_3 = false; bool V_4 = false; RuntimeObject * V_5 = NULL; int32_t G_B3_0 = 0; { // TSubsystem activeSubsystem = null; il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); // if (XRGeneralSettings.Instance != null && XRGeneralSettings.Instance.Manager != null) IL2CPP_RUNTIME_CLASS_INIT(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_il2cpp_TypeInfo_var); XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * L_0; L_0 = XRGeneralSettings_get_Instance_m8D7FC68414773249E7C8EEF06048916FD7E7D68D(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { IL2CPP_RUNTIME_CLASS_INIT(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_il2cpp_TypeInfo_var); XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * L_2; L_2 = XRGeneralSettings_get_Instance_m8D7FC68414773249E7C8EEF06048916FD7E7D68D(/*hidden argument*/NULL); NullCheck((XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 *)L_2); XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * L_3; L_3 = XRGeneralSettings_get_Manager_m5E4819323E32CA8E97058B8ED282558779099544((XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 *)L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_4)); goto IL_0029; } IL_0028: { G_B3_0 = 0; } IL_0029: { V_1 = (bool)G_B3_0; bool L_5 = V_1; if (!L_5) { goto IL_0051; } } { // XRLoader loader = XRGeneralSettings.Instance.Manager.activeLoader; IL2CPP_RUNTIME_CLASS_INIT(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_il2cpp_TypeInfo_var); XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * L_6; L_6 = XRGeneralSettings_get_Instance_m8D7FC68414773249E7C8EEF06048916FD7E7D68D(/*hidden argument*/NULL); NullCheck((XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 *)L_6); XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * L_7; L_7 = XRGeneralSettings_get_Manager_m5E4819323E32CA8E97058B8ED282558779099544((XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 *)L_6, /*hidden argument*/NULL); NullCheck((XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F *)L_7); XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * L_8; L_8 = XRManagerSettings_get_activeLoader_mB1950E58B1DD1774EB2798CEBA6D3C371CE8F1D8_inline((XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F *)L_7, /*hidden argument*/NULL); V_2 = (XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B *)L_8; // if (loader != null) XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * L_9 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_10; L_10 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_9, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); V_3 = (bool)L_10; bool L_11 = V_3; if (!L_11) { goto IL_0050; } } { // activeSubsystem = loader.GetLoadedSubsystem<TSubsystem>(); XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * L_12 = V_2; NullCheck((XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B *)L_12); RuntimeObject * L_13; L_13 = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3), (XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B *)L_12); V_0 = (RuntimeObject *)L_13; } IL_0050: { } IL_0051: { // if (activeSubsystem == null) RuntimeObject * L_14 = V_0; V_4 = (bool)((((RuntimeObject*)(RuntimeObject *)L_14) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_15 = V_4; if (!L_15) { goto IL_0089; } } { // Debug.LogWarningFormat($"No active {typeof(TSubsystem).FullName} is available. Please ensure that a " + // "valid loader configuration exists in the XR project settings."); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_16 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17; L_17 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_16, /*hidden argument*/NULL); NullCheck((Type_t *)L_17); String_t* L_18; L_18 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, (Type_t *)L_17); String_t* L_19; L_19 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44((String_t*)_stringLiteral7245127280C0B0EA336358EDF301389A962363E0, (String_t*)L_18, (String_t*)_stringLiteral4C380E819D3DABEF164F2B0B89310A19646E5D32, /*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20; L_20 = Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_inline(/*hidden argument*/Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarningFormat_m405E9C0A631F815816F349D7591DD545932FF774((String_t*)L_19, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_20, /*hidden argument*/NULL); } IL_0089: { // return activeSubsystem; RuntimeObject * L_21 = V_0; V_5 = (RuntimeObject *)L_21; goto IL_008e; } IL_008e: { // } RuntimeObject * L_22 = V_5; return (RuntimeObject *)L_22; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::EnsureSubsystemInstanceSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_EnsureSubsystemInstanceSet_mFEEF9DBE8E7CAFD520F53496727F9F1B64E229D9_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { { // subsystem = GetActiveSubsystemInstance(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); (( void (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); // } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnEnable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_OnEnable_mC41BE58445C5D6832B5BFAE62E9C283450C488F9_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { bool V_0 = false; bool V_1 = false; { // EnsureSubsystemInstanceSet(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); (( void (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); // if (subsystem != null) NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0047; } } { // OnBeforeStart(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); VirtActionInvoker0::Invoke(7 /* System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnBeforeStart() */, (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); // if (enabled) NullCheck((Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 *)__this); bool L_2; L_2 = Behaviour_get_enabled_m08077AB79934634E1EAE909C2B482BEF4C15A800((Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 *)__this, /*hidden argument*/NULL); V_1 = (bool)L_2; bool L_3 = V_1; if (!L_3) { goto IL_0046; } } { // subsystem.Start(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_4; L_4 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_4); SubsystemWithProvider_Start_m003500C832A046B3D66AAFC80226B608A7F15A29((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_4, /*hidden argument*/NULL); // OnAfterStart(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnAfterStart() */, (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); } IL_0046: { } IL_0047: { // } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_OnDisable_m1675CA41DE21C5AD3395FF9F4E66FD39EE69F431_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { bool V_0 = false; { // if (subsystem != null) NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0024; } } { // subsystem.Stop(); NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); RuntimeObject * L_2; L_2 = (( RuntimeObject * (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_2); SubsystemWithProvider_Stop_m3033765FF29DE25A80A290E9C8F1D5B9087AD0FA((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)L_2, /*hidden argument*/NULL); } IL_0024: { // } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_OnDestroy_m9B6D0A5489030DFD0B0AD313B76AE2E1BA1C6A34_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; { // subsystem = null; il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_0 = V_0; NullCheck((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this); (( void (*) (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); // } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnBeforeStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_OnBeforeStart_mA49BEB4770B71B1213027F1219F10EF64D92EA43_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { { // { } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::OnAfterStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3_OnAfterStart_m6C9125D39B3CF81CE5C81EFDE93283E2C61A8A6B_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { { // { } return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3__ctor_mCF5C12D468C384A2FC5EA477267126C262E88392_gshared (SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1 * __this, const RuntimeMethod* method) { { NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARFoundation.SubsystemLifecycleManager`3<System.Object,System.Object,System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemLifecycleManager_3__cctor_m2C17D6B3391CDF28EC7928F8769D7D193336C91B_gshared (const RuntimeMethod* method) { { // static List<TSubsystemDescriptor> s_SubsystemDescriptors = // new List<TSubsystemDescriptor>(); List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 10)); (( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); ((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)))->set_s_SubsystemDescriptors_5(L_0); // static List<TSubsystem> s_SubsystemInstances = // new List<TSubsystem>(); List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_1 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13)); (( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); ((SubsystemLifecycleManager_3_t2AD5C0CEF1579C328B065CC2710E931A5F71AEF1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)))->set_s_SubsystemInstances_6(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.Boolean UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::TryInitialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SubsystemProvider_1_TryInitialize_m467B6FD730FC07FDE13E79D91588B8FE709815D5_gshared (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 *)__this); SubsystemProvider__ctor_m2CE89B46251DEF756241F4339D1B3C97585C40D5((SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 *)__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 // TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::get_subsystemDescriptor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_subsystemDescriptor_mCB575298CFB451AD4BC4CCA6116D0FC3A31EA349_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CsubsystemDescriptorU3Ek__BackingField_2(); return (RuntimeObject *)L_0; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::set_subsystemDescriptor(TSubsystemDescriptor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_set_subsystemDescriptor_mB8C614CABEBAC513CBA00BB5B33AC108C366382D_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set_U3CsubsystemDescriptorU3Ek__BackingField_2(L_0); return; } } // TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::get_provider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_provider_m1C17796ABB973D3A5F6B1C31B84298C076AA7E1B_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CproviderU3Ek__BackingField_3(); return (RuntimeObject *)L_0; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::set_provider(TProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_set_provider_m0A940C93BA9C90EBA1F3F068F87576622A1428B4_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set_U3CproviderU3Ek__BackingField_3(L_0); return; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnCreate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnCreate_m5804E4BD3B7E79429D4BA39E76B0FE9B46A3A695_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { return; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnStart_m096AF64E438BB77AB850AB2AF80FD6C8C76688BF_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::Start() */, (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); return; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnStop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnStop_mEB7A1FF35674710DE4B94A0B1DB33A65DC6DABCD_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::Stop() */, (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); return; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnDestroy_mDF502C6ACA2A0E1BB712D84A2612EC8491B04D22_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); VirtActionInvoker0::Invoke(7 /* System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::Destroy() */, (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 *)L_0); return; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::Initialize(UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider,UnityEngine.SubsystemsImplementation.SubsystemProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_Initialize_mB4C3DC18A7BBDF3F5DC1C307F15DC4D26F45ABBE_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * ___descriptor0, SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___provider1, const RuntimeMethod* method) { { SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * L_0 = ___provider1; NullCheck((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)__this); SubsystemWithProvider_set_providerBase_m322900A6068F18D7D279ADDFD82D8FA6FE49CA52_inline((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)__this, (SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 *)L_0, /*hidden argument*/NULL); SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * L_1 = ___provider1; NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * L_2 = ___descriptor0; NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); VirtActionInvoker0::Invoke(13 /* System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnCreate() */, (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); return; } } // UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::get_descriptor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * SubsystemWithProvider_3_get_descriptor_m63C2A846DE387E21AF0462280AD0CC30B3F56447_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); RuntimeObject * L_0; L_0 = (( RuntimeObject * (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E *)L_0; } } // System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3__ctor_m547D656ED6A22E04230EE777D2EB7A68BA51212F_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)__this); SubsystemWithProvider__ctor_m7839AE90041C8237270AFC52FC96E1BEECCDC653((SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E *)__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.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemThreadingTasks_FutureDebugView_1__ctor_m73CAE9D52DB4FC2639AE9CB47ACD36B104AF4BAC_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } // TResult System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SystemThreadingTasks_FutureDebugView_1_get_Result_m93058AB3123A4B2DA495DD53BA506323FED4F5BC_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)5))) { goto IL_0018; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; return (RuntimeObject *)L_2; } IL_0018: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_3 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_3); RuntimeObject * L_4; L_4 = (( RuntimeObject * (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (RuntimeObject *)L_4; } } // System.Object System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_AsyncState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m47DEAED30E834CD15AD7F6A8A3AE362BBA896CAB_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); RuntimeObject * L_1; L_1 = Task_get_AsyncState_m3470627DAC0FAD1BB41E763113037E70B21F5DB9_inline((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); return (RuntimeObject *)L_1; } } // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_CreationOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3FB3DA5D577AB422EF66B6C9CF03971520A43B09_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_CreationOptions_mFFFB200145023232580498A32BCEC3263F915E16((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); return (int32_t)L_1; } } // System.Exception System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Exception() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SystemThreadingTasks_FutureDebugView_1_get_Exception_mCFD921BC2411493057104FC316D98D22ABC20DB5_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_1; L_1 = Task_get_Exception_m53945993385D4031240B0DB2C0585ABBFB8CFA81((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); return (Exception_t *)L_1; } } // System.Int32 System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_Id_m2C6E53EECD0567D81AB0453BE5F96A6BA73D8853_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); return (int32_t)L_1; } } // System.Boolean System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_CancellationPending() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m3DA6969AF63C4FA2B5375D699E5A69E3F7745035_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0022; } } { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_2 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3; L_3 = Task_get_CancellationToken_m95864774C9D967684A3BE04AC9A1F80874B19CC1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, /*hidden argument*/NULL); V_0 = (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3; bool L_4; L_4 = CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&V_0), /*hidden argument*/NULL); return (bool)L_4; } IL_0022: { return (bool)0; } } // System.Threading.Tasks.TaskStatus System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Status() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_Status_m751E0A1AAC8EC7995F1EB0EA55867D78EB97132C_gshared (SystemThreadingTasks_FutureDebugView_1_t4C9A912669598580918A4250B4641B02F31CD089 * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); return (int32_t)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.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[],System.Object[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tables__ctor_mB1DBA1BD5FD558147563EA6346B85F4C35E2F2E1_gshared (Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA * __this, NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A* ___buckets0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___locks1, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___countPerLock2, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); NodeU5BU5D_t44E9F769F519A8B34D3471A563F0066F1C82409A* L_0 = ___buckets0; __this->set__buckets_0(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ___locks1; __this->set__locks_1(L_1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___countPerLock2; il2cpp_codegen_memory_barrier(); __this->set__countPerLock_2(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_gshared (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, const RuntimeMethod* method) { { Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_AdjustorThunk (RuntimeObject * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *>(__this + _offset); TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D_gshared (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { { Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_0 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this->get_m_task_0(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m6B7D35FFFF726F689EABF9A513DF885B84CF790D((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D_AdjustorThunk (RuntimeObject * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_mA5BC021D0DCA2E675EA66487D50D4E381999493D(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE_gshared (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, const RuntimeMethod* method) { { Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_0 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_m8C8532E03B6F655525AB87D420CACE753DC1CD3B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_1 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this->get_m_task_0(); NullCheck((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_1); bool L_2; L_2 = (( bool (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (bool)L_2; } } IL2CPP_EXTERN_C bool TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C *>(__this + _offset); bool _returnValue; _returnValue = TaskAwaiter_1_GetResult_m3694F573A6701524D11B729BB9430EEADD64F6DE(_thisAdjusted, method); return _returnValue; } #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.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_gshared (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, const RuntimeMethod* method) { { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_AdjustorThunk (RuntimeObject * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *>(__this + _offset); TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53_gshared (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_0 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this->get_m_task_0(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m6B7D35FFFF726F689EABF9A513DF885B84CF790D((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53_AdjustorThunk (RuntimeObject * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m71462B0DD179774D324E17CD2FBB194FC0882F53(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846_gshared (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, const RuntimeMethod* method) { { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_0 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_m8C8532E03B6F655525AB87D420CACE753DC1CD3B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_1 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this->get_m_task_0(); NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_1); int32_t L_2; L_2 = (( int32_t (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 *>(__this + _offset); int32_t _returnValue; _returnValue = TaskAwaiter_1_GetResult_m765E3C665961F15E3EEC2471D5837A730DCA3846(_thisAdjusted, method); return _returnValue; } #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.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_gshared (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_AdjustorThunk (RuntimeObject * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *>(__this + _offset); TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2_gshared (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m6B7D35FFFF726F689EABF9A513DF885B84CF790D((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2_AdjustorThunk (RuntimeObject * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m162A27DB052A25B3E41C2A45D27360F46A6B29B2(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA_gshared (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_m8C8532E03B6F655525AB87D420CACE753DC1CD3B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_1 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this->get_m_task_0(); NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_1); RuntimeObject * L_2; L_2 = (( RuntimeObject * (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (RuntimeObject *)L_2; } } IL2CPP_EXTERN_C RuntimeObject * TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = TaskAwaiter_1_GetResult_m7703A30E4F4EA17FBA4243DE1BF9412521B2AFDA(_thisAdjusted, method); return _returnValue; } #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.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_gshared (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, const RuntimeMethod* method) { { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_AdjustorThunk (RuntimeObject * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *>(__this + _offset); TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E_gshared (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_0 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this->get_m_task_0(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m6B7D35FFFF726F689EABF9A513DF885B84CF790D((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E_AdjustorThunk (RuntimeObject * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m38C52B39B87B1F2C13E0D01ADDD85820861B227E(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB_gshared (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, const RuntimeMethod* method) { { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_0 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_m8C8532E03B6F655525AB87D420CACE753DC1CD3B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_1 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this->get_m_task_0(); NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_1); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_2; L_2 = (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_2; } } IL2CPP_EXTERN_C VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC *>(__this + _offset); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 _returnValue; _returnValue = TaskAwaiter_1_GetResult_m92C9F1FC0E92C4E551807E54637008293B93D5EB(_thisAdjusted, method); return _returnValue; } #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.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m94CDE55BE968D75ADDD16A394DA59FB3CC71586E_gshared (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * __this, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *)__this); (( void (*) (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mB54A6D08E03D5EDE2741C33FBB1DBF3A15A4BC25_gshared (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_m592473AB47584DE6B8C032335E63798E2737D40A((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_mB5BA78C895925094C20D93F462BB06FFE47AFB65((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); 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.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m95A30E31077CC563964CFDDDB4229382E8E597A9_gshared (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * __this, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *)__this); (( void (*) (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m99CF2AD2F6A6891B2F1E1D6B5064B6BC074BDA4E_gshared (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_m592473AB47584DE6B8C032335E63798E2737D40A((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_mB5BA78C895925094C20D93F462BB06FFE47AFB65((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); 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.Threading.Tasks.TaskFactory`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m0BD45C96838F379D431730A84606A7D2560AD844_gshared (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * __this, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *)__this); (( void (*) (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mA5825E7F57AFB09B7BEB570FCC074AD27E0A608B_gshared (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_m592473AB47584DE6B8C032335E63798E2737D40A((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_mB5BA78C895925094C20D93F462BB06FFE47AFB65((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); 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.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m048C61580C2DFED01156A742917D59499B45B9C1_gshared (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * __this, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *)__this); (( void (*) (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mEC1A07D07DC810393CDE14D77F3AE47388DF99E4_gshared (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_m592473AB47584DE6B8C032335E63798E2737D40A((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_mB5BA78C895925094C20D93F462BB06FFE47AFB65((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); 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.Threading.Tasks.Task`1<System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m37A2A89D16FE127FD4C1125B71D30EE0AD5F7547_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mF1E8FBF8D067B862FF2E96557394CC8CB7EB334F((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m4147FD562A52E37964BFF472DB939744FBA7DA29_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, (int32_t)0, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, /*hidden argument*/NULL); bool L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mEB79C972D350C5A7B7FF71C2846403554423D1FC_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___canceled0, bool ___result1, int32_t ___creationOptions2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___ct3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { bool L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_mC02DD409D1C1B359B32C6B4F4C06F690D8CFCABC_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___function0, RuntimeObject * ___state1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3; L_3 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this); (( void (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, Delegate_t *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m123E20CD4E3CC51B5AD2010E3BEB0E08502B1E02_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2 = ___parent2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_6 = ___scheduler6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8; L_8 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m123E20CD4E3CC51B5AD2010E3BEB0E08502B1E02_RuntimeMethod_var))); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Boolean>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_m13AB71843A18F1725531D87C7AA979AC23BC335C_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1; L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { bool L_2 = (bool)__this->get_m_result_22(); bool L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_3); String_t* L_5; L_5 = String_Concat_mD3809D54FDAC43AA11084A9FE53165D57A6153FF((RuntimeObject *)L_4, /*hidden argument*/NULL); return (String_t*)L_5; } } // System.String System.Threading.Tasks.Task`1<System.Boolean>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m92DAA6145A33782EA57791B84895C0737FAA3582_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Delegate_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_mFBE3512457036F312EF672E0F3A7FEAE3E22EE74_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___result0, const RuntimeMethod* method) { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * V_0 = NULL; { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { bool L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_5; L_5 = Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_6 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_6; ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_7 = V_0; if (!L_7) { goto IL_004f; } } { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_8 = V_0; NullCheck((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8); ContingentProperties_SetCompleted_m44A115EBFE52BF43F884D212036223DF50F8A591((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_FinishStageThree_m69858B3BDD06352B2A0B0A25F399D52DE199E226((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_get_Result_mEC1B2C0D9A04A24259F4E5F7A9191C2A83E43803_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { bool L_1 = (bool)__this->get_m_result_22(); return (bool)L_1; } IL_000f: { NullCheck((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (bool)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_get_ResultOnSuccess_mCCDAA69136B5787F8E2E833454430CB7D14C5C22_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_result_22(); return (bool)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_GetResultCore_m08244083EA9926A7905D56F2745686632B23DB4B_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_2; L_2 = Task_InternalWait_mE57EF4D36E52156CE56428699F713D69BFF2C4B0((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)(-1), (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_3 = ___waitCompletionNotification0; if (!L_3) { goto IL_0023; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_4; L_4 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_m566B12643DFD769D51D3CC476B00528CF658CABC((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_5; L_5 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_ThrowIfExceptional_mD693A139D1600E19B1ACBEFA6DF2D92063BED55B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { bool L_6 = (bool)__this->get_m_result_22(); return (bool)L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m47EF41EFE44B83B833292961D11E92FC9F9AD808_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_0; L_0 = Task_EnsureContingentPropertiesInitialized_mB59C18080FCEA80351631975D751A478D44449F4((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { RuntimeObject * L_2 = ___exceptionObject0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_AddException_mF68C273C2777513AD41B2064C15889F2D978173E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_Finish_m924F5D1414BDC1A572D3C925CD9FBD4147C09FD5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_3 = V_0; return (bool)L_3; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mC7E4F953E4B13FEBAED3EECDD5FC10889D146013_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this); bool L_1; L_1 = (( bool (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mC924977D82B8429B45E4FC13002C766A44CE9E5A_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_RecordInternalCancellationRequest_mFA7A466EDA83666B183E9A69D9546F8FF45F99E3((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_CancellationCleanupLogic_m17ACB54C48890F80AE8A7A489671E103767072B1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m81477762E11D4BEB32871A862072E74ACFB7753D_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * V_0 = NULL; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)((Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_2 = V_0; NullCheck((Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_2); bool L_3; L_3 = (( bool (*) (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_6); bool L_8; L_8 = (( bool (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C Task_1_GetAwaiter_mA945C31B85664599610D79372896FAA63ABC4041_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_inline((&L_0), (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D Task_1_ConfigureAwait_mEEE46CCCCC629B162C32D55D75B3048E93FE674B_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m00AE49530694432761D2AC5849CAF68F0BD49AEE((&L_1), (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_t601E7B1D64EF5FDD0E9FE254E0C9DB5B9CA7F59D )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_mA0D0A7BB870B989DF1F67D02C4BE2EA3D45AEF07_gshared (const RuntimeMethod* method) { { TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * L_0 = (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D * L_1 = ((U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 * L_2 = (Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m6A14EF254702334006629FCB5647C803860A7CDD_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mF1E8FBF8D067B862FF2E96557394CC8CB7EB334F((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mB341E7553AAAEB403760159C837759AC0C7B2F20_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, int32_t ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, (int32_t)0, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, /*hidden argument*/NULL); int32_t L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m4614FE775E152B2268F056D9A0504CD31B935DEA_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, bool ___canceled0, int32_t ___result1, int32_t ___creationOptions2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___ct3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { int32_t L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_mCCDDF351A22140292DE88EC77D8C644A647AE619_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___function0, RuntimeObject * ___state1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3; L_3 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, Delegate_t *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m52F8C4F663DE685AD4BAA9EE6B79D0996146FB91_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2 = ___parent2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_6 = ___scheduler6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8; L_8 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m52F8C4F663DE685AD4BAA9EE6B79D0996146FB91_RuntimeMethod_var))); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Int32>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_m770691F8736CBDBF750B7148A8CE7C833756DAC6_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1; L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { int32_t L_2 = (int32_t)__this->get_m_result_22(); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_3); String_t* L_5; L_5 = String_Concat_mD3809D54FDAC43AA11084A9FE53165D57A6153FF((RuntimeObject *)L_4, /*hidden argument*/NULL); return (String_t*)L_5; } } // System.String System.Threading.Tasks.Task`1<System.Int32>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m0F4F352E3BAF1BBF967A63C781A58235520A08B1_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Delegate_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m60A26E300A1D0DE739D50DEA22A44B96661DA6C0_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, int32_t ___result0, const RuntimeMethod* method) { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * V_0 = NULL; { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { int32_t L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_5; L_5 = Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_6 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_6; ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_7 = V_0; if (!L_7) { goto IL_004f; } } { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_8 = V_0; NullCheck((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8); ContingentProperties_SetCompleted_m44A115EBFE52BF43F884D212036223DF50F8A591((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_FinishStageThree_m69858B3BDD06352B2A0B0A25F399D52DE199E226((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_m71D1165F8F30E8EDD34A98DBC72B55B15825D005_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { int32_t L_1 = (int32_t)__this->get_m_result_22(); return (int32_t)L_1; } IL_000f: { NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this); int32_t L_2; L_2 = (( int32_t (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_mFFF53075109EDE36DFAB103F29EC073F4A2E5D2D_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_result_22(); return (int32_t)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_GetResultCore_m6CE9E4211999FFD017F082345D5E28CDFB8FD86F_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_2; L_2 = Task_InternalWait_mE57EF4D36E52156CE56428699F713D69BFF2C4B0((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)(-1), (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_3 = ___waitCompletionNotification0; if (!L_3) { goto IL_0023; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_4; L_4 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_m566B12643DFD769D51D3CC476B00528CF658CABC((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_5; L_5 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_ThrowIfExceptional_mD693A139D1600E19B1ACBEFA6DF2D92063BED55B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { int32_t L_6 = (int32_t)__this->get_m_result_22(); return (int32_t)L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m3DFC28BCD56E7EE8BDB841F1A97EF4BE8E156A02_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_0; L_0 = Task_EnsureContingentPropertiesInitialized_mB59C18080FCEA80351631975D751A478D44449F4((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { RuntimeObject * L_2 = ___exceptionObject0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_AddException_mF68C273C2777513AD41B2064C15889F2D978173E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_Finish_m924F5D1414BDC1A572D3C925CD9FBD4147C09FD5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_3 = V_0; return (bool)L_3; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mE3C94396026524C6AC39F93E0E765128F15510A2_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mEF197EE337A7CBE2EECE69AA1ECA0231718F1EB9_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_RecordInternalCancellationRequest_mFA7A466EDA83666B183E9A69D9546F8FF45F99E3((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_CancellationCleanupLogic_m17ACB54C48890F80AE8A7A489671E103767072B1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_mDE4EBA1F49EF69FC648243A66A98334582BDE4AD_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * V_0 = NULL; Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)((Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_2 = V_0; NullCheck((Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_2); int32_t L_3; L_3 = (( int32_t (*) (Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_1 = (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_6); int32_t L_8; L_8 = (( int32_t (*) (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 Task_1_GetAwaiter_mCE77762B5BC443E380BAE24E7B55955C3D9996A3_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_inline((&L_0), (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC Task_1_ConfigureAwait_m9637E2990F98EDC90D1A03B57A4954CE2171C4E2_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m93EA35BCE92CF8F40FACEED76DC3E9669191B78E((&L_1), (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_t95CB4612A5B70DDFE0643FA38A73D6B984DD68EC )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m0F4455B017035D371420B1C9B2AA34D5EF3F4D55_gshared (const RuntimeMethod* method) { { TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * L_0 = (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E * L_1 = ((U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * L_2 = (Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0E154B54952313C68BE249DC65272D106C202E8C_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mF1E8FBF8D067B862FF2E96557394CC8CB7EB334F((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mEB7932B4A44919389589CACDC1D443AB2D1681FB_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, (int32_t)0, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, /*hidden argument*/NULL); RuntimeObject * L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mFC380BDDF1AF18F401DBE606D16B29C5A7170D8B_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, bool ___canceled0, RuntimeObject * ___result1, int32_t ___creationOptions2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___ct3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { RuntimeObject * L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_mDDC922A10C49DB4478ADAB2E20B79AA6C2C105D3_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___function0, RuntimeObject * ___state1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3; L_3 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, Delegate_t *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m45DA83B8321A999F8E5368833CDD148D95AA141D_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2 = ___parent2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_6 = ___scheduler6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8; L_8 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m45DA83B8321A999F8E5368833CDD148D95AA141D_RuntimeMethod_var))); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Object>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_mEBE459A32291CF651C540ED9B75F0658AE94EDE1_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1; L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { RuntimeObject * L_2 = (RuntimeObject *)__this->get_m_result_22(); String_t* L_3; L_3 = String_Concat_mD3809D54FDAC43AA11084A9FE53165D57A6153FF((RuntimeObject *)L_2, /*hidden argument*/NULL); return (String_t*)L_3; } } // System.String System.Threading.Tasks.Task`1<System.Object>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_mE0D0E616513CE27D0E0063CC2438BF22B6AF7667_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Delegate_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m1050FBF178389A5D03D30C4C53B7E3E097A56B42_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * V_0 = NULL; { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { RuntimeObject * L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_5; L_5 = Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_6 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_6; ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_7 = V_0; if (!L_7) { goto IL_004f; } } { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_8 = V_0; NullCheck((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8); ContingentProperties_SetCompleted_m44A115EBFE52BF43F884D212036223DF50F8A591((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_FinishStageThree_m69858B3BDD06352B2A0B0A25F399D52DE199E226((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Object>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m5A339E4CA9D86AC691E5754F29A452802A8DE548_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_1; } IL_000f: { NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); RuntimeObject * L_2; L_2 = (( RuntimeObject * (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Object>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_ResultOnSuccess_m46A8F0AC50B96BA13F1F8C3B88415350C5DF66B7_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Object>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_GetResultCore_m4631F08B8681F2A2DE14C25BEB1801B377447B25_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_2; L_2 = Task_InternalWait_mE57EF4D36E52156CE56428699F713D69BFF2C4B0((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)(-1), (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_3 = ___waitCompletionNotification0; if (!L_3) { goto IL_0023; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_4; L_4 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_m566B12643DFD769D51D3CC476B00528CF658CABC((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_5; L_5 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_ThrowIfExceptional_mD693A139D1600E19B1ACBEFA6DF2D92063BED55B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m2300A530586907923A4332A10CA7976E7262695C_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_0; L_0 = Task_EnsureContingentPropertiesInitialized_mB59C18080FCEA80351631975D751A478D44449F4((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { RuntimeObject * L_2 = ___exceptionObject0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_AddException_mF68C273C2777513AD41B2064C15889F2D978173E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_Finish_m924F5D1414BDC1A572D3C925CD9FBD4147C09FD5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_3 = V_0; return (bool)L_3; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m3BB36CD1F80D11A98FDA16B2598337DEFA4E9BBA_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mA627A702453DE3F952EEA1B68CF604534EDB491F_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_RecordInternalCancellationRequest_mFA7A466EDA83666B183E9A69D9546F8FF45F99E3((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_CancellationCleanupLogic_m17ACB54C48890F80AE8A7A489671E103767072B1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m2FE8556EDE2265EA5F8923DE88A5995F75A19221_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * V_0 = NULL; Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)((Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_2 = V_0; NullCheck((Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_2); RuntimeObject * L_3; L_3 = (( RuntimeObject * (*) (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_1 = (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_6); RuntimeObject * L_8; L_8 = (( RuntimeObject * (*) (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Object>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE Task_1_GetAwaiter_m4F5B9EF55874E9959CE12E71ADEAC798960F0FE3_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_inline((&L_0), (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 Task_1_ConfigureAwait_m0C99499DCC096AEE2A6AD075391C61037CC3DAA1_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mBC64F50B1AF5434E6D60CEC0D77A57E28E99C0AD((&L_1), (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m50823F27341624B67A0AA0E58F1DF03132D5463B_gshared (const RuntimeMethod* method) { { TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * L_0 = (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 * L_1 = ((U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * L_2 = (Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mCE309147068C1ECA3D92C5133444D805F5B04AF1_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mF1E8FBF8D067B862FF2E96557394CC8CB7EB334F((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7EC33EF34F64114A8D152BBAC30B8863F55D8E57_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, (int32_t)0, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, /*hidden argument*/NULL); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m54069BFDCD1C670A3713A298C56D7F1AF86C5316_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, bool ___canceled0, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 ___result1, int32_t ___creationOptions2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___ct3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_mB8A69B1CDE84773711A1F727E8F12A771D005F1A((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_mA972BE2F2787EBC865852B68C10F851828096F93_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * ___function0, RuntimeObject * ___state1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3; L_3 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, Delegate_t *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m3DF11CEF04129066D80E213A02C6E1A16EF2770F_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2 = ___parent2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_6 = ___scheduler6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8; L_8 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m3DF11CEF04129066D80E213A02C6E1A16EF2770F_RuntimeMethod_var))); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_m20723370D907E4632003869D620E8C374F759BCE_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3); s_Il2CppMethodInitialized = true; } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1; L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)_stringLiteral1AFCC888E02E1FF7531EF3FFE2563F9A7700B3A3, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_2 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )__this->get_m_result_22(); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_3 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_3); String_t* L_5; L_5 = String_Concat_mD3809D54FDAC43AA11084A9FE53165D57A6153FF((RuntimeObject *)L_4, /*hidden argument*/NULL); return (String_t*)L_5; } } // System.String System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m3FA998E9950F0B67D6475ADC137B0E25ACC41F1F_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Delegate_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m0D282AA0AA9602D0FCFA46141CEEAAE8533D2788_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 ___result0, const RuntimeMethod* method) { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * V_0 = NULL; { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_5; L_5 = Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_6 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_6; ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_7 = V_0; if (!L_7) { goto IL_004f; } } { ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_8 = V_0; NullCheck((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8); ContingentProperties_SetCompleted_m44A115EBFE52BF43F884D212036223DF50F8A591((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_8, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_FinishStageThree_m69858B3BDD06352B2A0B0A25F399D52DE199E226((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 Task_1_get_Result_m385E10E855FCEE323B2D95C5C2FE56FB20D26122_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_1 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )__this->get_m_result_22(); return (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_1; } IL_000f: { NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_2; L_2 = (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_2; } } // TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 Task_1_get_ResultOnSuccess_m559E89F4C6E683A352F2443533B48AF932CC0E5D_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_0 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )__this->get_m_result_22(); return (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_0; } } // TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 Task_1_GetResultCore_m60248E398FA3FFC22F6284CE25F154B658E55298_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = V_0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_2; L_2 = Task_InternalWait_mE57EF4D36E52156CE56428699F713D69BFF2C4B0((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)(-1), (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_3 = ___waitCompletionNotification0; if (!L_3) { goto IL_0023; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_4; L_4 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_m566B12643DFD769D51D3CC476B00528CF658CABC((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_5; L_5 = Task_get_IsRanToCompletion_m8DFA37869119617244BA82A09040A8495E031619((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_ThrowIfExceptional_mD693A139D1600E19B1ACBEFA6DF2D92063BED55B((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_6 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )__this->get_m_result_22(); return (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_mAEC49933FB8034AA98C144D4F9122BE42B89BB0B_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_0; L_0 = Task_EnsureContingentPropertiesInitialized_mB59C18080FCEA80351631975D751A478D44449F4((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_1; L_1 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { RuntimeObject * L_2 = ___exceptionObject0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_AddException_mF68C273C2777513AD41B2064C15889F2D978173E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_Finish_m924F5D1414BDC1A572D3C925CD9FBD4147C09FD5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_3 = V_0; return (bool)L_3; } } // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mB49D47FE8A080526EB1C12CA90F19C58ACADD931_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this); bool L_1; L_1 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m77B203D3ACDB89BBACE32DC293B0374ED69A9F4B_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); bool L_0; L_0 = Task_AtomicStateUpdate_mCF22C9AE5F97F1576A25CC4085FB7A83937268B8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_RecordInternalCancellationRequest_mFA7A466EDA83666B183E9A69D9546F8FF45F99E3((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); Task_CancellationCleanupLogic_m17ACB54C48890F80AE8A7A489671E103767072B1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m6A85040F94F47E2F4186134995209AF87ACFBBBD_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * V_0 = NULL; Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)((Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_2 = V_0; NullCheck((Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_2); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_3; L_3 = (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_1 = (Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)((Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)L_6); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_8; L_8 = (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC Task_1_GetAwaiter_mAD5A3A560A8FCDF7CD0BE14516D9B07B021F9366_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_inline((&L_0), (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 Task_1_ConfigureAwait_mF5D1E4299E485936C0682DDCC7A141DE412E6124_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mD570AA3F661F72D4051BA5B379832317ECD78534((&L_1), (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_tD4A295F39B2BAD2AFBFB5C5AB4C896A2A3F03DD3 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_mEE5F7DCA071888CA4E8D5332FAEA2233A460FFD0_gshared (const RuntimeMethod* method) { { TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * L_0 = (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 * L_1 = ((U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 * L_2 = (Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_1 = V_0; return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 _returnValue; _returnValue = TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_1 = V_0; return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 _returnValue; _returnValue = TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_3; L_3 = (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_7; L_7 = (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_inline((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); TrackableChanges_1__ctor_mD2722B050F813A29015E9D57F72F8BA50AF74FE1(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_5; L_5 = (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_11; L_11 = (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_inline((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); TrackableChanges_1__ctor_mD2CDA364CBC507E983239E807C8C6EE8D3453B42(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215_gshared (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_inline((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_2 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_3 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_inline((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *>(__this + _offset); TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Added_1(); V_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_1 = V_0; return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 _returnValue; _returnValue = TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_1 = V_0; return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 _returnValue; _returnValue = TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_3; L_3 = (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_7; L_7 = (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_inline((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); TrackableChanges_1__ctor_m17DDC8A3E879E944E70B272535EDD4DA1501348F(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_5; L_5 = (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_11; L_11 = (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_inline((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); TrackableChanges_1__ctor_mA73D215CA80356F8179EB02A8F9BBC14329AD7D4(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451_gshared (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_inline((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * L_2 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC((NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * L_3 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC((NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_inline((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *>(__this + _offset); TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { NativeArray_1_t901047647D1B0577009EA387273335B841552234 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_1 = V_0; return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); NativeArray_1_t901047647D1B0577009EA387273335B841552234 _returnValue; _returnValue = TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { NativeArray_1_t901047647D1B0577009EA387273335B841552234 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_1 = V_0; return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); NativeArray_1_t901047647D1B0577009EA387273335B841552234 _returnValue; _returnValue = TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_3; L_3 = (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_7; L_7 = (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_inline((TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); TrackableChanges_1__ctor_m1CFE8F449A22DB24BF81E38AC2E016BB0C3CE81A(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_5; L_5 = (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_11; L_11 = (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_inline((TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); TrackableChanges_1__ctor_m8B32DEE7C39CA08A7523D0D553B26079265524E1(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28_gshared (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_inline((TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t901047647D1B0577009EA387273335B841552234 * L_2 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46((NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)(NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t901047647D1B0577009EA387273335B841552234 * L_3 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46((NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)(NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_inline((TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *>(__this + _offset); TrackableChanges_1_Dispose_m575B805F3D6AD1F4347C7860F4B28AB6F3BA2A28(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_1 = V_0; return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 _returnValue; _returnValue = TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_1 = V_0; return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 _returnValue; _returnValue = TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_3; L_3 = (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_7; L_7 = (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_inline((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); TrackableChanges_1__ctor_m7BB4E0A6686FE683355ED3A630E7C2CAF40E6B43(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_5; L_5 = (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_11; L_11 = (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_inline((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); TrackableChanges_1__ctor_m529358A9D19C12874038815703FBB61C2D874608(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F_gshared (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_inline((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * L_2 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3((NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * L_3 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3((NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_inline((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *>(__this + _offset); TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_1 = V_0; return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 _returnValue; _returnValue = TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_1 = V_0; return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 _returnValue; _returnValue = TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_3; L_3 = (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_7; L_7 = (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_inline((TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); TrackableChanges_1__ctor_m58CA913F45414E8B6959E065C785BDE3555802A5(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_5; L_5 = (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_11; L_11 = (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_inline((TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); TrackableChanges_1__ctor_mF1B701B0766D8E5230EC1A878ADF490273ED75BC(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6_gshared (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_inline((TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * L_2 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A((NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * L_3 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A((NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_inline((TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *>(__this + _offset); TrackableChanges_1_Dispose_m2CA7C2F46B2FB6A3516C063F5C282CC115DE16A6(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_1 = V_0; return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 _returnValue; _returnValue = TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_1 = V_0; return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 _returnValue; _returnValue = TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_3; L_3 = (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_7; L_7 = (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_inline((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); TrackableChanges_1__ctor_mFA2451C6E10AF00118A809C94BB646C6B774012E(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_5; L_5 = (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_11; L_11 = (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_inline((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); TrackableChanges_1__ctor_m370CF5291141A66BDFDD78CD6881082C200244C1(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9_gshared (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_inline((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * L_2 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC((NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * L_3 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC((NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_inline((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *>(__this + _offset); TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Added_1(); V_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_1 = V_0; return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA _returnValue; _returnValue = TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_1 = V_0; return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA _returnValue; _returnValue = TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_3; L_3 = (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_7; L_7 = (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_inline((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); TrackableChanges_1__ctor_mC9CF1312E711B15F2C534F0C1CF671DE42EB9B54(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_5; L_5 = (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_11; L_11 = (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_inline((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); TrackableChanges_1__ctor_mBF738909EFD3DE1CE7CEC8B5BF81B3AB51A682CD(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2_gshared (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_inline((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * L_2 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD((NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * L_3 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD((NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_inline((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *>(__this + _offset); TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Added_1(); V_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_1 = V_0; return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E _returnValue; _returnValue = TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_1 = V_0; return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E _returnValue; _returnValue = TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_3; L_3 = (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_7; L_7 = (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_inline((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); TrackableChanges_1__ctor_m9F54A8C7BCE147B652FF69EDBF10EC185F98609A(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_5; L_5 = (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_11; L_11 = (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_inline((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); TrackableChanges_1__ctor_m592AE08978C647130F8181BD1802AAE7EF3623B4(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D_gshared (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_inline((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * L_2 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7((NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * L_3 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7((NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_inline((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *>(__this + _offset); TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_1 = V_0; return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 _returnValue; _returnValue = TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_1 = V_0; return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 _returnValue; _returnValue = TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_3; L_3 = (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_7; L_7 = (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_inline((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); TrackableChanges_1__ctor_m6A2889F88ED22B851AF0025A0EE6B10D06DEE63F(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_5; L_5 = (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_11; L_11 = (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_inline((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); TrackableChanges_1__ctor_mB7330ECC70A5D01A7BDFA8FD28572F150D9A7C8E(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7_gshared (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_inline((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * L_2 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489((NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * L_3 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489((NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_inline((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *>(__this + _offset); TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Added_1(); V_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_1 = V_0; return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_1; } } IL2CPP_EXTERN_C NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F _returnValue; _returnValue = TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Updated_2(); V_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_1 = V_0; return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_1; } } IL2CPP_EXTERN_C NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F _returnValue; _returnValue = TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_3; L_3 = (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_7; L_7 = (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_inline((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); TrackableChanges_1__ctor_m25A62CA08C53BE54EDFF68FBF70205F6A171D871(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_5; L_5 = (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_11; L_11 = (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_inline((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); TrackableChanges_1__ctor_m6F60AB8591361352FE9F0FB2C9A50988CD5530E8(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051_gshared (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_inline((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * L_2 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23((NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * L_3 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23((NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_inline((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *>(__this + _offset); TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051(_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 // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Added_1(); V_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_1 = V_0; return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 _returnValue; _returnValue = TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_updated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Updated_2(); V_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_1 = V_0; return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 _returnValue; _returnValue = TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_removed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_0; memset((&V_0), 0, sizeof(V_0)); { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); V_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; goto IL_000a; } IL_000a: { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_1 = V_0; return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_1; } } IL2CPP_EXTERN_C NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 _returnValue; _returnValue = TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_isCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); bool _returnValue; _returnValue = TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::set_isCreated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_inline(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Int32,System.Int32,System.Int32,Unity.Collections.Allocator,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultValue4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Added = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, addedCount, allocator); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_0 = ___defaultValue4; int32_t L_1 = ___addedCount0; int32_t L_2 = ___allocator3; NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_3; L_3 = (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Added_1(L_3); // m_Updated = NativeCopyUtility.CreateArrayFilledWithValue(defaultValue, updatedCount, allocator); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_4 = ___defaultValue4; int32_t L_5 = ___updatedCount1; int32_t L_6 = ___allocator3; NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_7; L_7 = (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set_m_Updated_2(L_7); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_8 = ___removedCount2; int32_t L_9 = ___allocator3; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_10; memset((&L_10), 0, sizeof(L_10)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_10), (int32_t)L_8, (int32_t)L_9, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_10); // isCreated = true; TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_inline((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6_AdjustorThunk (RuntimeObject * __this, int32_t ___addedCount0, int32_t ___updatedCount1, int32_t ___removedCount2, int32_t ___allocator3, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultValue4, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); TrackableChanges_1__ctor_mF10B771D3AB00A4864E12E8DC354699915031BF6(_thisAdjusted, ___addedCount0, ___updatedCount1, ___removedCount2, ___allocator3, ___defaultValue4, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Void*,System.Int32,System.Void*,System.Int32,System.Void*,System.Int32,T,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // m_Added = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, addedPtr, stride, addedCount, allocator); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_0 = ___defaultT6; void* L_1 = ___addedPtr0; int32_t L_2 = ___stride7; int32_t L_3 = ___addedCount1; int32_t L_4 = ___allocator8; NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_5; L_5 = (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_0, (void*)(void*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Added_1(L_5); // m_Updated = NativeCopyUtility.PtrToNativeArrayWithDefault<T>(defaultT, updatedPtr, stride, updatedCount, allocator); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_6 = ___defaultT6; void* L_7 = ___updatedPtr2; int32_t L_8 = ___stride7; int32_t L_9 = ___updatedCount3; int32_t L_10 = ___allocator8; NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_11; L_11 = (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , void*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); __this->set_m_Updated_2(L_11); // m_Removed = new NativeArray<TrackableId>(removedCount, allocator); int32_t L_12 = ___removedCount5; int32_t L_13 = ___allocator8; NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_14; memset((&L_14), 0, sizeof(L_14)); NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F((&L_14), (int32_t)L_12, (int32_t)L_13, (int32_t)1, /*hidden argument*/NativeArray_1__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var); __this->set_m_Removed_3(L_14); // if (removedCount > 0) int32_t L_15 = ___removedCount5; V_0 = (bool)((((int32_t)L_15) > ((int32_t)0))? 1 : 0); bool L_16 = V_0; if (!L_16) { goto IL_0060; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_17 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_19 = ___removedPtr4; int32_t L_20 = ___removedCount5; uint32_t L_21 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_18, (void*)(void*)L_19, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)L_21)))), /*hidden argument*/NULL); } IL_0060: { // isCreated = true; TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_inline((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120_AdjustorThunk (RuntimeObject * __this, void* ___addedPtr0, int32_t ___addedCount1, void* ___updatedPtr2, int32_t ___updatedCount3, void* ___removedPtr4, int32_t ___removedCount5, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___defaultT6, int32_t ___stride7, int32_t ___allocator8, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); TrackableChanges_1__ctor_m269B8E537869D288000375F719F5C5B87861E120(_thisAdjusted, ___addedPtr0, ___addedCount1, ___updatedPtr2, ___updatedCount3, ___removedPtr4, ___removedCount5, ___defaultT6, ___stride7, ___allocator8, method); } // System.Void UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC_gshared (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { // if (isCreated) bool L_0; L_0 = TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_inline((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (bool)L_0; bool L_1 = V_0; if (!L_1) { goto IL_0031; } } { // m_Added.Dispose(); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * L_2 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1((NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * L_3 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)__this->get_address_of_m_Updated_2(); NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1((NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_4 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_4, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0031: { // isCreated = false; TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_inline((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); // } return; } } IL2CPP_EXTERN_C void TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * _thisAdjusted = reinterpret_cast<TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *>(__this + _offset); TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC(_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 // UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 V_0; memset((&V_0), 0, sizeof(V_0)); { // return new Enumerator(m_Trackables); Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED((&L_1), (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 )L_1; goto IL_000f; } IL_000f: { // } Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 L_2 = V_0; return (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 )L_2; } } IL2CPP_EXTERN_C Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 _returnValue; _returnValue = TrackableCollection_1_GetEnumerator_m8F500D7F92731D0C759C54F845BF7824A90E9ABE(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method) { bool V_0 = false; { // if (trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = ___trackables0; V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException("trackables"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_RuntimeMethod_var))); } IL_0014: { // m_Trackables = trackables; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_3 = ___trackables0; __this->set_m_Trackables_0(L_3); // } return; } } IL2CPP_EXTERN_C void TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC(_thisAdjusted, ___trackables0, method); } // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; { // if (m_Trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0019; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_RuntimeMethod_var))); } IL_0019: { // return m_Trackables.Count; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_3 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3); int32_t L_4; L_4 = (( int32_t (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); V_1 = (int32_t)L_4; goto IL_0027; } IL_0027: { // } int32_t L_5 = V_1; return (int32_t)L_5; } } IL2CPP_EXTERN_C int32_t TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); int32_t _returnValue; _returnValue = TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161(_thisAdjusted, method); return _returnValue; } // TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::get_Item(UnityEngine.XR.ARSubsystems.TrackableId) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method) { bool V_0 = false; RuntimeObject * V_1 = NULL; KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * V_2 = NULL; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { // if (m_Trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0019; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_RuntimeMethod_var))); } IL_0019: { } IL_001a: try { // begin try (depth: 1) // return m_Trackables[trackableId]; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_3 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3); RuntimeObject * L_5; L_5 = (( RuntimeObject * (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_1 = (RuntimeObject *)L_5; goto IL_0043; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_002a; } throw e; } CATCH_002a: { // begin catch(System.Collections.Generic.KeyNotFoundException) // catch (KeyNotFoundException e) V_2 = (KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)((KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)IL2CPP_GET_ACTIVE_EXCEPTION(KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)); // throw new KeyNotFoundException( // string.Format("Trackable with id {0} does not exist in this collection.", trackableId), // e); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_6 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_6; RuntimeObject * L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_7); String_t* L_9; L_9 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral812EC03C4AEF0AE76BA178C4367F385393486DE8)), (RuntimeObject *)L_8, /*hidden argument*/NULL); KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * L_10 = V_2; KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * L_11 = (KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var))); KeyNotFoundException__ctor_m6757CFA9B5CC91705866ABDD9E48681DAB1C71D9(L_11, (String_t*)L_9, (Exception_t *)L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_RuntimeMethod_var))); } // end catch (depth: 1) IL_0043: { // } RuntimeObject * L_12 = V_1; return (RuntimeObject *)L_12; } } IL2CPP_EXTERN_C RuntimeObject * TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20(_thisAdjusted, ___trackableId0, method); return _returnValue; } // System.Int32 UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B3_0 = 0; { // return m_Trackables == null ? 0 : m_Trackables.GetHashCode(); Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); if (!L_0) { goto IL_0017; } } { Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_1 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); NullCheck((RuntimeObject *)L_1); int32_t L_2; L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1); G_B3_0 = L_2; goto IL_0018; } IL_0017: { G_B3_0 = 0; } IL_0018: { V_0 = (int32_t)G_B3_0; goto IL_001b; } IL_001b: { // } int32_t L_3 = V_0; return (int32_t)L_3; } } IL2CPP_EXTERN_C int32_t TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); int32_t _returnValue; _returnValue = TrackableCollection_1_GetHashCode_m564F7D49A962183C47EAA3DAD6BAEBE2159D179D(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { bool V_0 = false; bool V_1 = false; { // if (!(obj is TrackableCollection<TTrackable>)) RuntimeObject * L_0 = ___obj0; V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0015; } } { // return false; V_1 = (bool)0; goto IL_0024; } IL_0015: { // return Equals((TrackableCollection<TTrackable>) obj); RuntimeObject * L_2 = ___obj0; bool L_3; L_3 = TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)__this, (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 )((*(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (bool)L_3; goto IL_0024; } IL_0024: { // } bool L_4 = V_1; return (bool)L_4; } } IL2CPP_EXTERN_C bool TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); bool _returnValue; _returnValue = TrackableCollection_1_Equals_mDB459FCBA1295E5222A41713C148390D6E23FA03(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::Equals(UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___other0, const RuntimeMethod* method) { bool V_0 = false; { // return ReferenceEquals(m_Trackables, other.m_Trackables); Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 L_1 = ___other0; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_1.get_m_Trackables_0(); V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2))? 1 : 0); goto IL_0012; } IL_0012: { // } bool L_3 = V_0; return (bool)L_3; } } IL2CPP_EXTERN_C bool TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008_AdjustorThunk (RuntimeObject * __this, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); bool _returnValue; _returnValue = TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::op_Equality(UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>,UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_op_Equality_mAAB68150C03ABA77F5F7BAA392AA60A8D1E71CCF_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___lhs0, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___rhs1, const RuntimeMethod* method) { bool V_0 = false; { // return lhs.Equals(rhs); TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 L_0 = ___rhs1; bool L_1; L_1 = TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(&___lhs0), (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_0 = (bool)L_1; goto IL_000c; } IL_000c: { // } bool L_2 = V_0; return (bool)L_2; } } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::op_Inequality(UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>,UnityEngine.XR.ARFoundation.TrackableCollection`1<TTrackable>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_op_Inequality_m24D6EC32E3E1AC1F3B3A7EE6DADBC00F3A7D3DF9_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___lhs0, TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 ___rhs1, const RuntimeMethod* method) { bool V_0 = false; { // return !lhs.Equals(rhs); TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 L_0 = ___rhs1; bool L_1; L_1 = TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(&___lhs0), (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); goto IL_000f; } IL_000f: { // } bool L_2 = V_0; return (bool)L_2; } } // System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1<System.Object>::TryGetTrackable(UnityEngine.XR.ARSubsystems.TrackableId,TTrackable&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_gshared (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, RuntimeObject ** ___trackable1, const RuntimeMethod* method) { bool V_0 = false; bool V_1 = false; { // if (m_Trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0019; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_RuntimeMethod_var))); } IL_0019: { // return m_Trackables.TryGetValue(trackableId, out trackable); Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_3 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; RuntimeObject ** L_5 = ___trackable1; NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3); bool L_6; L_6 = (( bool (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_3, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (RuntimeObject **)(RuntimeObject **)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_1 = (bool)L_6; goto IL_0029; } IL_0029: { // } bool L_7 = V_1; return (bool)L_7; } } IL2CPP_EXTERN_C bool TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, RuntimeObject ** ___trackable1, const RuntimeMethod* method) { int32_t _offset = 1; TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 * _thisAdjusted = reinterpret_cast<TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *>(__this + _offset); bool _returnValue; _returnValue = TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581(_thisAdjusted, ___trackableId0, ___trackable1, method); return _returnValue; } #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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m495E6B5CCD50BDC48525BBF2A817EBED5A305233_gshared (TrackingSubsystem_4_t03AE7A9F3FCFC6AD533F1AC3F403168B8140649F * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m4E56D6762DBAF4B85197189BE61C13DE30BA9EA0_gshared (TrackingSubsystem_4_t346381F1A8322029735E6CB60BE656844AC911E8 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m975B52EF0629E5F911DF3B2540956C2ECAC19F1C_gshared (TrackingSubsystem_4_tBD40FD22068207BB90449FC608025235E400C47A * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m88ED6F3499AFB910896A8FCC211F32BC4ACDB87D_gshared (TrackingSubsystem_4_tB043EC909C55FE5BC78AD95436858F4956E3DE4C * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m1D64645D50A5AF5DE737B76E812A9282AE5C75D0_gshared (TrackingSubsystem_4_t758226B1C7A7735796B7029A5913BC43628FCCF3 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m00DE04D7B62F9F06D59F884D4382E11CB0476D80_gshared (TrackingSubsystem_4_t2CAAD77E4532041B0120AE543DB331C1CECFA765 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mC95093BD2646F8DAEE7E7D9D836D9149439CB30A_gshared (TrackingSubsystem_4_t1953500C8BD92CD8DCFED1CC3B58B24A60C24E43 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mFF3892B28340E6F3ED1F3DC251FF933173F496B6_gshared (TrackingSubsystem_4_tE9F5623D0E551591334872A367EFF28A72775EEA * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mE19523A7606EFAD4BE7A4A102D5224D66B5FE0DE_gshared (TrackingSubsystem_4_t3385ADCA6DCAB14BAB5A5E886D096E0B5FA530F5 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m6EC254893EEB06ED242EB316FA3C224F9B1EF255_gshared (TrackingSubsystem_4_t227E1B3CD9B70F544BE2BAC33219E40F224A16BA * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mD06E8532EADAB0CF5854F1190D0302D2A5C301EB_gshared (TrackingSubsystem_4_t7F92C20128624C004DAABFC3F72A9994C54898D9 * __this, const RuntimeMethod* method) { { NullCheck((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this); (( void (*) (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 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 UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>::.ctor(T,T,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB_gshared (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 * __this, int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method) { { // this.a = a; int32_t L_0 = ___a0; __this->set_a_0(L_0); // this.b = c; int32_t L_1 = ___c2; __this->set_b_1(L_1); // this.c = b; int32_t L_2 = ___b1; __this->set_c_2(L_2); // } return; } } IL2CPP_EXTERN_C void Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB_AdjustorThunk (RuntimeObject * __this, int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method) { int32_t _offset = 1; Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 * _thisAdjusted = reinterpret_cast<Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 *>(__this + _offset); Triangle_1__ctor_mF651153D8C916C5F0B214E49B8B120BDA2F888EB(_thisAdjusted, ___a0, ___b1, ___c2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>::.ctor(T,T,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF_gshared (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F * __this, uint16_t ___a0, uint16_t ___b1, uint16_t ___c2, const RuntimeMethod* method) { { // this.a = a; uint16_t L_0 = ___a0; __this->set_a_0(L_0); // this.b = c; uint16_t L_1 = ___c2; __this->set_b_1(L_1); // this.c = b; uint16_t L_2 = ___b1; __this->set_c_2(L_2); // } return; } } IL2CPP_EXTERN_C void Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF_AdjustorThunk (RuntimeObject * __this, uint16_t ___a0, uint16_t ___b1, uint16_t ___c2, const RuntimeMethod* method) { int32_t _offset = 1; Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F * _thisAdjusted = reinterpret_cast<Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F *>(__this + _offset); Triangle_1__ctor_m3124D68526135F807A7BD3F25412A458B2B838FF(_thisAdjusted, ___a0, ___b1, ___c2, 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 // T1 System.Tuple`2<System.Object,System.Char>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m83FF713DB4A914365CB9A6D213C1D31B46269057_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0(); return (RuntimeObject *)L_0; } } // T2 System.Tuple`2<System.Object,System.Char>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m79AB8B3DC587FA8796EC216A623D10DC71A6E202_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_m_Item2_1(); return (Il2CppChar)L_0; } } // System.Void System.Tuple`2<System.Object,System.Char>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m3F946F9DEA25CDC8A34638780152ABF5049BF165_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___item10, Il2CppChar ___item21, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___item10; __this->set_m_Item1_0(L_0); Il2CppChar L_1 = ___item21; __this->set_m_Item2_1(L_1); return; } } // System.Boolean System.Tuple`2<System.Object,System.Char>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_mC13D56B08E3BF9AE03134F713E88F59AF49E0986_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); bool L_2; L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (bool)L_2; } } // System.Boolean System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_mB8764DDC777A14644C984149BC346B303F8CB7E7_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * V_0 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)((Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7; L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004c; } } { RuntimeObject* L_8 = ___comparer1; Il2CppChar L_9 = (Il2CppChar)__this->get_m_Item2_1(); Il2CppChar L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_10); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_12 = V_0; NullCheck(L_12); Il2CppChar L_13 = (Il2CppChar)L_12->get_m_Item2_1(); Il2CppChar L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14); NullCheck((RuntimeObject*)L_8); bool L_16; L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15); return (bool)L_16; } IL_004c: { return (bool)0; } } // System.Int32 System.Tuple`2<System.Object,System.Char>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m9F56832E563506449F01AB0020EDF8E99AD82E4D_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_2; L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (int32_t)L_2; } } // System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)((Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_2 = V_0; if (L_2) { goto IL_002f; } } { NullCheck((RuntimeObject *)__this); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); String_t* L_5; L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_9 = V_0; NullCheck(L_9); RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0(); NullCheck((RuntimeObject*)L_7); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); V_1 = (int32_t)L_11; int32_t L_12 = V_1; if (!L_12) { goto IL_0053; } } { int32_t L_13 = V_1; return (int32_t)L_13; } IL_0053: { RuntimeObject* L_14 = ___comparer1; Il2CppChar L_15 = (Il2CppChar)__this->get_m_Item2_1(); Il2CppChar L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_16); Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_18 = V_0; NullCheck(L_18); Il2CppChar L_19 = (Il2CppChar)L_18->get_m_Item2_1(); Il2CppChar L_20 = L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20); NullCheck((RuntimeObject*)L_14); int32_t L_22; L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_21); return (int32_t)L_22; } } // System.Int32 System.Tuple`2<System.Object,System.Char>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m56B88A8B03BF1856556DB8527DB575A497601841_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_1; L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0); return (int32_t)L_1; } } // System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A8402570FA26D368443512574A0A03CBFAB7585_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; Il2CppChar L_4 = (Il2CppChar)__this->get_m_Item2_1(); Il2CppChar L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_5); NullCheck((RuntimeObject*)L_3); int32_t L_7; L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6); int32_t L_8; L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL); return (int32_t)L_8; } } // System.String System.Tuple`2<System.Object,System.Char>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m4F1D997C1F791EC93E8E153E25B8802A2A111436_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = (StringBuilder_t *)L_0; StringBuilder_t * L_1 = V_0; NullCheck((StringBuilder_t *)L_1); StringBuilder_t * L_2; L_2 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL); StringBuilder_t * L_3 = V_0; NullCheck((RuntimeObject*)__this); String_t* L_4; L_4 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_3); return (String_t*)L_4; } } // System.String System.Tuple`2<System.Object,System.Char>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_mC29992D30719486284F41C1DC333E9A321947EBE_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___sb0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_2; L_2 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL); StringBuilder_t * L_3 = ___sb0; NullCheck((StringBuilder_t *)L_3); StringBuilder_t * L_4; L_4 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_3, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; Il2CppChar L_6 = (Il2CppChar)__this->get_m_Item2_1(); Il2CppChar L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7); NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_9; L_9 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL); StringBuilder_t * L_10 = ___sb0; NullCheck((StringBuilder_t *)L_10); StringBuilder_t * L_11; L_11 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_10, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_12 = ___sb0; NullCheck((RuntimeObject *)L_12); String_t* L_13; L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_12); return (String_t*)L_13; } } #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 // T1 System.Tuple`2<System.Object,System.Object>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m80928C585ED22044C6E5DB8B8BFA895284E2BD9A_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0(); return (RuntimeObject *)L_0; } } // T2 System.Tuple`2<System.Object,System.Object>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m2A49F263317603E4A770D5B34222FFCCCB6AE4EB_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1(); return (RuntimeObject *)L_0; } } // System.Void System.Tuple`2<System.Object,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m4D9875962578E3B6CC08739D79B226A806756051_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___item10; __this->set_m_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_m_Item2_1(L_1); return; } } // System.Boolean System.Tuple`2<System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m7904D914C7F0D8920A3F2F0FB05BDA201DC34F7D_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); bool L_2; L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (bool)L_2; } } // System.Boolean System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m76DD43DE79BB19BCD41673F706D96FE167C894B2_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * V_0 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)((Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7; L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004c; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_10 = V_0; NullCheck(L_10); RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12; L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); return (bool)L_12; } IL_004c: { return (bool)0; } } // System.Int32 System.Tuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m0FB81164CA69BB5F29772A077579254D3F7EE3D4_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_2; L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (int32_t)L_2; } } // System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)((Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_2 = V_0; if (L_2) { goto IL_002f; } } { NullCheck((RuntimeObject *)__this); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); String_t* L_5; L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_9 = V_0; NullCheck(L_9); RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0(); NullCheck((RuntimeObject*)L_7); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); V_1 = (int32_t)L_11; int32_t L_12 = V_1; if (!L_12) { goto IL_0053; } } { int32_t L_13 = V_1; return (int32_t)L_13; } IL_0053: { RuntimeObject* L_14 = ___comparer1; RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_16 = V_0; NullCheck(L_16); RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1(); NullCheck((RuntimeObject*)L_14); int32_t L_18; L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17); return (int32_t)L_18; } } // System.Int32 System.Tuple`2<System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m93554844C338C3CFF8715DF628FCE38039872674_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_1; L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0); return (int32_t)L_1; } } // System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mC537B0B94B81AFE40F05E07B16B6741735D1A376_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5; L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); int32_t L_6; L_6 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_2, (int32_t)L_5, /*hidden argument*/NULL); return (int32_t)L_6; } } // System.String System.Tuple`2<System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m2E2FEB492CEDA8B61F6869909C0376A8F0DEEE9A_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = (StringBuilder_t *)L_0; StringBuilder_t * L_1 = V_0; NullCheck((StringBuilder_t *)L_1); StringBuilder_t * L_2; L_2 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL); StringBuilder_t * L_3 = V_0; NullCheck((RuntimeObject*)__this); String_t* L_4; L_4 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_3); return (String_t*)L_4; } } // System.String System.Tuple`2<System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m910380308358C7A726EC2516E3C9D9BD1E5F8EB6_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___sb0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_2; L_2 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL); StringBuilder_t * L_3 = ___sb0; NullCheck((StringBuilder_t *)L_3); StringBuilder_t * L_4; L_4 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_3, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_7; L_7 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL); StringBuilder_t * L_8 = ___sb0; NullCheck((StringBuilder_t *)L_8); StringBuilder_t * L_9; L_9 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_8, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_10 = ___sb0; NullCheck((RuntimeObject *)L_10); String_t* L_11; L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10); return (String_t*)L_11; } } #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 // T1 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item1_m2E4AA65247AA63A450A9C11604492811CA536DE9_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0(); return (RuntimeObject *)L_0; } } // T2 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_m949C431D298B80641EAA69F86E66E10759727B3C_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1(); return (RuntimeObject *)L_0; } } // T3 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item3_mAEE5571981A28E2BCA354F228E7741C0F16EBBD0_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2(); return (RuntimeObject *)L_0; } } // System.Void System.Tuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_3__ctor_m25271C40A72B98D04365B37AA075A393FA07DD82_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___item10; __this->set_m_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_m_Item2_1(L_1); RuntimeObject * L_2 = ___item32; __this->set_m_Item3_2(L_2); return; } } // System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_Equals_mE4282D65B2614390D3D6131F38CA4F71E38BD30B_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); bool L_2; L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (bool)L_2; } } // System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_mC0D0C105DDA322C1B2E2BEF716D15EE7E7A97B04_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * V_0 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)((Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7; L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_006a; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_10 = V_0; NullCheck(L_10); RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12; L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); if (!L_12) { goto IL_006a; } } { RuntimeObject* L_13 = ___comparer1; RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_15 = V_0; NullCheck(L_15); RuntimeObject * L_16 = (RuntimeObject *)L_15->get_m_Item3_2(); NullCheck((RuntimeObject*)L_13); bool L_17; L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16); return (bool)L_17; } IL_006a: { return (bool)0; } } // System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_m66B7166E41172B9AC64C38A6EA9B0A7FF946F01C_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var); LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_2; L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1); return (int32_t)L_2; } } // System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)((Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_2 = V_0; if (L_2) { goto IL_002f; } } { NullCheck((RuntimeObject *)__this); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); String_t* L_5; L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_9 = V_0; NullCheck(L_9); RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0(); NullCheck((RuntimeObject*)L_7); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); V_1 = (int32_t)L_11; int32_t L_12 = V_1; if (!L_12) { goto IL_0053; } } { int32_t L_13 = V_1; return (int32_t)L_13; } IL_0053: { RuntimeObject* L_14 = ___comparer1; RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_16 = V_0; NullCheck(L_16); RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1(); NullCheck((RuntimeObject*)L_14); int32_t L_18; L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0075; } } { int32_t L_20 = V_1; return (int32_t)L_20; } IL_0075: { RuntimeObject* L_21 = ___comparer1; RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_Item3_2(); Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_23 = V_0; NullCheck(L_23); RuntimeObject * L_24 = (RuntimeObject *)L_23->get_m_Item3_2(); NullCheck((RuntimeObject*)L_21); int32_t L_25; L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); return (int32_t)L_25; } } // System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_m1AED3AC52D43DA1716AA4458567FC4E6F7454B1A_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var); ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0(); NullCheck((RuntimeObject*)__this); int32_t L_1; L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0); return (int32_t)L_1; } } // System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m64C75EE1F144BBF0539D92AEC518ECEF964CC28A_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5; L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); RuntimeObject* L_6 = ___comparer0; RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2(); NullCheck((RuntimeObject*)L_6); int32_t L_8; L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7); int32_t L_9; L_9 = Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB((int32_t)L_2, (int32_t)L_5, (int32_t)L_8, /*hidden argument*/NULL); return (int32_t)L_9; } } // System.String System.Tuple`3<System.Object,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_m96B918423D9BBE3EA66EBFE4A617DFF628ECEA42_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = (StringBuilder_t *)L_0; StringBuilder_t * L_1 = V_0; NullCheck((StringBuilder_t *)L_1); StringBuilder_t * L_2; L_2 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL); StringBuilder_t * L_3 = V_0; NullCheck((RuntimeObject*)__this); String_t* L_4; L_4 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_3); return (String_t*)L_4; } } // System.String System.Tuple`3<System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m5B9310EE550CC41905FF3002D70DEB87884DED37_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___sb0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0(); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_2; L_2 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL); StringBuilder_t * L_3 = ___sb0; NullCheck((StringBuilder_t *)L_3); StringBuilder_t * L_4; L_4 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_3, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_7; L_7 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL); StringBuilder_t * L_8 = ___sb0; NullCheck((StringBuilder_t *)L_8); StringBuilder_t * L_9; L_9 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_8, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_10 = ___sb0; RuntimeObject * L_11 = (RuntimeObject *)__this->get_m_Item3_2(); NullCheck((StringBuilder_t *)L_10); StringBuilder_t * L_12; L_12 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_10, (RuntimeObject *)L_11, /*hidden argument*/NULL); StringBuilder_t * L_13 = ___sb0; NullCheck((StringBuilder_t *)L_13); StringBuilder_t * L_14; L_14 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_15 = ___sb0; NullCheck((RuntimeObject *)L_15); String_t* L_16; L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_15); return (String_t*)L_16; } } #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 // T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_m5F32E198862372BC9F9C510790E5098584906CAC_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0(); return (RuntimeObject *)L_0; } } // T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m70E2FD23ACE5513A49D47582782076A592E0A1AF_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1(); return (RuntimeObject *)L_0; } } // T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mB8D130AFCEE1037111D5F6387BF34F7893848F45_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_Item3_2(); return (int32_t)L_0; } } // T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_mCB7860299592F8FA0F6F60C1EBA20767982B16DB_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_Item4_3(); return (int32_t)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 // T1 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_mB1DB3A2FC05B5B5E5B77912C84AFA3BF7FC379EE_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0(); return (RuntimeObject *)L_0; } } // T2 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m793197594101F09AE8784336E26407E9D9A1EE0F_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1(); return (RuntimeObject *)L_0; } } // T3 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item3_mCD9FE68A6D1886B978288B54AF485139F1EBCC88_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2(); return (RuntimeObject *)L_0; } } // T4 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item4_mB8E300B37D00D2559EAA714799D1C6CB28D8006C_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item4_3(); return (RuntimeObject *)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 UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m7610B8631ECBD7E88D42E0FB686AC406253452BD_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __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 UnityEngine.Events.UnityAction`1<System.Boolean>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m0251CCA621F83D757C11A2CC5026DDA24A088866_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __this, bool ___arg00, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00); } } else { typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Boolean>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mF4A4312C4C5D7EC10F1D0AC32360D20951F3E276_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __this, bool ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &___arg00); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mADA530A569FA02CEE365550C0B1364847F902DAC_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`1<System.Int32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m595DA2ECB187B2DF951D640BFEBCE02F3F800A3F_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __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 UnityEngine.Events.UnityAction`1<System.Int32>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m34CD3B09DF7371CBA265F13CD7255906D697232D_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __this, int32_t ___arg00, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00); } } else { typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m50A0084C1E73C78361F32170CF616D08681D7380_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __this, int32_t ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg00); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<System.Int32>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m7320ACEFEBD2FA7D50C947BE9CEC62DAE429A329_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mDACAB67F7E76FF788C30CA0E51BF3274666F951E_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __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 UnityEngine.Events.UnityAction`1<System.Object>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_mB133B86EE623F225FC5B3B7C86B609072E8D0013_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject * ___arg00, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___arg00); else GenericVirtActionInvoker0::Invoke(targetMethod, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Object>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m7C92F18128CD7BC314EECF7D6FBE3F0D99B87597_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject * ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___arg00; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mF6CE051EB914150BEB88244003A263509CD42FDE_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mA4ADF56200888B2A297C5913DA00A89F11BD87C5_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __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 UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m16F774E0F869579B89A02E33198957BF2B362763_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___arg00) - 1), targetMethod); } else { typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mA6A81E3B39C49A2A483B7EC5A7FC6F305C84BDCD_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mCC90A51C5C963477EEE746E3D3856AEBE78FB78A_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m8CACADCAC18230FB18DF7A6BEC3D9EAD93FEDC3B_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __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 UnityEngine.Events.UnityAction`1<System.Single>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m2BCE3E687DD62E352139131BB1AD26D8AA444E77_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __this, float ___arg00, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (float, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00); } } else { typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Single>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mEAA1361DECE0C4E7F731346AD77D6999664527CA_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __this, float ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___arg00); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<System.Single>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m936D976DB36E14668A40522AADE9283923079869_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m8727842F47B6F77FCB70DE281A21C3E1DD2C7B5E_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __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 UnityEngine.Events.UnityAction`2<System.Object,System.Object>::Invoke(T0,T1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_mC190ED9AED96E2FE7A68F86FF0DE1AF6B3F8C270_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11); else GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11); else VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); else GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11); else VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Object,System.Object>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_m61A3E25D9705ECD97BB9634081BFE1F51A11BB72_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___arg00; __d_args[1] = ___arg11; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m4915ABA44B9B53926A3A694CDF011EF8C7345CD6_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m50E7B823E46CB327D49A2D55A761F57472037634_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __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 UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::Invoke(T0,T1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m5AA1F690449F2F9671E0B94633F97A1FAD7E3ED1_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, int32_t ___arg11, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); else GenericVirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11); else VirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___arg00) - 1), ___arg11, targetMethod); } else { typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_mDCEEB031BDBB99CF9F4FD8C66C8764E7145F233E_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, int32_t ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00); __d_args[1] = Box(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var, &___arg11); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m490BFF59EA4C5D89B467DFF2EBB8294B4D2B625D_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m988975393D43562D1485F4253E0D0960EA45BDE1_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __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 UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::Invoke(T0,T1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_mBE8D06B5C36F3C91DE37A9D965AEB4B499832596_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg11, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); else GenericVirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00, ___arg11); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11); else VirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___arg00) - 1), ___arg11, targetMethod); } else { typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_mEA01486964659C4609BA96B58825B2E9B851FE10_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00); __d_args[1] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg11); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m66976206F24D939E2132FAB88213AB25CBC0AEED_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3__ctor_mB86D6414884FDC1E91052C11EDE9D2D76F7ECA4F_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __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 UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::Invoke(T0,T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_Invoke_m6F58BD0703FA3C41CC7D6F3230771D8B1DF6CEC4_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 3) { // open typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod); } } else if (___parameterCount != 3) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22); else GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22); else VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22); else GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22); else VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_3_BeginInvoke_m88F46BFD94198E51067773C687AF1EA4E56BA6C9_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { void *__d_args[4] = {0}; __d_args[0] = ___arg00; __d_args[1] = ___arg11; __d_args[2] = ___arg22; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);; } // System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_EndInvoke_m61C295D3CAE75DAA73F736514C0F8305F21BF4D4_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4__ctor_m77B1860A1697D777A50B461899187B1F788FED67_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __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 UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T0,T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4_Invoke_m33FE7C261E18C40BF698970133F4C4AAE221453C_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 4) { // open typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod); } } else if (___parameterCount != 4) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33); else GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33); else VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33); else GenericVirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33); else VirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33); } } else { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,T3,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_4_BeginInvoke_m340C3A0B9B1D3D5617E73EFF0AECC0D26BA2434B_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method) { void *__d_args[5] = {0}; __d_args[0] = ___arg00; __d_args[1] = ___arg11; __d_args[2] = ___arg22; __d_args[3] = ___arg33; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);; } // System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4_EndInvoke_mD613D87947DBD4EAA4AFAB2EAA52C64E61B53393_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m30F443398054B5E3666B3C86E64A5C0FF97D93FF_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, const RuntimeMethod* method) { { __this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mFCFAC8ACA3F75283268DC2629ADEB5504E8FC0C2_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___call0, const RuntimeMethod* method) { { UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m0DDD8A7A01D83C10E72C71631F8487FE817B264D_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___call0, const RuntimeMethod* method) { { UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___call0; NullCheck((Delegate_t *)L_0); RuntimeObject * L_1; L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL); UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_2 = ___call0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m883CB9322DD397C11303E11CE1D75DE4DAB7A2A1_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { Type_t * L_0 = ___targetObjType1; String_t* L_1 = ___name0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5); MethodInfo_t * L_6; L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL); V_0 = (MethodInfo_t *)L_6; goto IL_001e; } IL_001e: { MethodInfo_t * L_7 = V_0; return (MethodInfo_t *)L_7; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m9F6A762AD5938FB4E433C68A6CAE0E064358B79E_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { RuntimeObject * L_0 = ___target0; MethodInfo_t * L_1 = ___theFunction1; InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_2 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; goto IL_000b; } IL_000b: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_3; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m042F0FF8A168ACCAC76DFF33398FF72BE89A13D4_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___action0; InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_1 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1; goto IL_000a; } IL_000a: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m75A79471AE45A1246054BDE3A9BFCEBA14967530_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, int32_t ___arg00, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL; int32_t V_1 = 0; InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * V_2 = NULL; bool V_3 = false; InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL; bool V_5 = false; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL; bool V_7 = false; bool V_8 = false; { NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0; L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0; V_1 = (int32_t)0; goto IL_009b; } IL_000f: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0; int32_t L_2 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3; L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_2 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)((InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_6 = V_2; int32_t L_7 = ___arg00; NullCheck((InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_6); VirtActionInvoker1< int32_t >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1) */, (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_6, (int32_t)L_7); goto IL_0096; } IL_002f: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0; int32_t L_9 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10; L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var)); InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4; V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_12 = V_5; if (!L_12) { goto IL_0053; } } { InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4; NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13); InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL); goto IL_0095; } IL_0053: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0; int32_t L_15 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16; L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_18 = V_7; if (!L_18) { goto IL_0078; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_m_InvokeArray_3(L_19); } IL_0078: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); int32_t L_21 = ___arg00; int32_t L_22 = L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_23); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24); VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25); } IL_0095: { } IL_0096: { int32_t L_26 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_009b: { int32_t L_27 = V_1; List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28); int32_t L_29; L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var); V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0); bool L_30 = V_8; if (L_30) { goto IL_000f; } } { 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 UnityEngine.Events.UnityEvent`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mD87552C18A41196B69A62A366C8238FC246B151A_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, const RuntimeMethod* method) { { __this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m14DAE292BCF77B088359410E4C12071936DB681D_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___call0, const RuntimeMethod* method) { { UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Object>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m793372F5AF1175F5DD348F908874E7D607B16DBD_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___call0, const RuntimeMethod* method) { { UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___call0; NullCheck((Delegate_t *)L_0); RuntimeObject * L_1; L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL); UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_2 = ___call0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3; L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Object>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_mAEF284CEE451CDF002B423EAD1920E36A12A9CF0_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { Type_t * L_0 = ___targetObjType1; String_t* L_1 = ___name0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5); MethodInfo_t * L_6; L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL); V_0 = (MethodInfo_t *)L_6; goto IL_001e; } IL_001e: { MethodInfo_t * L_7 = V_0; return (MethodInfo_t *)L_7; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m7B52283F3C9BA5BFFADCEA8C22119BD2DEF4FD39_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { RuntimeObject * L_0 = ___target0; MethodInfo_t * L_1 = ___theFunction1; InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_2 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; goto IL_000b; } IL_000b: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_3; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m38113512C8395BCA851A99D1A947C8C56FF66C45_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___action0; InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_1 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1; goto IL_000a; } IL_000a: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; } } // System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m73C0FE7D4CDD8627332257E8503F2E9862E33C3E_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, RuntimeObject * ___arg00, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL; int32_t V_1 = 0; InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * V_2 = NULL; bool V_3 = false; InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL; bool V_5 = false; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL; bool V_7 = false; bool V_8 = false; { NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0; L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0; V_1 = (int32_t)0; goto IL_009b; } IL_000f: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0; int32_t L_2 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3; L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_2 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)((InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_6 = V_2; RuntimeObject * L_7 = ___arg00; NullCheck((InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_6); VirtActionInvoker1< RuntimeObject * >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1) */, (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_6, (RuntimeObject *)L_7); goto IL_0096; } IL_002f: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0; int32_t L_9 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10; L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var)); InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4; V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_12 = V_5; if (!L_12) { goto IL_0053; } } { InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4; NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13); InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL); goto IL_0095; } IL_0053: { List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0; int32_t L_15 = V_1; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16; L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var); V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); bool L_18 = V_7; if (!L_18) { goto IL_0078; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_m_InvokeArray_3(L_19); } IL_0078: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); RuntimeObject * L_21 = ___arg00; NullCheck(L_20); ArrayElementTypeCheck (L_20, L_21); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21); BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_22 = V_6; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3(); NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_22); VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_22, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_23); } IL_0095: { } IL_0096: { int32_t L_24 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_009b: { int32_t L_25 = V_1; List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_26 = V_0; NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_26); int32_t L_27; L_27 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_26, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var); V_8 = (bool)((((int32_t)L_25) < ((int32_t)L_27))? 1 : 0); bool L_28 = V_8; if (L_28) { goto IL_000f; } } { 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 UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2__ctor_mF60EF62AFB15A35F2DD69476A73537390423F21A_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, const RuntimeMethod* method) { { __this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_2_FindMethod_Impl_m9DEDA5637D671AC58D580000A01B4B335B9923F0_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { Type_t * L_0 = ___targetObjType1; String_t* L_1 = ___name0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)2); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 1)) }; Type_t * L_8; L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8); MethodInfo_t * L_9; L_9 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_6, /*hidden argument*/NULL); V_0 = (MethodInfo_t *)L_9; goto IL_002b; } IL_002b: { MethodInfo_t * L_10 = V_0; return (MethodInfo_t *)L_10; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_2_GetDelegate_m8F25D40B052080876D1C4762AA6E7E6703D0249E_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { RuntimeObject * L_0 = ___target0; MethodInfo_t * L_1 = ___theFunction1; InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * L_2 = (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; goto IL_000b; } IL_000b: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_3__ctor_m4B93C635FB8DB80244E4979D82F6F94941196483_gshared (UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4 * __this, const RuntimeMethod* method) { { __this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_3_FindMethod_Impl_m28C35DB6F6DBCF1315EC5755FBA0B5DB80822DB7_gshared (UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4 * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { Type_t * L_0 = ___targetObjType1; String_t* L_1 = ___name0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)3); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 1)) }; Type_t * L_8; L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_9 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_6; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) }; Type_t * L_11; L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_10, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_11); MethodInfo_t * L_12; L_12 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_9, /*hidden argument*/NULL); V_0 = (MethodInfo_t *)L_12; goto IL_0038; } IL_0038: { MethodInfo_t * L_13 = V_0; return (MethodInfo_t *)L_13; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_3_GetDelegate_m4D1CD01F37200B3D0525A100BCE71287EA769653_gshared (UnityEvent_3_tA3B30968AC27AD98A85661A91742D94AB4BFF7D4 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { RuntimeObject * L_0 = ___target0; MethodInfo_t * L_1 = ___theFunction1; InvokableCall_3_t6248B520025BF491335E1E2175E578485B570870 * L_2 = (InvokableCall_3_t6248B520025BF491335E1E2175E578485B570870 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_3_t6248B520025BF491335E1E2175E578485B570870 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; goto IL_000b; } IL_000b: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_4__ctor_mAD32A45894B24DF8063BA635592B37EAEAB2C63A_gshared (UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F * __this, const RuntimeMethod* method) { { __this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this); UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_4_FindMethod_Impl_m18804249F2696D07B6E5723A86A95E2A98424E62_gshared (UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; { Type_t * L_0 = ___targetObjType1; String_t* L_1 = ___name0; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)4); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 1)) }; Type_t * L_8; L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_9 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_6; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) }; Type_t * L_11; L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_10, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_11); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_12 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_9; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 3)) }; Type_t * L_14; L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_13, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(3), (Type_t *)L_14); MethodInfo_t * L_15; L_15 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_12, /*hidden argument*/NULL); V_0 = (MethodInfo_t *)L_15; goto IL_0045; } IL_0045: { MethodInfo_t * L_16 = V_0; return (MethodInfo_t *)L_16; } } // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_4_GetDelegate_mCC9B16CF07EAAA26AE65B3BB31CFFC22031EE4A0_gshared (UnityEvent_4_t2D7325679F7C830EC2A1EE20D9A6D86EE1CB630F * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { RuntimeObject * L_0 = ___target0; MethodInfo_t * L_1 = ___theFunction1; InvokableCall_4_t201A5585285FF7B4E8B7C74571F84D14F38008AD * L_2 = (InvokableCall_4_t201A5585285FF7B4E8B7C74571F84D14F38008AD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (InvokableCall_4_t201A5585285FF7B4E8B7C74571F84D14F38008AD *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2; goto IL_000b; } IL_000b: { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0; return (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m12DF2C3A1E0229B1425FB5A762DA6898AF883C48_gshared (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D * __this, TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 V_1; memset((&V_1), 0, sizeof(V_1)); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 V_3; memset((&V_3), 0, sizeof(V_3)); BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_1; L_1 = TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_1; Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 L_2; L_2 = NativeArray_1_GetEnumerator_mFBDFDB583040000D34F8AEBCE6C439868F658865((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_3; L_3 = Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787((Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this); (( void (*) (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF((Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_11; L_11 = TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_11; Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 L_12; L_12 = NativeArray_1_GetEnumerator_mFBDFDB583040000D34F8AEBCE6C439868F658865((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_13; L_13 = Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787((Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this); (( void (*) (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF((Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this); (( void (*) (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m5E868449E8268729E3BE59A096065A96EF80D154_gshared (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D * __this, TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 L_1 = ___changes0; NullCheck((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this); (( void (*) (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *, TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D *)__this, (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_m47925D21FB6931AF2B8EABB086E4B49D12190215((TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m5E868449E8268729E3BE59A096065A96EF80D154_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_m32E5F1F9EECD15CF2B85E3CA2E24BF854EA95DCD_gshared (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m32E5F1F9EECD15CF2B85E3CA2E24BF854EA95DCD_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m32E5F1F9EECD15CF2B85E3CA2E24BF854EA95DCD_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m0298748865D45546EEFD00CF7BB92D650558824B_gshared (ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_mBEBB9A851515C4D0AD8705A5DD6D1C3FCD4C589C_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_t0A73A937EA5DCF1B5AEA1F9BA2E49ECE2A86AD5D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_mAF417F2C089DD826F7532DC57CE46B3389ADE210_gshared (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 * __this, TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 V_1; memset((&V_1), 0, sizeof(V_1)); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 V_3; memset((&V_3), 0, sizeof(V_3)); XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_1; L_1 = TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_1; Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 L_2; L_2 = NativeArray_1_GetEnumerator_mCC9C3B42EFD7AB95BDBCCCA2462D86D635B16A6E((NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_3; L_3 = Enumerator_get_Current_m196B512A19FE41091D8F5751C7FF09E7C4FCA630((Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this); (( void (*) (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_m887E7D2302C8CA4260949FC94B387C3874C845BB((Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_11; L_11 = TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_11; Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 L_12; L_12 = NativeArray_1_GetEnumerator_mCC9C3B42EFD7AB95BDBCCCA2462D86D635B16A6E((NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_13; L_13 = Enumerator_get_Current_m196B512A19FE41091D8F5751C7FF09E7C4FCA630((Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this); (( void (*) (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_m887E7D2302C8CA4260949FC94B387C3874C845BB((Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t81667BDAB19E0C7BDABA4D3BF717CFC9FADD7A01 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this); (( void (*) (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m84F0BFE8C85671F9380F1B579159FEE8235C5C32_gshared (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 * __this, TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B L_1 = ___changes0; NullCheck((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this); (( void (*) (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *, TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 *)__this, (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_m02FC1D1E5BE006D6AA79779E570855B59703C451((TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m84F0BFE8C85671F9380F1B579159FEE8235C5C32_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD8460633C49D563CB4D497FBD69F4D29207E1B27_gshared (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD8460633C49D563CB4D497FBD69F4D29207E1B27_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD8460633C49D563CB4D497FBD69F4D29207E1B27_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_mEE2BF405B5D42065CE1CE20EB1B2ABF0D8FB1A3B_gshared (ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_m23841B08700C4F4F8CC411173C674046B862B942_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_t54B09EAA73511C519270F3A3D46C71C6945CFF67_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m23185B55ED19BF03D8C9F41B8720358F27470E0F_gshared (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 * __this, TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 V_1; memset((&V_1), 0, sizeof(V_1)); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 V_3; memset((&V_3), 0, sizeof(V_3)); XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_1; L_1 = TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_1; Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 L_2; L_2 = NativeArray_1_GetEnumerator_m11C949E47F3AC53AFF1576CCF85F3645497D31CC((NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_3; L_3 = Enumerator_get_Current_m0A4B0CC96F8639258F7B73E779D2961D86B17FAC((Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this); (( void (*) (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_mBD637C9D73C6B837ACA03E136FFDDB70493AF660((Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_11; L_11 = TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_11; Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 L_12; L_12 = NativeArray_1_GetEnumerator_m11C949E47F3AC53AFF1576CCF85F3645497D31CC((NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_13; L_13 = Enumerator_get_Current_m0A4B0CC96F8639258F7B73E779D2961D86B17FAC((Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this); (( void (*) (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_mBD637C9D73C6B837ACA03E136FFDDB70493AF660((Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB678052E2C06B4C111C102E02315B8C43EDF0928 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this); (( void (*) (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m5DDD616EFD6DDABDB36D731FEBF0C099482F3CBC_gshared (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 * __this, TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 L_1 = ___changes0; NullCheck((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this); (( void (*) (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *, TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 *)__this, (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_mF9E20304F9F443424CD3B78D4D3930329A58333F((TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m5DDD616EFD6DDABDB36D731FEBF0C099482F3CBC_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE068AD80BD3C4B6230ECE989DCFEFE738F99372F_gshared (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE068AD80BD3C4B6230ECE989DCFEFE738F99372F_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE068AD80BD3C4B6230ECE989DCFEFE738F99372F_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_mFB5458E8A4EF11E821053CF50F6571F881A5D8C1_gshared (ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRFace>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_m6D44108C27FEAE72CBF5600C4A4CA327D3E18BAE_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_tE7E8E5823C4DD69D84993BF9963788CDF63079E7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m89F6536EBB3F06B9E2298156CBC55283A69A8F3D_gshared (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 * __this, TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 V_1; memset((&V_1), 0, sizeof(V_1)); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 V_3; memset((&V_3), 0, sizeof(V_3)); XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_1; L_1 = TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_1; Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 L_2; L_2 = NativeArray_1_GetEnumerator_mC335F70E2D112EDBB46A2A56E2948FD820EE8AED((NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_3; L_3 = Enumerator_get_Current_m96FE871F7CABF18C196CE48154DF240D8903DE62((Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this); (( void (*) (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_mFF3B9AF82DC77BC9FEDC809CD8DB7E966CAF6304((Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_11; L_11 = TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_11; Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 L_12; L_12 = NativeArray_1_GetEnumerator_mC335F70E2D112EDBB46A2A56E2948FD820EE8AED((NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_13; L_13 = Enumerator_get_Current_m96FE871F7CABF18C196CE48154DF240D8903DE62((Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this); (( void (*) (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_mFF3B9AF82DC77BC9FEDC809CD8DB7E966CAF6304((Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t290D50D0C67A5F1CBA77CAEBCD7727D58153E9E8 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this); (( void (*) (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m98F0A73D71CAA9EF7C61E80E08E8E8F04CDA1F3C_gshared (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 * __this, TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F L_1 = ___changes0; NullCheck((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this); (( void (*) (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *, TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 *)__this, (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_m02C93E25EF9198C86F6ECA358719888505F90FB9((TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m98F0A73D71CAA9EF7C61E80E08E8E8F04CDA1F3C_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_m0F57D6F0EDCD66E0F2C38F34A3FDDB22BE0FA9D7_gshared (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m0F57D6F0EDCD66E0F2C38F34A3FDDB22BE0FA9D7_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m0F57D6F0EDCD66E0F2C38F34A3FDDB22BE0FA9D7_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_mFBD4989E90933DFC07181A1C929C7994F9442C6E_gshared (ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_mD6F3620CECDA77023311A091207922C38EB9820F_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_t0CEC002E34B518D570259B2B659250C08B85D924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m460BD565EE6F199809498DD940D125F32A768D58_gshared (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A * __this, TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA V_1; memset((&V_1), 0, sizeof(V_1)); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A V_3; memset((&V_3), 0, sizeof(V_3)); XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_1; L_1 = TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_1; Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A L_2; L_2 = NativeArray_1_GetEnumerator_m70FA7CCC70CEC018068F004159462919A4DCFD6E((NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_3; L_3 = Enumerator_get_Current_m02EAB0B0A5270DE72E8BB80F19C6635708C57351((Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this); (( void (*) (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_m33B3D18C3492590DA6B8C1C619C46EC24A4DF6C2((Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_11; L_11 = TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_11; Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A L_12; L_12 = NativeArray_1_GetEnumerator_m70FA7CCC70CEC018068F004159462919A4DCFD6E((NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_13; L_13 = Enumerator_get_Current_m02EAB0B0A5270DE72E8BB80F19C6635708C57351((Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this); (( void (*) (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_m33B3D18C3492590DA6B8C1C619C46EC24A4DF6C2((Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t74F5214C646CD03A9AB62FB3BFBA235999B83C9A > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this); (( void (*) (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_mEE56DE981A5F83FC28A0CF62408BAE5EBCD6F3A7_gshared (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A * __this, TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 L_1 = ___changes0; NullCheck((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this); (( void (*) (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *, TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A *)__this, (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_mB0C67A542F990DBAFFFF908C9682AE36C2ED2CA2((TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_mEE56DE981A5F83FC28A0CF62408BAE5EBCD6F3A7_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE1FF92011323A13A1EEAAB7C8C830C64ED8559CB_gshared (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE1FF92011323A13A1EEAAB7C8C830C64ED8559CB_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mE1FF92011323A13A1EEAAB7C8C830C64ED8559CB_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m7D853F6ED4C523A9ABB3B58BEE82D2B8D8350BED_gshared (ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_m7CBCF971792B8DB28ED919334DFA5207D1189435_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_tFE04A00F118A86B6F6D98F35B846A5CB8AE01B9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_mF48C06E32B2DA8D07958F5262A40E0327ED2A279_gshared (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 * __this, TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E V_1; memset((&V_1), 0, sizeof(V_1)); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 V_3; memset((&V_3), 0, sizeof(V_3)); XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_1; L_1 = TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_1; Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 L_2; L_2 = NativeArray_1_GetEnumerator_mC553C46E7E171CD84C35ECAECB93F325E120F9E0((NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_3; L_3 = Enumerator_get_Current_m4F05F7E264598A862E091259499B4A19A590F3BE((Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this); (( void (*) (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_m56157D8C4082C79E45C035BB3F5B5FAC7612A1DE((Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_11; L_11 = TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_11; Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 L_12; L_12 = NativeArray_1_GetEnumerator_mC553C46E7E171CD84C35ECAECB93F325E120F9E0((NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_13; L_13 = Enumerator_get_Current_m4F05F7E264598A862E091259499B4A19A590F3BE((Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this); (( void (*) (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_m56157D8C4082C79E45C035BB3F5B5FAC7612A1DE((Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB15C89C8FD97D72419B5BFC42A634E0C537B8094 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this); (( void (*) (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m9C86A9FF1ECED400114909C5F1D640B4746D5AC5_gshared (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 * __this, TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 L_1 = ___changes0; NullCheck((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this); (( void (*) (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *, TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 *)__this, (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_mA17A69073E206693F40213557DFD6FE47DFC2D9D((TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m9C86A9FF1ECED400114909C5F1D640B4746D5AC5_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD01A987AC67DEAA4FDF8FC6EEE5776D4730CC1A3_gshared (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD01A987AC67DEAA4FDF8FC6EEE5776D4730CC1A3_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_mD01A987AC67DEAA4FDF8FC6EEE5776D4730CC1A3_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m2B83AFDDF14C887B322B64206149E3C315E171D4_gshared (ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_mCF4D8F843706AB780980174318B08A64E02DECB2_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_tF02578738E7F1C64307A7D5782F7DC213B88F509_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_mC0B2990AA77947796F82F1EAF19E8C7690EA349C_gshared (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 * __this, TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 V_1; memset((&V_1), 0, sizeof(V_1)); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 V_3; memset((&V_3), 0, sizeof(V_3)); XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_1; L_1 = TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_1; Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 L_2; L_2 = NativeArray_1_GetEnumerator_mEA08BCE196F354D2DF1D87A4A268A1167331E882((NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_3; L_3 = Enumerator_get_Current_mCE55C5A0F102F48E3FE385D8221ADA709517D5C1((Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this); (( void (*) (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_m7968B0F5348FF40310E60F5BBE36DD03B240DA0C((Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_11; L_11 = TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_11; Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 L_12; L_12 = NativeArray_1_GetEnumerator_mEA08BCE196F354D2DF1D87A4A268A1167331E882((NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_13; L_13 = Enumerator_get_Current_mCE55C5A0F102F48E3FE385D8221ADA709517D5C1((Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this); (( void (*) (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_m7968B0F5348FF40310E60F5BBE36DD03B240DA0C((Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_tB9C99C91DF1DF93B1F99A367FE32BDB532283A55 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this); (( void (*) (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_mF35D346E766EDEF05AF351EA507500177F415181_gshared (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 * __this, TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 L_1 = ___changes0; NullCheck((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this); (( void (*) (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *, TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 *)__this, (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_m5704EAB10EAE46268EE1A895584A2517FD0018B7((TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_mF35D346E766EDEF05AF351EA507500177F415181_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_m48539F6C605F71C1E85435FBAAA2C3A815651DC4_gshared (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m48539F6C605F71C1E85435FBAAA2C3A815651DC4_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m48539F6C605F71C1E85435FBAAA2C3A815651DC4_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m311AF6E5C3B5A997ABEEEAD6A888A4F00250FEAE_gshared (ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_mA6379EAD177302D323B8EA2ED8C4D02DD44C6927_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_tBCCD276EA98C427C085DD402C892FC2889129C72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m5E931789A1D093443A4E89018B6D4E7543FC6D61_gshared (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 * __this, TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F V_1; memset((&V_1), 0, sizeof(V_1)); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD V_3; memset((&V_3), 0, sizeof(V_3)); XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_1; L_1 = TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_1; Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD L_2; L_2 = NativeArray_1_GetEnumerator_mDC26D1E9A69C3FC30E5AA29DA885731E65303F3C((NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_3; L_3 = Enumerator_get_Current_m27E7BD3D26A3B5A99C5E44AECBB644D6DCF67E11((Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this); (( void (*) (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_m0AC428F77B6087B387128665E76CE539E7CDCEFD((Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_11; L_11 = TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_11; Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD L_12; L_12 = NativeArray_1_GetEnumerator_mDC26D1E9A69C3FC30E5AA29DA885731E65303F3C((NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_13; L_13 = Enumerator_get_Current_m27E7BD3D26A3B5A99C5E44AECBB644D6DCF67E11((Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this); (( void (*) (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_m0AC428F77B6087B387128665E76CE539E7CDCEFD((Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t5A4C23C877F9AC1D4BF15AB7555BA7A5D23D61BD > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this); (( void (*) (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_mCD9F489F5557B6B262FD73A3A21DE7284F5688F7_gshared (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 * __this, TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 L_1 = ___changes0; NullCheck((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this); (( void (*) (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *, TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 *)__this, (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_mBE123DD4F53763A6FD649AEC270129813A013051((TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_mCD9F489F5557B6B262FD73A3A21DE7284F5688F7_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_m787605224883C184731D043B9B78E6CA9C11F4C6_gshared (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m787605224883C184731D043B9B78E6CA9C11F4C6_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m787605224883C184731D043B9B78E6CA9C11F4C6_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m759417B7122C245A4DF91BE41C67AE5EBCDD747C_gshared (ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_m313C4381320144185D7E1062F8DCA419F20F31BB_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_t5547C3D558C7DDA77BF0A0EDF5D0451A3E463216_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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 UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::ValidateAndThrow(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndThrow_m1BBD1581690C1D857A2369A2A9F8CB3757F7CA46_gshared (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 * __this, TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 V_0; memset((&V_0), 0, sizeof(V_0)); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 V_1; memset((&V_1), 0, sizeof(V_1)); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 V_2; memset((&V_2), 0, sizeof(V_2)); Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 V_3; memset((&V_3), 0, sizeof(V_3)); XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 V_4; memset((&V_4), 0, sizeof(V_4)); Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 V_5; memset((&V_5), 0, sizeof(V_5)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 V_6; memset((&V_6), 0, sizeof(V_6)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { // s_IdSet.Clear(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, /*hidden argument*/HashSet_1_Clear_m0AABF2D961757301BB8C90CFE9F6E7DB57DF8CC8_RuntimeMethod_var); // foreach (var trackable in changes.added) NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_1; L_1 = TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); V_1 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_1; Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 L_2; L_2 = NativeArray_1_GetEnumerator_m9C750641C453BB3F3DEDE6ED32B0D13EB11A4410((NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 )L_2; } IL_001d: try { // begin try (depth: 1) { goto IL_005c; } IL_001f: { // foreach (var trackable in changes.added) XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_3; L_3 = Enumerator_get_Current_m2B4C0D5C55F2993CD773DA8C4FCD17E79F112DF7((Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_2 = (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_3; // AddToSetAndThrowIfDuplicate(trackable.trackableId, false, k_AddedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4; L_4 = XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_5 = ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_AddedAction_1(); NullCheck((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this); (( void (*) (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4, (bool)0, (String_t*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Add(trackable.trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_6 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7; L_7 = XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(&V_2), /*hidden argument*/NULL); NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6); bool L_8; L_8 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_6, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_7, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); } IL_005c: { // foreach (var trackable in changes.added) bool L_9; L_9 = Enumerator_MoveNext_mFDD801DDDE9811DB41E817B5A00940E46CA8F692((Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_9) { goto IL_001f; } } IL_0065: { IL2CPP_LEAVE(0x76, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 > L_10(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__111 = il2cpp_codegen_get_interface_invoke_data(0, (&L_10), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__111.methodPtr)((RuntimeObject*)(&L_10), /*hidden argument*/il2cpp_virtual_invoke_data__111.method); V_0 = L_10.m_Value; IL2CPP_END_FINALLY(103) } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x76, IL_0076) } IL_0076: { // foreach (var trackable in changes.updated) NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_11; L_11 = TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_1 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_11; Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 L_12; L_12 = NativeArray_1_GetEnumerator_m9C750641C453BB3F3DEDE6ED32B0D13EB11A4410((NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 )L_12; } IL_0087: try { // begin try (depth: 1) { goto IL_00ac; } IL_0089: { // foreach (var trackable in changes.updated) XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_13; L_13 = Enumerator_get_Current_m2B4C0D5C55F2993CD773DA8C4FCD17E79F112DF7((Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); V_4 = (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_13; // AddToSetAndThrowIfDuplicate(trackable.trackableId, true, k_UpdatedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_14; L_14 = XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)(&V_4), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_15 = ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_UpdatedAction_2(); NullCheck((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this); (( void (*) (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_14, (bool)1, (String_t*)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_00ac: { // foreach (var trackable in changes.updated) bool L_16; L_16 = Enumerator_MoveNext_mFDD801DDDE9811DB41E817B5A00940E46CA8F692((Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 *)(&V_3), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (L_16) { goto IL_0089; } } IL_00b5: { IL2CPP_LEAVE(0xC6, FINALLY_00b7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b7; } FINALLY_00b7: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t7A78D5C1D04A3D5710FB2E25ED00CEAC9F89C608 > L_17(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), (&V_3)); const VirtualInvokeData& il2cpp_virtual_invoke_data__191 = il2cpp_codegen_get_interface_invoke_data(0, (&L_17), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__191.methodPtr)((RuntimeObject*)(&L_17), /*hidden argument*/il2cpp_virtual_invoke_data__191.method); V_3 = L_17.m_Value; IL2CPP_END_FINALLY(183) } // end finally (depth: 1) IL2CPP_CLEANUP(183) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { // foreach (var trackableId in changes.removed) NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_18; L_18 = TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); V_6 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_18; Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 L_19; L_19 = NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(&V_6), /*hidden argument*/NativeArray_1_GetEnumerator_m926DCB1830E23BD5D57BCDD52E6A86E480FEC6D7_RuntimeMethod_var); V_5 = (Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 )L_19; } IL_00d9: try { // begin try (depth: 1) { goto IL_0103; } IL_00db: { // foreach (var trackableId in changes.removed) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_20; L_20 = Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_get_Current_m782902071307835783D83355770847ABDB86D315_RuntimeMethod_var); V_7 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_20; // AddToSetAndThrowIfDuplicate(trackableId, true, k_RemovedAction); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_21 = V_7; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); String_t* L_22 = ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_k_RemovedAction_3(); NullCheck((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this); (( void (*) (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , bool, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_21, (bool)1, (String_t*)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); // m_Trackables.Remove(trackableId); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_23 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_24 = V_7; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23); bool L_25; L_25 = HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_23, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_24, /*hidden argument*/HashSet_1_Remove_m2A8433B5EB2D0C50DD504E0160D660489AF5C41C_RuntimeMethod_var); } IL_0103: { // foreach (var trackableId in changes.removed) bool L_26; L_26 = Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA((Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m48AAD63EDC9476C7D2B5AC1055805D75F60E7BCA_RuntimeMethod_var); if (L_26) { goto IL_00db; } } IL_010c: { IL2CPP_LEAVE(0x11D, FINALLY_010e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_010e; } FINALLY_010e: { // begin finally (depth: 1) Il2CppFakeBox<Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167 > L_27(Enumerator_t560309D80D87BEAFE26F66983D52ACA4110BB167_il2cpp_TypeInfo_var, (&V_5)); const VirtualInvokeData& il2cpp_virtual_invoke_data__278 = il2cpp_codegen_get_interface_invoke_data(0, (&L_27), IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); (( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_virtual_invoke_data__278.methodPtr)((RuntimeObject*)(&L_27), /*hidden argument*/il2cpp_virtual_invoke_data__278.method); V_5 = L_27.m_Value; IL2CPP_END_FINALLY(270) } // end finally (depth: 1) IL2CPP_CLEANUP(270) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11D, IL_011d) } IL_011d: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::ValidateAndDisposeIfThrown(UnityEngine.XR.ARSubsystems.TrackableChanges`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_ValidateAndDisposeIfThrown_m12993BF315EBE8991042EB476E9FE229BE8E03C2_gshared (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 * __this, TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 ___changes0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561); s_Il2CppMethodInitialized = true; } ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets; { } IL_0001: try { // begin try (depth: 1) { // using (new ScopedProfiler("ValidateTrackableChanges")) ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E L_0; memset((&L_0), 0, sizeof(L_0)); ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((&L_0), (String_t*)_stringLiteral4C79343CCFF8116F7E4B034A1449CE4FCED19561, /*hidden argument*/NULL); V_0 = (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E )L_0; } IL_000d: try { // begin try (depth: 2) // ValidateAndThrow(changes); TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 L_1 = ___changes0; NullCheck((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this); (( void (*) (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *, TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 *)__this, (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); IL2CPP_LEAVE(0x26, FINALLY_0017); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 2) ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 2) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26, IL_0026) } IL_0026: { goto IL_0035; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0029; } throw e; } CATCH_0029: { // begin catch(System.Object) // catch // changes.Dispose(); TrackableChanges_1_Dispose_m1C53FB40CB00102300FED9D8CB3EF6B25EBCEAFC((TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *)(&___changes0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_ValidateAndDisposeIfThrown_m12993BF315EBE8991042EB476E9FE229BE8E03C2_RuntimeMethod_var))); } // end catch (depth: 1) IL_0035: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::AddToSetAndThrowIfDuplicate(UnityEngine.XR.ARSubsystems.TrackableId,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1_AddToSetAndThrowIfDuplicate_m9B4C31FFF4A30D3199474599D010604E7B66A247_gshared (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, bool ___shouldBeInDictionary1, String_t* ___action2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* G_B5_0 = NULL; RuntimeObject * G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B4_0 = NULL; RuntimeObject * G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B6_0 = NULL; String_t* G_B6_1 = NULL; RuntimeObject * G_B6_2 = NULL; String_t* G_B6_3 = NULL; { // if (!s_IdSet.Add(trackableId)) IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get_s_IdSet_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0); bool L_2; L_2 = HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_0, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_1, /*hidden argument*/HashSet_1_Add_mDCB30735EBFA9B15A42A02575BB6E2AE385D20BA_RuntimeMethod_var); V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (!L_3) { goto IL_002a; } } { // throw new InvalidOperationException( // string.Format( // "Trackable {0} being {1} this frame has at least one other action associated with it.", // trackableId, action)); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_5); String_t* L_7 = ___action2; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral474AADAFCB402B86D36E9A61F27FC1738F1299B3)), (RuntimeObject *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m9B4C31FFF4A30D3199474599D010604E7B66A247_RuntimeMethod_var))); } IL_002a: { // if (m_Trackables.Contains(trackableId) != shouldBeInDictionary) HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_10 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)__this->get_m_Trackables_4(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_11 = ___trackableId0; NullCheck((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10); bool L_12; L_12 = HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A((HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)L_10, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_11, /*hidden argument*/HashSet_1_Contains_m4FAE484EAEFE9918B79DE8841A20B2BB8EED295A_RuntimeMethod_var); bool L_13 = ___shouldBeInDictionary1; V_1 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_14 = V_1; if (!L_14) { goto IL_0066; } } { // throw new InvalidOperationException(string.Format( // "Trackable {0} is being {1} but is {2} in the list of trackables.", // trackableId, action, shouldBeInDictionary ? "not" : "already")); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_15 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_16 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_15; RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_16); String_t* L_18 = ___action2; bool L_19 = ___shouldBeInDictionary1; G_B4_0 = L_18; G_B4_1 = L_17; G_B4_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); if (L_19) { G_B5_0 = L_18; G_B5_1 = L_17; G_B5_2 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD484B1230DA1DE4901DD26335947B7E7CEF798A3)); goto IL_0056; } } { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB4D04D923105799A589A78105C1040193446586)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_005b; } IL_0056: { G_B6_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB)); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_005b: { String_t* L_20; L_20 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6((String_t*)G_B6_3, (RuntimeObject *)G_B6_2, (RuntimeObject *)G_B6_1, (RuntimeObject *)G_B6_0, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_21 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_21, (String_t*)L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationUtility_1_AddToSetAndThrowIfDuplicate_m9B4C31FFF4A30D3199474599D010604E7B66A247_RuntimeMethod_var))); } IL_0066: { // } return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__ctor_m4F661EF4FD7D46392C0A7910868B4CDEB7F9B117_gshared (ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // HashSet<TrackableId> m_Trackables = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); __this->set_m_Trackables_4(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.XR.ARSubsystems.ValidationUtility`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtility_1__cctor_m19C3346E9E43C83382E25DD49FFCD9D0072CDF8D_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); s_Il2CppMethodInitialized = true; } { // static HashSet<TrackableId> s_IdSet = new HashSet<TrackableId>(); HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D * L_0 = (HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D *)il2cpp_codegen_object_new(HashSet_1_tCA3BCAE971D6F191B23F0598A5CA37D9DE9A450D_il2cpp_TypeInfo_var); HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1(L_0, /*hidden argument*/HashSet_1__ctor_m8D881CFD05A303301F1BA4A20F78F56F404C43C1_RuntimeMethod_var); ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_IdSet_0(L_0); // static readonly string k_AddedAction = "added"; ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_AddedAction_1(_stringLiteral65C1C19C5DCE012B3F039737BBD66B69DDD21B86); // static readonly string k_UpdatedAction = "updated"; ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_UpdatedAction_2(_stringLiteral31AF3B46A9C24926F0A4D3B78C9A7DD2500DACFE); // static readonly string k_RemovedAction = "removed"; ((ValidationUtility_1_tA4A200B979ADABF868CB235BCF17EE8F599A2C44_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_k_RemovedAction_3(_stringLiteralB008A4D70C23C4CA7F12FC5053B5803ECA08C362); 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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mBC6C3A93057F43AEFF153AF8672A7B6C740F4B22_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m01E200C1FB3F55B09E3574FC48F40F10B091D10D_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m0F6276D7AD48BD293B9E4274685242F3E26C8D8A_gshared (ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * __this, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m6F0E3B36600B4793FFCA63DC2AF15F32EFC7C13B_gshared (ValueCollection_t717796FB49620F46508DE171A43D148E5CAC0101 * __this, const RuntimeMethod* method) { { Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA * L_0 = (Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t2B5C2948D35C014478CA4F20AAD1D04720D764DA *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m985BCA61A2A06A9168547247414618602BB457DC_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mF19B1FB9B0DD226A0E7C38405ACB31C13FEC28AD_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mDA6619EBB6B0BD3D75007074361B37FA352CD73F_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mB2216A3861ABC2AF4B17D02AD7011D2DEEB2AEF9_gshared (ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * __this, const RuntimeMethod* method) { { Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (int32_t)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.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList__ctor_mA1959C8806FD793BA7F75728EDB2A8BC1F8B9C6A_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = ___dictionary0; __this->set__dict_0(L_0); return; } } // System.Int32 System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueList_get_Count_m7E6989C8A5AFBE2E0FAAF973725FB41C197644D3_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck(L_0); int32_t L_1 = (int32_t)L_0->get__size_2(); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_get_IsReadOnly_mD5F886B93A6C469BC94022293D030AEF7EAE7AF8_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Add_mA868EA144DB2B813E52858FCE00E7308EC56D479_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Add_mA868EA144DB2B813E52858FCE00E7308EC56D479_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Clear_m855B464EBAC8C952681D824F4C86D6D240BC92F0_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Clear_m855B464EBAC8C952681D824F4C86D6D240BC92F0_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_Contains_mF1C372A86187051529AF63994FCCD246DC945DAE_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); RuntimeObject * L_1 = ___value0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0); bool L_2; L_2 = (( bool (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (bool)L_2; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_CopyTo_m7AB0B04BD2E473CF43AE7CE73629E10DBE576DDE_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0->get_values_1(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___array0; int32_t L_3 = ___arrayIndex1; SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_4 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_4); int32_t L_5; L_5 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)L_3, (int32_t)L_5, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_System_Collections_ICollection_CopyTo_mB1FCE0C1AE93514AF57AE589690BDF59A5F7B7D9_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_001c; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2; L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_001c; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_System_Collections_ICollection_CopyTo_mB1FCE0C1AE93514AF57AE589690BDF59A5F7B7D9_RuntimeMethod_var))); } IL_001c: { } IL_001d: try { // begin try (depth: 1) SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_4 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck(L_4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_4->get_values_1(); RuntimeArray * L_6 = ___array0; int32_t L_7 = ___index1; SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_8 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_8); int32_t L_9; L_9 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_9, /*hidden argument*/NULL); goto IL_004e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_003d: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_10, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_System_Collections_ICollection_CopyTo_mB1FCE0C1AE93514AF57AE589690BDF59A5F7B7D9_RuntimeMethod_var))); } // end catch (depth: 1) IL_004e: { return; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::Insert(System.Int32,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Insert_m1AB2E5F947710A95F1BA43456117C68B757C3790_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Insert_m1AB2E5F947710A95F1BA43456117C68B757C3790_RuntimeMethod_var))); } } // TValue System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueList_get_Item_m7EF0D0A340599D663D795D60501E5C994E1564A4_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, int32_t ___index0, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); int32_t L_1 = ___index0; NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0); RuntimeObject * L_2; L_2 = (( RuntimeObject * (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)L_2; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::set_Item(System.Int32,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_set_Item_mA78D7F0F2DF49C6F8215C1A7B871FFC6D44493BA_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_set_Item_mA78D7F0F2DF49C6F8215C1A7B871FFC6D44493BA_RuntimeMethod_var))); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueList_GetEnumerator_mA4043BC2F3B66EA9961CE8DB8A8D2EC211E738A6_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * L_1 = (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 *, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueList_System_Collections_IEnumerable_GetEnumerator_m046D93E98E0BB0737522322FF0E050B21FC0F135_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 * L_1 = (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (SortedListValueEnumerator_t3DD9939FB8EBF9AC5E66ECC8223CE188C666F838 *, SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (RuntimeObject*)L_1; } } // System.Int32 System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::IndexOf(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueList_IndexOf_m033D314470332F40D5C62902A664A98E47916B65_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_0 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0->get_values_1(); RuntimeObject * L_2 = ___value0; SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 * L_3 = (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)__this->get__dict_0(); NullCheck((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_3); int32_t L_4; L_4 = (( int32_t (*) (SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_t24779EF2FE8C87E99D9FE00F3E49EB1BD886BDF0 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t L_5; L_5 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1, (RuntimeObject *)L_2, (int32_t)0, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return (int32_t)L_5; } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_Remove_m7FB4206E1E278B7458191E5CC816ED23EB517534_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Remove_m7FB4206E1E278B7458191E5CC816ED23EB517534_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.SortedList`2/ValueList<System.Object,System.Object>::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_RemoveAt_mE1515877EFCCABCBB7B5B7D4D6DEB0A5E075CF48_gshared (ValueList_t17186FF49B6D0EB4E1697C6181E75661ED339940 * __this, int32_t ___index0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_RemoveAt_mE1515877EFCCABCBB7B5B7D4D6DEB0A5E075CF48_RuntimeMethod_var))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::.ctor(System.Collections.Generic.SortedList`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList__ctor_m35276CCDAA3170EBDD935CB0B31CAF5038364307_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = ___dictionary0; __this->set__dict_0(L_0); return; } } // System.Int32 System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueList_get_Count_m99DC7D2C701935EDE06433F5B41DE352943CAB6B_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck(L_0); int32_t L_1 = (int32_t)L_0->get__size_2(); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_get_IsReadOnly_m2BC2F609E676482B932FD23007E05D5DF8F43AAE_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Add_mEDFAA24C8377C6686846F171F13A4738C572B34C_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Add_mEDFAA24C8377C6686846F171F13A4738C572B34C_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Clear_mBDFD3F15403638E3705A3A5FB5B4726EB4DD1E1E_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Clear_mBDFD3F15403638E3705A3A5FB5B4726EB4DD1E1E_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_Contains_m25C703E84677DDF5DF666C094B5AB1214DD78F39_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); RuntimeObject * L_1 = ___value0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0); bool L_2; L_2 = (( bool (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (bool)L_2; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_CopyTo_mD4FBF161842060267625FE6D1706D3B3071BCFD6_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0->get_values_1(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___array0; int32_t L_3 = ___arrayIndex1; SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_4 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_4); int32_t L_5; L_5 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)L_3, (int32_t)L_5, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_System_Collections_ICollection_CopyTo_mC671FCAF39ED4A98F33DBBACC517C1E1915E5D96_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_001c; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2; L_2 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_001c; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_System_Collections_ICollection_CopyTo_mC671FCAF39ED4A98F33DBBACC517C1E1915E5D96_RuntimeMethod_var))); } IL_001c: { } IL_001d: try { // begin try (depth: 1) SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_4 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck(L_4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_4->get_values_1(); RuntimeArray * L_6 = ___array0; int32_t L_7 = ___index1; SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_8 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_8); int32_t L_9; L_9 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_9, /*hidden argument*/NULL); goto IL_004e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_003d: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_10, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8)), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_System_Collections_ICollection_CopyTo_mC671FCAF39ED4A98F33DBBACC517C1E1915E5D96_RuntimeMethod_var))); } // end catch (depth: 1) IL_004e: { return; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Insert(System.Int32,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_Insert_m8236530EE2C1F4DF70CC78C09641213202543B8D_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Insert_m8236530EE2C1F4DF70CC78C09641213202543B8D_RuntimeMethod_var))); } } // TValue System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueList_get_Item_mFC16394BCC26B1544FFA559CB9C33B8E3673904E_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, int32_t ___index0, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); int32_t L_1 = ___index0; NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0); RuntimeObject * L_2; L_2 = (( RuntimeObject * (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)L_2; } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::set_Item(System.Int32,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_set_Item_mC1C2DF772219861FD6D6C77E2E4ED58E43A3D990_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_set_Item_mC1C2DF772219861FD6D6C77E2E4ED58E43A3D990_RuntimeMethod_var))); } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueList_GetEnumerator_m917CB0572FAA9806CCEBD17A15307E3620972937_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * L_1 = (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 *, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueList_System_Collections_IEnumerable_GetEnumerator_mBE8C836112D2F86587E748A624AEA02C909B4F75_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 * L_1 = (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (SortedListValueEnumerator_tFC6F404C05E497B235723FE6A39B17DCFA6730D5 *, SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (RuntimeObject*)L_1; } } // System.Int32 System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::IndexOf(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueList_IndexOf_m25C0CC9EC9530052EE14BB4DBB3D0428B351202F_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_0 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck(L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0->get_values_1(); RuntimeObject * L_2 = ___value0; SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 * L_3 = (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)__this->get__dict_0(); NullCheck((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_3); int32_t L_4; L_4 = (( int32_t (*) (SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((SortedList_2_tE05AAF00C60A7522E7433E50C20E0E612FC4A230 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t L_5; L_5 = (( int32_t (*) (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_1, (RuntimeObject *)L_2, (int32_t)0, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return (int32_t)L_5; } } // System.Boolean System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueList_Remove_m45733D09CEC292C4EBBB1D6127FAC8C9F1E903C7_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_Remove_m45733D09CEC292C4EBBB1D6127FAC8C9F1E903C7_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.SortedList`2/ValueList<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueList_RemoveAt_m6F65C121FB1F918308DCA8ED173593EBB684E1D2_gshared (ValueList_t43FE6AB52ED1D68A42D8886E575982F56D26450A * __this, int32_t ___index0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF6BE20E7F21F6ABBCCCC9C9616F2820A3C5432)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueList_RemoveAt_m6F65C121FB1F918308DCA8ED173593EBB684E1D2_RuntimeMethod_var))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); int32_t L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2; L_2 = ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return (bool)L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0; L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4; L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_5; L_5 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); int32_t L_6 = (int32_t)__this->get_Item2_1(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_7 = ___other0; int32_t L_8 = (int32_t)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5); bool L_9; L_9 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5, (int32_t)L_6, (int32_t)L_8); return (bool)L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11; L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; int32_t L_13 = (int32_t)__this->get_Item2_1(); int32_t L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_16 = V_0; int32_t L_17 = (int32_t)L_16.get_Item2_1(); int32_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20; L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return (bool)L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = (*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10; L_10 = ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0; L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4; L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return (int32_t)L_6; } IL_001c: { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7; L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); int32_t L_8 = (int32_t)__this->get_Item2_1(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_9 = ___other0; int32_t L_10 = (int32_t)L_9.get_Item2_1(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7); int32_t L_11; L_11 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7, (int32_t)L_8, (int32_t)L_10); return (int32_t)L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = (*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18; L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return (int32_t)L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; int32_t L_22 = (int32_t)__this->get_Item2_1(); int32_t L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_25 = V_0; int32_t L_26 = (int32_t)L_25.get_Item2_1(); int32_t L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29; L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return (int32_t)L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4; L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { int32_t* L_5 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { int32_t L_7 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9; L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10; L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA(_thisAdjusted, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1; L_1 = ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return (int32_t)L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4; L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; int32_t L_6 = (int32_t)__this->get_Item2_1(); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9; L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10; L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7; L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; int32_t* L_10 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { int32_t L_12 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14; L_14 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16; L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return (String_t*)L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); String_t* _returnValue; _returnValue = ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57(_thisAdjusted, method); return _returnValue; } #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.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); bool L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2; L_2 = ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return (bool)L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0; L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4; L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_5; L_5 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); bool L_6 = (bool)__this->get_Item2_1(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_7 = ___other0; bool L_8 = (bool)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5); bool L_9; L_9 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5, (bool)L_6, (bool)L_8); return (bool)L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7; L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; bool L_9 = (bool)__this->get_Item2_1(); bool L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_10); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_12 = V_0; bool L_13 = (bool)L_12.get_Item2_1(); bool L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); NullCheck((RuntimeObject*)L_8); bool L_16; L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15); return (bool)L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = (*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_3 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10; L_10 = ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0; L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4; L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return (int32_t)L_6; } IL_001c: { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_7; L_7 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); bool L_8 = (bool)__this->get_Item2_1(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_9 = ___other0; bool L_10 = (bool)L_9.get_Item2_1(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7); int32_t L_11; L_11 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7, (bool)L_8, (bool)L_10); return (int32_t)L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = (*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_3 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14; L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return (int32_t)L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; bool L_18 = (bool)__this->get_Item2_1(); bool L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_19); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_21 = V_0; bool L_22 = (bool)L_21.get_Item2_1(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); NullCheck((RuntimeObject*)L_17); int32_t L_25; L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_20, (RuntimeObject *)L_24); return (int32_t)L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; bool V_1 = false; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4; L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { bool* L_5 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { bool L_7 = (*(bool*)G_B5_0); V_1 = (bool)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9; L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10; L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5(_thisAdjusted, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1; L_1 = ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return (int32_t)L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; bool L_4 = (bool)__this->get_Item2_1(); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_5); NullCheck((RuntimeObject*)L_3); int32_t L_7; L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6); int32_t L_8; L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL); return (int32_t)L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; bool* L_10 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { bool L_12 = (*(bool*)G_B5_0); V_1 = (bool)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14; L_14 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16; L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return (String_t*)L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); String_t* _returnValue; _returnValue = ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561(_thisAdjusted, method); return _returnValue; } #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.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2; L_2 = ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return (bool)L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0; L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4; L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5; L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9; L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); return (bool)L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7; L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_10 = V_0; RuntimeObject * L_11 = (RuntimeObject *)L_10.get_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12; L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); return (bool)L_12; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); bool _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = (*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_3 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10; L_10 = ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0; L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4; L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return (int32_t)L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7; L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11; L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); return (int32_t)L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (int32_t)1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = (*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_3 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5; L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7; L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96)), (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_RuntimeMethod_var))); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14; L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return (int32_t)L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; RuntimeObject * L_18 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_19 = V_0; RuntimeObject * L_20 = (RuntimeObject *)L_19.get_Item2_1(); NullCheck((RuntimeObject*)L_17); int32_t L_21; L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_18, (RuntimeObject *)L_20); return (int32_t)L_21; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB(_thisAdjusted, ___other0, ___comparer1, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4; L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10; L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return (int32_t)L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16(_thisAdjusted, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1; L_1 = ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return (int32_t)L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5; L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); int32_t L_6; L_6 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_5, /*hidden argument*/NULL); return (int32_t)L_6; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); int32_t _returnValue; _returnValue = ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27(_thisAdjusted, ___comparer0, method); return _returnValue; } // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14; L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16; L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return (String_t*)L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); String_t* _returnValue; _returnValue = ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA(_thisAdjusted, method); return _returnValue; } #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.Linq.Enumerable/WhereArrayIterator`1<System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereArrayIterator_1__ctor_m5358A7C3085BC8A103D9793A6D2FCB7E36A2D2CE_gshared (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method) { { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); (( void (*) (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___source0; __this->set_source_3(L_0); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = ___predicate1; __this->set_predicate_4(L_1); return; } } // System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 * WhereArrayIterator_1_Clone_m2CF9FC5638704567A64DC86DD674EB4E6F380F79_gshared (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * L_2 = (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)L_2; } } // System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereArrayIterator_1_MoveNext_m37A95072CA5380DE7F2D6B57990507C92F045BB3_gshared (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; { int32_t L_0 = (int32_t)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->get_state_1(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0058; } } { goto IL_0042; } IL_000b: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_source_3(); int32_t L_2 = (int32_t)__this->get_index_5(); NullCheck(L_1); int32_t L_3 = L_2; RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_0 = (RuntimeObject *)L_4; int32_t L_5 = (int32_t)__this->get_index_5(); __this->set_index_5(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_6 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); RuntimeObject * L_7 = V_0; NullCheck((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_6); bool L_8; L_8 = (( bool (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); if (!L_8) { goto IL_0042; } } { RuntimeObject * L_9 = V_0; ((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->set_current_2(L_9); return (bool)1; } IL_0042: { int32_t L_10 = (int32_t)__this->get_index_5(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_source_3(); NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))) { goto IL_000b; } } { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); } IL_0058: { return (bool)0; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereArrayIterator_1_Where_m294488B1E62E494973DD4880121A17A0C8A08118_gshared (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * __this, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate0, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_2 = ___predicate0; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_3; L_3 = (( Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 * L_4 = (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereArrayIterator_1_t7D84D638EB94F5CC3BE1B29D8FC781CA8CD15A86 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (RuntimeObject*)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 // System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereEnumerableIterator_1__ctor_mE8BFA73027409E16668838C4664CE7C48F3254DF_gshared (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * __this, RuntimeObject* ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method) { { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); (( void (*) (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_0 = ___source0; __this->set_source_3(L_0); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = ___predicate1; __this->set_predicate_4(L_1); return; } } // System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 * WhereEnumerableIterator_1_Clone_mD8AFDE4531ADC466665EEE89C052BFF645C1BDD6_gshared (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * L_2 = (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 *, RuntimeObject*, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)L_2; } } // System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereEnumerableIterator_1_Dispose_m4E1339513102BB6B49AD33EDB569D3FFD24ED023_gshared (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = (RuntimeObject*)__this->get_enumerator_5(); if (!L_0) { goto IL_0013; } } { RuntimeObject* L_1 = (RuntimeObject*)__this->get_enumerator_5(); NullCheck((RuntimeObject*)L_1); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, (RuntimeObject*)L_1); } IL_0013: { __this->set_enumerator_5((RuntimeObject*)NULL); NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); (( void (*) (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereEnumerableIterator_1_MoveNext_m6D8A420AEB325BF252721010781EF31CF64D73FF_gshared (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; { int32_t L_0 = (int32_t)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->get_state_1(); V_0 = (int32_t)L_0; int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0011; } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_004e; } } { goto IL_0061; } IL_0011: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_source_3(); NullCheck((RuntimeObject*)L_3); RuntimeObject* L_4; L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3); __this->set_enumerator_5(L_4); ((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->set_state_1(2); goto IL_004e; } IL_002b: { RuntimeObject* L_5 = (RuntimeObject*)__this->get_enumerator_5(); NullCheck((RuntimeObject*)L_5); RuntimeObject * L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5); V_1 = (RuntimeObject *)L_6; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_7 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); RuntimeObject * L_8 = V_1; NullCheck((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_7); bool L_9; L_9 = (( bool (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (!L_9) { goto IL_004e; } } { RuntimeObject * L_10 = V_1; ((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->set_current_2(L_10); return (bool)1; } IL_004e: { RuntimeObject* L_11 = (RuntimeObject*)__this->get_enumerator_5(); NullCheck((RuntimeObject*)L_11); bool L_12; L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, (RuntimeObject*)L_11); if (L_12) { goto IL_002b; } } { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); } IL_0061: { return (bool)0; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereEnumerableIterator_1_Where_m4016C553BF1DF1102C2A7B769244B2DC2EA3E716_gshared (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * __this, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_2 = ___predicate0; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_3; L_3 = (( Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 * L_4 = (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereEnumerableIterator_1_t1E9FDCFD8F8136C6A5A5740C1E093EF03F0B5CE0 *, RuntimeObject*, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (RuntimeObject*)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 // System.Void System.Linq.Enumerable/WhereListIterator`1<System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereListIterator_1__ctor_m3EB9274A8CE9B71A41BA4B8E9E22D9735713DFA3_gshared (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method) { { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); (( void (*) (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = ___source0; __this->set_source_3(L_0); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = ___predicate1; __this->set_predicate_4(L_1); return; } } // System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 * WhereListIterator_1_Clone_mF7E182440FC39477FC20CA48E0FAB270FED512F4_gshared (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * __this, const RuntimeMethod* method) { { List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * L_2 = (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD *, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)L_2; } } // System.Boolean System.Linq.Enumerable/WhereListIterator`1<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereListIterator_1_MoveNext_m11D0FD0206FC9B236608A1150FB26790BA09B2E5_gshared (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * __this, const RuntimeMethod* method) { int32_t V_0 = 0; RuntimeObject * V_1 = NULL; { int32_t L_0 = (int32_t)((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->get_state_1(); V_0 = (int32_t)L_0; int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0011; } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_004e; } } { goto IL_0061; } IL_0011: { List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_3 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_source_3(); NullCheck((List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)L_3); Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 L_4; L_4 = (( Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); __this->set_enumerator_5(L_4); ((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->set_state_1(2); goto IL_004e; } IL_002b: { Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * L_5 = (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)__this->get_address_of_enumerator_5(); RuntimeObject * L_6; L_6 = Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_inline((Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_1 = (RuntimeObject *)L_6; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_7 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); RuntimeObject * L_8 = V_1; NullCheck((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_7); bool L_9; L_9 = (( bool (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); if (!L_9) { goto IL_004e; } } { RuntimeObject * L_10 = V_1; ((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this)->set_current_2(L_10); return (bool)1; } IL_004e: { Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * L_11 = (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)__this->get_address_of_enumerator_5(); bool L_12; L_12 = Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0((Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); if (L_12) { goto IL_002b; } } { NullCheck((Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t674ABE41CF4096D4BE4D51E21FEBDADBF74CC279 *)__this); } IL_0061: { return (bool)0; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereListIterator_1_Where_m1AD3C3728A42EA6188BB39667495E67F8A078501_gshared (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * __this, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate0, const RuntimeMethod* method) { { List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_source_3(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_1 = (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)__this->get_predicate_4(); Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_2 = ___predicate0; Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_3; L_3 = (( Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * (*) (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_1, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD * L_4 = (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); (( void (*) (WhereListIterator_1_t42618389DB998070E03A982D15FA39BCA1DB56BD *, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)L_0, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (RuntimeObject*)L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SubsystemDescriptorWithProvider_get_subsystemTypeOverride_mC1EE74BB1F7FC5ABEDEB70BD624B018A17206888_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * SubsystemDescriptorWithProvider_get_providerType_m61D62BCC0790E915342C35E416324F065300A29E_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * XRManagerSettings_get_activeLoader_mB1950E58B1DD1774EB2798CEBA6D3C371CE8F1D8_inline (XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * __this, const RuntimeMethod* method) { { // public XRLoader activeLoader { get; private set; } XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * L_0 = __this->get_U3CactiveLoaderU3Ek__BackingField_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemWithProvider_set_providerBase_m322900A6068F18D7D279ADDFD82D8FA6FE49CA52_inline (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___value0, const RuntimeMethod* method) { { SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * L_0 = ___value0; __this->set_U3CproviderBaseU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Task_get_AsyncState_m3470627DAC0FAD1BB41E763113037E70B21F5DB9_inline (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_stateObject_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m08AE8FC3C2730156E5244176D8DABEE9741D1B6B_inline (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)285212672)))) == ((int32_t)((int32_t)16777216)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline (Delegate_t * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_target_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_Id; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_Id; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_Id; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method) { { // public TrackableId trackableId => m_TrackableId; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B KeyValuePair_2_get_Key_m1A276F93AD522B08699D75F6030E54C9602A27DE_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method) { { TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )__this->get_key_0(); return (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { { SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_source_0(); return (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_index_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m43F8BCF94DDF78BFE39CE22284AF899D07D5D1F2_gshared_inline (TaskAwaiter_1_t98B8214BA5C5BD14FD8D98B71C67E11FFE8B684C * __this, Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * ___task0, const RuntimeMethod* method) { { Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m58DA5358DE2D31E0F2CB9FB0C13D22B144367738_gshared_inline (TaskAwaiter_1_t0273913A687D34796D1DCFEA29B881E186EDE887 * __this, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___task0, const RuntimeMethod* method) { { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m73B587E26B13AAE76EA1565E9430D94E5C2AD0CF_gshared_inline (TaskAwaiter_1_t2631C6B4AF6F87F9DA4817BE4B0962E01B4F47FE * __this, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___task0, const RuntimeMethod* method) { { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mCBCB3F6CE4D1A4E9A010774D0B4E14B3AC60E121_gshared_inline (TaskAwaiter_1_t3024EC798FC602A0B55169F4A378BE26B1C6E0FC * __this, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___task0, const RuntimeMethod* method) { { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m373CF40B644F4217C309DDEF94873159AC7BFCC8_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_mBC8340A8F13F22437477DD6EB6B71D9109AAEE7C_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mD5F26E92FCE0ACD7FB03D7CA12E4C90CC7BE0318_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m55E8A5FE92C755BD3027CCF81B6220A7A4B1431B_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m76D35901058B5AE1B1EC870A2991DAC2B3BDB7EC_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1507C325AA187BAC09D3EBB799A689094FFBCBDA_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mBEB5A961E31246B72D4AD8FED8C8A213522A6DE0_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m85CBA15543C01AF0B8732C8D6667C892838E5F75_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1CE55C472182950E8B678F956732464DA63F6246_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m1F45B9CCC075A809DCCB539C05C3177B75507C26_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m5536BD31FE4DB57C15510968C98028E14C11A88F_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m299FD56A5F8BE0F45D92EF1EE949EDF1F3C8198B_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mA9BF6264382E9672D0DC58075D413173A8999A25_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m0FA4107477AF6D223F4E895FB2A9C2E4177032F1_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m1A192528B8C6BF1DE6A86F6DE39C1A7737406719_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m90A74A5148892FB8FD43CF3E21655A9DADE58611_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mDDCCFC96265FFD469794EDC626D511ECB314CBB1_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m615F21D53FFB3723C3BE9DF174847CDD1D81C634_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_m95F738B28A65F72A6BA74C54DCACC8ED0E527B53_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m4C0F91C2A4480343AFD5E1BF90C0BB92CEC2CF7B_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackableChanges_1_get_isCreated_mC31F354755B30ADB0236DD951A2EF34A3F96D902_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = (bool)__this->get_U3CisCreatedU3Ek__BackingField_0(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackableChanges_1_set_isCreated_m58F95C94433EF1A239974598FF0BC412494D4BF6_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, bool ___value0, const RuntimeMethod* method) { { // public bool isCreated { get; private set; } bool L_0 = ___value0; __this->set_U3CisCreatedU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return (RuntimeObject *)L_0; } }
[ "keo.kim0808@gmail.com" ]
keo.kim0808@gmail.com
cb78e0ab0f3e346b851663234ec43e2a1aaa81fb
602a36156f6bd708be469b340e3a5fdcc8c78339
/src/cpp_tests/testSparseMatrix.cpp
1cac4efc3b2e623ea94efdd3b8e572f1f58e79ed
[ "BSD-3-Clause" ]
permissive
FertigLab/CoGAPS
2290e0685be5a53617fb593183c3ab4773f616f5
e99d6eff85d81178f71ebc58e4c56c8f7eda4ce7
refs/heads/master
2023-04-05T14:39:32.838668
2023-04-03T23:12:39
2023-04-03T23:12:39
48,254,961
47
13
BSD-3-Clause
2023-09-11T19:44:09
2015-12-18T20:27:45
C++
UTF-8
C++
false
false
4,158
cpp
#include "catch.h" #include "../data_structures/SparseMatrix.h" #include "../file_parser/CsvParser.h" #include "../file_parser/TsvParser.h" #include "../file_parser/MtxParser.h" #include "../math/Random.h" #include "../math/VectorMath.h" #include "../math/MatrixMath.h" static std::vector<unsigned> sequentialVector(unsigned n) { std::vector<unsigned> vec; for (unsigned i = 1; i <= n; ++i) // mimic R indices { vec.push_back(i); } return vec; } template <class DataType> static void testFullConstructor(float expectedSum, unsigned nr, unsigned nc, const DataType &data, bool transpose=false, bool partitionRows=false, const std::vector<unsigned> &indices=std::vector<unsigned>()) { SparseMatrix mat(data, transpose, partitionRows, indices); REQUIRE(mat.nRow() == nr); REQUIRE(mat.nCol() == nc); REQUIRE(expectedSum == gaps::sum(mat)); } template <class DataType> static void testAllConstructorSituations(const DataType &data, unsigned nr, unsigned nc, unsigned nIndices, float sum1, float sum2, float sum3) { // No Transpose, No Subset testFullConstructor(sum1, nr, nc, data, false); // Transpose, No Subset testFullConstructor(sum1, nc, nr, data, true); // No Transpose, Subset Rows testFullConstructor(sum2, nIndices, nc, data, false, true, sequentialVector(nIndices)); // Transpose, Subset Rows testFullConstructor(sum3, nIndices, nr, data, true, true, sequentialVector(nIndices)); // No Transpose, Subset Columns testFullConstructor(sum3, nr, nIndices, data, false, false, sequentialVector(nIndices)); // Transpose, Subset Columns testFullConstructor(sum2, nc, nIndices, data, true, false, sequentialVector(nIndices)); } TEST_CASE("Test Writing/Reading Sparse Matrices from File") { // matrix to use for testing Matrix ref(25, 50); GapsRandomState randState(123); GapsRng rng(&randState); for (unsigned i = 0; i < ref.nRow(); ++i) { for (unsigned j = 0; j < ref.nCol(); ++j) { ref(i,j) = (i + j) * (rng.uniform() < 0.5f ? 0.f : 1.f); } } // write matrix to file FileParser::writeToTsv("testMatWrite.tsv", ref); FileParser::writeToCsv("testMatWrite.csv", ref); FileParser::writeToMtx("testMatWrite.mtx", ref); // read matrices from file SparseMatrix mat(ref, false, false, sequentialVector(0)); SparseMatrix matTsv("testMatWrite.tsv", false, false, sequentialVector(0)); SparseMatrix matCsv("testMatWrite.csv", false, false, sequentialVector(0)); SparseMatrix matMtx("testMatWrite.mtx", false, false, sequentialVector(0)); // delete files std::remove("testMatWrite.tsv"); std::remove("testMatWrite.csv"); std::remove("testMatWrite.mtx"); // test matrices REQUIRE(gaps::sum(mat) == gaps::sum(ref)); REQUIRE(gaps::sum(matTsv) == gaps::sum(ref)); REQUIRE(gaps::sum(matCsv) == gaps::sum(ref)); REQUIRE(gaps::sum(matMtx) == gaps::sum(ref)); } TEST_CASE("Test SparseMatrix.h") { SECTION("Full Constructor") { Matrix ref(10, 25); for (unsigned i = 0; i < ref.nRow(); ++i) { for (unsigned j = 0; j < ref.nCol(); ++j) { ref(i,j) = i + j; } } // write matrix to file FileParser::writeToTsv("testMatWrite.tsv", ref); FileParser::writeToCsv("testMatWrite.csv", ref); FileParser::writeToMtx("testMatWrite.mtx", ref); // test testAllConstructorSituations(ref, 10, 25, 5, 4125.f, 1750.f, 325.f); testAllConstructorSituations("testMatWrite.tsv", 10, 25, 5, 4125.f, 1750.f, 325.f); testAllConstructorSituations("testMatWrite.csv", 10, 25, 5, 4125.f, 1750.f, 325.f); testAllConstructorSituations("testMatWrite.mtx", 10, 25, 5, 4125.f, 1750.f, 325.f); // delete files std::remove("testMatWrite.tsv"); std::remove("testMatWrite.csv"); std::remove("testMatWrite.mtx"); } }
[ "tomsherman159@gmail.com" ]
tomsherman159@gmail.com
55593be36749086ecf5373224ccff9819a28bcb3
470fae08316b55246ab01675ac5013febfb13eee
/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp
8b2fa983edc2bab10eb3c8489d1b1fbcf04758d7
[]
no_license
adde13372/shadowcore
8db6fb6ccc99821e6bd40237a0c284ce7cf543c2
aa87944193ce02f6e99f7b35eceac5023abfca1b
refs/heads/main
2023-04-01T07:38:39.359558
2021-04-03T07:54:17
2021-04-03T07:54:17
354,320,611
4
8
null
2021-04-03T15:02:49
2021-04-03T15:02:49
null
UTF-8
C++
false
false
2,385
cpp
/* * Copyright 2021 ShadowCore * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "ScriptMgr.h" #include "ScriptedCreature.h" #include "scarlet_monastery.h" enum Yells { SAY_AGGRO = 0, }; enum Spells { SPELL_SUMMONSCARLETHOUND = 17164, SPELL_BLOODLUST = 6742 }; enum Events { EVENT_BLOODLUST = 1 }; class boss_houndmaster_loksey : public CreatureScript { public: boss_houndmaster_loksey() : CreatureScript("boss_houndmaster_loksey") { } struct boss_houndmaster_lokseyAI : public BossAI { boss_houndmaster_lokseyAI(Creature* creature) : BossAI(creature, DATA_HOUNDMASTER_LOKSEY) { } void Reset() override { _Reset(); } void EnterCombat(Unit* /*who*/) override { Talk(SAY_AGGRO); _EnterCombat(); events.ScheduleEvent(EVENT_BLOODLUST, 20000); } void JustDied(Unit* /*killer*/) override { _JustDied(); } void ExecuteEvent(uint32 eventId) override { switch (eventId) { case EVENT_BLOODLUST: DoCast(me, SPELL_BLOODLUST); events.ScheduleEvent(EVENT_BLOODLUST, 20000); break; default: break; } } }; CreatureAI* GetAI(Creature* creature) const override { return GetScarletMonasteryAI<boss_houndmaster_lokseyAI>(creature); } }; void AddSC_boss_houndmaster_loksey() { new boss_houndmaster_loksey(); }
[ "81566364+NemoPRM@users.noreply.github.com" ]
81566364+NemoPRM@users.noreply.github.com
c4754dc1c6033d52cfccb5883e91cfd3e73769f3
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-sagemaker/source/model/DescribeImageResult.cpp
105d549d9b0fb9383a4d1ec18a4376cd081cae01
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
1,950
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/sagemaker/model/DescribeImageResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/UnreferencedParam.h> #include <utility> using namespace Aws::SageMaker::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; DescribeImageResult::DescribeImageResult() : m_imageStatus(ImageStatus::NOT_SET) { } DescribeImageResult::DescribeImageResult(const Aws::AmazonWebServiceResult<JsonValue>& result) : m_imageStatus(ImageStatus::NOT_SET) { *this = result; } DescribeImageResult& DescribeImageResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("CreationTime")) { m_creationTime = jsonValue.GetDouble("CreationTime"); } if(jsonValue.ValueExists("Description")) { m_description = jsonValue.GetString("Description"); } if(jsonValue.ValueExists("DisplayName")) { m_displayName = jsonValue.GetString("DisplayName"); } if(jsonValue.ValueExists("FailureReason")) { m_failureReason = jsonValue.GetString("FailureReason"); } if(jsonValue.ValueExists("ImageArn")) { m_imageArn = jsonValue.GetString("ImageArn"); } if(jsonValue.ValueExists("ImageName")) { m_imageName = jsonValue.GetString("ImageName"); } if(jsonValue.ValueExists("ImageStatus")) { m_imageStatus = ImageStatusMapper::GetImageStatusForName(jsonValue.GetString("ImageStatus")); } if(jsonValue.ValueExists("LastModifiedTime")) { m_lastModifiedTime = jsonValue.GetDouble("LastModifiedTime"); } if(jsonValue.ValueExists("RoleArn")) { m_roleArn = jsonValue.GetString("RoleArn"); } return *this; }
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
bb6ad08693f7b11be9715b4c0a1c77fed01bb3d2
c91ba4e746dc5b8f2dface963b4096dd721070fd
/slb/src/model/RemoveVServerGroupBackendServersRequest.cc
5cb32382a6cf95e95469dfde247455389e352cea
[ "Apache-2.0" ]
permissive
IthacaDream/aliyun-openapi-cpp-sdk
fa9120604ca3af4fc48a5f9bf70ff10542103c3a
31a064d1568f59e0731485a1b0452cfd5d767e42
refs/heads/master
2021-09-05T09:44:19.244166
2018-01-26T07:00:14
2018-01-26T07:00:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,892
cc
/* * 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. */ #include <alibabacloud/slb/model/RemoveVServerGroupBackendServersRequest.h> using namespace AlibabaCloud::Slb; using namespace AlibabaCloud::Slb::Model; RemoveVServerGroupBackendServersRequest::RemoveVServerGroupBackendServersRequest() : SlbRequest("RemoveVServerGroupBackendServers") {} RemoveVServerGroupBackendServersRequest::~RemoveVServerGroupBackendServersRequest() {} std::string RemoveVServerGroupBackendServersRequest::getAccess_key_id()const { return access_key_id_; } void RemoveVServerGroupBackendServersRequest::setAccess_key_id(const std::string& access_key_id) { access_key_id_ = access_key_id; setParameter("Access_key_id", access_key_id); } std::string RemoveVServerGroupBackendServersRequest::getVServerGroupId()const { return vServerGroupId_; } void RemoveVServerGroupBackendServersRequest::setVServerGroupId(const std::string& vServerGroupId) { vServerGroupId_ = vServerGroupId; setParameter("VServerGroupId", vServerGroupId); } long RemoveVServerGroupBackendServersRequest::getResourceOwnerId()const { return resourceOwnerId_; } void RemoveVServerGroupBackendServersRequest::setResourceOwnerId(long resourceOwnerId) { resourceOwnerId_ = resourceOwnerId; setParameter("ResourceOwnerId", std::to_string(resourceOwnerId)); } std::string RemoveVServerGroupBackendServersRequest::getResourceOwnerAccount()const { return resourceOwnerAccount_; } void RemoveVServerGroupBackendServersRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount) { resourceOwnerAccount_ = resourceOwnerAccount; setParameter("ResourceOwnerAccount", resourceOwnerAccount); } std::string RemoveVServerGroupBackendServersRequest::getRegionId()const { return regionId_; } void RemoveVServerGroupBackendServersRequest::setRegionId(const std::string& regionId) { regionId_ = regionId; setParameter("RegionId", regionId); } std::string RemoveVServerGroupBackendServersRequest::getOwnerAccount()const { return ownerAccount_; } void RemoveVServerGroupBackendServersRequest::setOwnerAccount(const std::string& ownerAccount) { ownerAccount_ = ownerAccount; setParameter("OwnerAccount", ownerAccount); } long RemoveVServerGroupBackendServersRequest::getOwnerId()const { return ownerId_; } void RemoveVServerGroupBackendServersRequest::setOwnerId(long ownerId) { ownerId_ = ownerId; setParameter("OwnerId", std::to_string(ownerId)); } std::string RemoveVServerGroupBackendServersRequest::getBackendServers()const { return backendServers_; } void RemoveVServerGroupBackendServersRequest::setBackendServers(const std::string& backendServers) { backendServers_ = backendServers; setParameter("BackendServers", backendServers); } std::string RemoveVServerGroupBackendServersRequest::getAccessKeyId()const { return accessKeyId_; } void RemoveVServerGroupBackendServersRequest::setAccessKeyId(const std::string& accessKeyId) { accessKeyId_ = accessKeyId; setParameter("AccessKeyId", accessKeyId); } std::string RemoveVServerGroupBackendServersRequest::getTags()const { return tags_; } void RemoveVServerGroupBackendServersRequest::setTags(const std::string& tags) { tags_ = tags; setParameter("Tags", tags); }
[ "haowei.yao@alibaba-inc.com" ]
haowei.yao@alibaba-inc.com
165060b78f1713d978f23bbcaf4e082f25d98d45
fdcae9bcce8ee53d572a351a6811047edbbd3b3e
/code/Singularity_Engine/include/3rdparty/fbx/fbxfilesdk/kfbxplugins/kfbxskin.h
df6a396fc9d6f1a0e01df78c17efa60160a62b8e
[]
no_license
jobelobes/Ultragon.Games.TriggerHappy
d4378e34946759e4f19db14fc09120e4086dc3b8
f438b5d3af4ff2173f9b02a489a8c907c48a9bf5
refs/heads/master
2021-03-24T12:44:34.589323
2012-06-28T22:37:04
2012-06-28T22:37:04
4,823,923
0
0
null
null
null
null
UTF-8
C++
false
false
6,362
h
/*! \file kfbxskin.h */ #ifndef FBXFILESDK_KFBXPLUGINS_KFBXSKIN_H #define FBXFILESDK_KFBXPLUGINS_KFBXSKIN_H /************************************************************************************** Copyright (C) 2001 - 2009 Autodesk, Inc. and/or its licensors. All Rights Reserved. The coded instructions, statements, computer programs, and/or related material (collectively the "Data") in these files contain unpublished information proprietary to Autodesk, Inc. and/or its licensors, which is protected by Canada and United States of America federal copyright law and by international treaties. The Data may not be disclosed or distributed to third parties, in whole or in part, without the prior written consent of Autodesk, Inc. ("Autodesk"). THE DATA IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ALL WARRANTIES ARE EXPRESSLY EXCLUDED AND DISCLAIMED. AUTODESK MAKES NO WARRANTY OF ANY KIND WITH RESPECT TO THE DATA, EXPRESS, IMPLIED OR ARISING BY CUSTOM OR TRADE USAGE, AND DISCLAIMS ANY IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR USE. WITHOUT LIMITING THE FOREGOING, AUTODESK DOES NOT WARRANT THAT THE OPERATION OF THE DATA WILL BE UNINTERRUPTED OR ERROR FREE. IN NO EVENT SHALL AUTODESK, ITS AFFILIATES, PARENT COMPANIES, LICENSORS OR SUPPLIERS ("AUTODESK GROUP") BE LIABLE FOR ANY LOSSES, DAMAGES OR EXPENSES OF ANY KIND (INCLUDING WITHOUT LIMITATION PUNITIVE OR MULTIPLE DAMAGES OR OTHER SPECIAL, DIRECT, INDIRECT, EXEMPLARY, INCIDENTAL, LOSS OF PROFITS, REVENUE OR DATA, COST OF COVER OR CONSEQUENTIAL LOSSES OR DAMAGES OF ANY KIND), HOWEVER CAUSED, AND REGARDLESS OF THE THEORY OF LIABILITY, WHETHER DERIVED FROM CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE), OR OTHERWISE, ARISING OUT OF OR RELATING TO THE DATA OR ITS USE OR ANY OTHER PERFORMANCE, WHETHER OR NOT AUTODESK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. **************************************************************************************/ #include <fbxfilesdk/components/kbaselib/kaydaradef_h.h> #include <fbxfilesdk/components/kbaselib/kaydara.h> #include <fbxfilesdk/kfbxplugins/kfbxdeformer.h> #include <fbxfilesdk/kfbxmath/kfbxmatrix.h> #include <fbxfilesdk/kfbxplugins/kfbxgroupname.h> #include <fbxfilesdk/components/kbaselib/klib/kerror.h> #include <fbxfilesdk/components/kbaselib/kbaselib_forward.h> #include <fbxfilesdk/fbxfilesdk_nsbegin.h> class KFbxSdkManager; class KFbxGeometry; class KFbxCluster; class KFbxNode; /** FBX SDK skin class * \nosubgrouping */ class KFBX_DLL KFbxSkin : public KFbxDeformer { KFBXOBJECT_DECLARE(KFbxSkin,KFbxDeformer); public: /** Set deformation accuracy. * \param pDeformAccuracy value for deformation accuracy. */ void SetDeformAccuracy(double pDeformAccuracy); /** Get deformation accuracy. * \return deformation accuracy value. */ double GetDeformAccuracy() const; /** Set the node affected by this skin deformer. * \param pNode Pointer to the node object to set. * \return \c true on success, \c false otherwise. */ bool SetNode(KFbxNode* pNode); /** Get the node affected by this skin deformer. * \return a pointer to the node if set or NULL. */ KFbxNode* GetNode(); /** Set the geometry affected by this skin deformer. * \param pGeometry Pointer to the geometry object to set. * \return \c true on success, \c false otherwise. */ bool SetGeometry(KFbxGeometry* pGeometry); /** Get the geometry affected by this skin deformer. * \return a pointer to the geometry if set or NULL. */ KFbxGeometry* GetGeometry(); /** Add a cluster. * \param pCluster Pointer to the cluster object to add. * \return \c true on success, \c false otherwise. */ bool AddCluster(KFbxCluster* pCluster); /** Remove cluster at given index. * \param pCluster Pointer to the cluster to remove from this skin deformer. * \return Pointer to cluster or \c NULL if pCluster is not owned by this skin deformer. */ KFbxCluster* RemoveCluster(KFbxCluster* pCluster); /** Get the number of clusters. * \return Number of clusters that have been added to this object. */ int GetClusterCount() const; /** Get cluster at given index. * \param pIndex Index of cluster. * \return Pointer to cluster or \c NULL if index is out of range. */ KFbxCluster* GetCluster(int pIndex); /** Get cluster at given index. * \param pIndex Index of cluster. * \return Pointer to cluster or \c NULL if index is out of range. */ KFbxCluster const* GetCluster(int pIndex) const; /** Get the type of the deformer. * \return Deformer type identifier. */ EDeformerType GetDeformerType() const {return eSKIN; }; /////////////////////////////////////////////////////////////////////////////// // // WARNING! // // Anything beyond these lines may not be documented accurately and is // subject to change without notice. // /////////////////////////////////////////////////////////////////////////////// #ifndef DOXYGEN_SHOULD_SKIP_THIS // Clone virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const; protected: KFbxSkin(KFbxSdkManager& pManager, char const* pName); //!Assignment operator KFbxSkin& operator = (KFbxSkin const& pSkin); virtual KString GetTypeName() const; virtual KStringList GetTypeFlags() const; // Skin deformer double mDeformAccuracy; friend class KFbxScene; #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS }; typedef KFbxSkin* HKFbxSkin; #include <fbxfilesdk/fbxfilesdk_nsend.h> #endif // FBXFILESDK_KFBXPLUGINS_KFBXSKIN_H
[ "jobelobes@gmail.com" ]
jobelobes@gmail.com
4e4ee995be9e6bf0c0e6ffc918039b3a23dd1695
b8fdadfb7cbf049b4ffe4df10ebae946bca6d765
/finalcode/main.cpp
cabcab8cf6fbb9b46eb78cf30d5daa9968777e0d
[]
no_license
ashishbajaj91/BitPlanes
e25111f4c222f6c09f5b0ddff08ca22a3d2e6671
4f67984b5596ed79bdcbe275791f614c288a0e4c
refs/heads/master
2021-06-19T17:04:13.445767
2017-05-01T05:57:30
2017-05-01T05:57:30
82,469,605
1
0
null
null
null
null
UTF-8
C++
false
false
218
cpp
#include "Test.h" #include "runLucasKanade.h" #include "runLucasKanadeWithCamera.h" int main(int argc, char** argv) { //RunTests(argc, argv); //RunLucasKanade(argc, argv); RunLucasKanadeWithCamera(); return 0; }
[ "mm10b009@smail.iitm.ac.in" ]
mm10b009@smail.iitm.ac.in
d155cf88e6ee9be405099bac77d6ddb4055a10f2
cfae76db4ef26a0c0232b555525fbbad5eec96bb
/src/dswatch/dswatch.h
2cdc93253774a8378c73b4725db72d26692287fb
[]
no_license
devis-dong/CPP
4bc6092137b7178a1e0ca627f33a772f3f07c27b
d74b5c541276bdedbb434349e47e33b121f56f4d
refs/heads/master
2023-06-20T13:50:18.508732
2021-07-23T15:32:09
2021-07-23T15:32:09
385,934,256
0
0
null
null
null
null
UTF-8
C++
false
false
852
h
/*** * @Author: devis dong * @Date: 2021-07-13 15:52:28 * @LastEditTime: 2021-07-16 14:29:42 * @LastEditors: devis dong * @Description: * @FilePath: \C++\src\watch\dswatch.h */ #ifndef DSTIME_H #define DSTIME_H #include <string> #include <chrono> #include "dsdefine.h" using namespace std; using namespace chrono; namespace ds { class Watch { public: Watch(); ~Watch(); static string get_datetime(I const bool format=true); static string get_date(I const bool format=true); static string get_time(I const bool format=true); void start_clock(); void stop_clock(); double get_duration(); private: time_point<high_resolution_clock> _start; time_point<high_resolution_clock> _stop; }; } #endif
[ "devis.dong@gmail.com" ]
devis.dong@gmail.com
46297d78ec5ba1adbfe802b666ac470b0775510c
13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab
/home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/lib/stan_math/stan/math/prim/mat/meta/vector_seq_view.hpp
33ddf766d43de5edb90f75e7b77487ac05343bf3
[ "Unlicense", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
tommybutler/mlearnpy2
8ec52bcd03208c9771d8d02ede8eaa91a95bda30
9e5d377d0242ac5eb1e82a357e6701095a8ca1ff
refs/heads/master
2022-10-24T23:30:18.705329
2022-10-17T15:41:37
2022-10-17T15:41:37
118,529,175
0
2
Unlicense
2022-10-15T23:32:18
2018-01-22T23:27:10
Python
UTF-8
C++
false
false
5,208
hpp
#ifndef STAN_MATH_PRIM_MAT_META_vector_SEQ_VIEW_HPP #define STAN_MATH_PRIM_MAT_META_vector_SEQ_VIEW_HPP #include <stan/math/prim/mat/fun/Eigen.hpp> #include <vector> namespace stan { /** * This class provides a low-cost wrapper for situations where you either need * an Eigen Vector or RowVector or a std::vector of them and you want to be * agnostic between those two options. This is similar to scalar_seq_view but * instead of being a sequence-like view over a scalar or seq of scalars, it's * a sequence-like view over a Vector or seq of Vectors. Notably this version * only allows std::vectors as the container type, since we would have * difficulty figuring out which contained type was the container otherwise. * * @tparam T the wrapped type, either a Vector or std::vector of them. */ template <typename T> class vector_seq_view { }; /** * This class provides a low-cost wrapper for situations where you either need * an Eigen Vector or RowVector or a std::vector of them and you want to be * agnostic between those two options. This is similar to scalar_seq_view but * instead of being a sequence-like view over a scalar or seq of scalars, it's * a sequence-like view over a Vector or seq of Vectors. Notably this version * only allows std::vectors as the container type, since we would have * difficulty figuring out which contained type was the container otherwise. * * @tparam S the type inside of the underlying Vector */ template <typename S> class vector_seq_view<Eigen::Matrix<S, Eigen::Dynamic, 1> > { public: explicit vector_seq_view( const Eigen::Matrix<S, Eigen::Dynamic, 1>& m): m_(m) {} int size() const { return 1; } Eigen::Matrix<S, Eigen::Dynamic, 1> operator[](int /* i */) const { return m_; } private: const Eigen::Matrix<S, Eigen::Dynamic, 1>& m_; }; /** * This class provides a low-cost wrapper for situations where you either need * an Eigen Vector or RowVector or a std::vector of them and you want to be * agnostic between those two options. This is similar to scalar_seq_view but * instead of being a sequence-like view over a scalar or seq of scalars, it's * a sequence-like view over a Vector or seq of Vectors. Notably this version * only allows std::vectors as the container type, since we would have * difficulty figuring out which contained type was the container otherwise. * * @tparam S the type inside of the underlying Vector */ template <typename S> class vector_seq_view<Eigen::Matrix<S, 1, Eigen::Dynamic> > { public: explicit vector_seq_view( const Eigen::Matrix<S, 1, Eigen::Dynamic>& m): m_(m) {} int size() const { return 1; } Eigen::Matrix<S, 1, Eigen::Dynamic> operator[](int /* i */) const { return m_; } private: const Eigen::Matrix<S, 1, Eigen::Dynamic>& m_; }; /** * This class provides a low-cost wrapper for situations where you either need * an Eigen Vector or RowVector or a std::vector of them and you want to be * agnostic between those two options. This is similar to scalar_seq_view but * instead of being a sequence-like view over a scalar or seq of scalars, it's * a sequence-like view over a Vector or seq of Vectors. Notably this version * only allows std::vectors as the container type, since we would have * difficulty figuring out which contained type was the container otherwise. * * @tparam S the type inside of the underlying Vector */ template <typename S> class vector_seq_view<std::vector<Eigen::Matrix<S, Eigen::Dynamic, 1> > > { public: explicit vector_seq_view( const std::vector<Eigen::Matrix<S, Eigen::Dynamic, 1> >& v): v_(v) {} int size() const { return v_.size(); } Eigen::Matrix<S, Eigen::Dynamic, 1> operator[](int i) const { return v_[i]; } private: const std::vector<Eigen::Matrix<S, Eigen::Dynamic, 1> >& v_; }; /** * This class provides a low-cost wrapper for situations where you either need * an Eigen Vector or RowVector or a std::vector of them and you want to be * agnostic between those two options. This is similar to scalar_seq_view but * instead of being a sequence-like view over a scalar or seq of scalars, it's * a sequence-like view over a Vector or seq of Vectors. Notably this version * only allows std::vectors as the container type, since we would have * difficulty figuring out which contained type was the container otherwise. * * @tparam S the type inside of the underlying Vector */ template <typename S> class vector_seq_view<std::vector<Eigen::Matrix<S, 1, Eigen::Dynamic> > > { public: explicit vector_seq_view( const std::vector<Eigen::Matrix<S, 1, Eigen::Dynamic> >& v): v_(v) {} int size() const { return v_.size(); } Eigen::Matrix<S, 1, Eigen::Dynamic> operator[](int i) const { return v_[i]; } private: const std::vector<Eigen::Matrix<S, 1, Eigen::Dynamic> >& v_; }; } // namespace stan #endif
[ "tbutler.github@internetalias.net" ]
tbutler.github@internetalias.net
af833ff85445c98310677c3101da599f2a86d204
92745756b1d9280222894d6b7ba918c00f76bf3b
/SDK/PUBG_KeyOptionWidget_BP_classes.hpp
3776a0303a4634d648b922f36293a82858a4433d
[]
no_license
ziyouhaofan/PUBG-SDK
018b2b28420b762de8c2b7e7142cb4f28647dc7f
03d5f52e8d4fd7e2bef250217a9a5622366610e2
refs/heads/master
2021-07-19T11:34:17.527464
2017-10-26T03:42:44
2017-10-26T03:42:44
108,414,666
1
0
null
2017-10-26T13:24:32
2017-10-26T13:24:32
null
UTF-8
C++
false
false
1,381
hpp
#pragma once // PlayerUnknown's Battlegrounds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace Classes { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // WidgetBlueprintGeneratedClass KeyOptionWidget_BP.KeyOptionWidget_BP_C // 0x0008 (0x02D8 - 0x02D0) class UKeyOptionWidget_BP_C : public UTslKeyOptionWidget { public: class UScrollBox* List; // 0x02D0(0x0008) (CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_Transient, CPF_IsPlainOldData, CPF_RepSkip, CPF_RepNotify, CPF_Interp, CPF_NonTransactional, CPF_EditorOnly, CPF_NoDestructor, CPF_AutoWeak, CPF_ContainsInstancedReference, CPF_AssetRegistrySearchable, CPF_SimpleDisplay, CPF_AdvancedDisplay, CPF_Protected, CPF_BlueprintCallable, CPF_BlueprintAuthorityOnly, CPF_TextExportTransient, CPF_NonPIEDuplicateTransient, CPF_ExposeOnSpawn, CPF_PersistentInstance, CPF_UObjectWrapper, CPF_HasGetValueTypeHash, CPF_NativeAccessSpecifierPublic, CPF_NativeAccessSpecifierProtected, CPF_NativeAccessSpecifierPrivate) static UClass* StaticClass() { static UClass* ptr = nullptr; if (!ptr) ptr = UObject::FindClass(0xcbbf4b6f); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "tj8@live.com.au" ]
tj8@live.com.au
79c206fc2b194e60ae144225575ef337457adab8
376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb
/emulators/gpsim-devel/patches/patch-cli_socket.cc
51b88f1a857770abe117443cec692551eae253db
[]
no_license
NetBSD/pkgsrc
a0732c023519650ef821ab89c23ab6ab59e25bdb
d042034ec4896cc5b47ed6f2e5b8802d9bc5c556
refs/heads/trunk
2023-09-01T07:40:12.138283
2023-09-01T05:25:19
2023-09-01T05:25:19
88,439,572
321
138
null
2023-07-12T22:34:14
2017-04-16T20:04:15
null
UTF-8
C++
false
false
310
cc
$NetBSD: patch-cli_socket.cc,v 1.1 2011/12/19 15:58:40 wiz Exp $ --- cli/socket.cc.orig 2005-08-31 14:46:35.000000000 +0000 +++ cli/socket.cc @@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ #endif #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h>
[ "wiz@pkgsrc.org" ]
wiz@pkgsrc.org
fbf752cbc09dc30859e68551f0c3ed261461e116
b79a17ffdd7da0d4d47a01e71adacbccc6aba7c3
/SGS_FinalVersion/SGS/programdetail.h
c42df1aa78f24170966daba668342dd70d63b8c2
[]
no_license
wjanpong/Streamlined-Grading-System
70f7e95091f45dff7650a2a13d388798ec55fa8b
de67c96b4dd13cbea391590c60d9b9d846ebefa0
refs/heads/master
2021-01-10T02:20:56.687912
2016-01-15T01:05:32
2016-01-15T01:05:32
49,586,409
0
0
null
null
null
null
UTF-8
C++
false
false
727
h
#ifndef PROGRAMDETAIL_H #define PROGRAMDETAIL_H #include <QDialog> namespace Ui { class ProgramDetail; } class ProgramDetail : public QDialog { Q_OBJECT public: explicit ProgramDetail(QWidget *parent = 0); ~ProgramDetail(); void setData(QString activityId); QString activityID; private slots: void on_pushButton_Display_clicked(); void on_pushButton_ModifyPT_clicked(); void on_pushButton_DeletePT_clicked(); void on_pushButton_createPT_clicked(); void on_pushButton_createFIS_clicked(); void on_pushButton_3_clicked(); void on_pushButton_ModifyFIS_clicked(); private: Ui::ProgramDetail *ui; }; #endif // PROGRAMDETAIL_H
[ "wjanpong@12093d35-e1ed-4f36-b3d2-707a2ef65ad0" ]
wjanpong@12093d35-e1ed-4f36-b3d2-707a2ef65ad0
9f16bc87c265495b4cd88a33218e27143451bcfd
23130cd12e38dbce8db8102810edaad70b240ae2
/lintcode/294.cpp
57c3e5c4d35c95709ebffd7edc2cf4b2b9715407
[ "MIT" ]
permissive
kangli-bionic/algorithm
ee6687c82101088db20f10fb958b4e45e97d3d31
c3c38723b9c5f1cc745550d89e228f92fd4abfb2
refs/heads/master
2023-01-05T09:29:33.204253
2020-10-25T17:29:38
2020-10-25T17:29:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,844
cpp
/* 294. Linked List Simplification https://www.lintcode.com/problem/linked-list-simplification/description?_from=contest&&fromId=96 */ /** * Definition of singly-linked-list: * class ListNode { * public: * int val; * ListNode *next; * ListNode(int val) { * this->val = val; * this->next = NULL; * } * } */ #include <iostream> #include <string> using namespace std; class ListNode { public: int val; ListNode *next; ListNode(int val) { this->val = val; this->next = NULL; } }; class Solution { public: /** * @param head: the linked list to be simplify. * @return: return the linked list after simplifiction. */ ListNode * simplify(ListNode * head) { // write your code here if (head == NULL) { ListNode *root = new ListNode(0); return root; } ListNode* root = head; int count = -2; ListNode* tail = head; ListNode* prev = new ListNode(0); while (tail) { ++count; prev = tail; tail = tail->next; } tail = root; string s = to_string(count); for (int i = 0; i < s.size(); ++i) { tail->next = new ListNode(s[i]); tail = tail->next; } tail->next = prev; return root; } }; int main() { ListNode *root = new ListNode('h'); ListNode *tail = root; tail->next = new ListNode('e'); tail = tail->next; tail->next = new ListNode('l'); tail = tail->next; tail->next = new ListNode('l'); tail = tail->next; tail->next = new ListNode('o'); tail = tail->next; Solution s; s.simplify(root); tail = root; while (tail != NULL) { cout << tail->val << endl; tail = tail->next; } }
[ "hipaulshi@gmail.com" ]
hipaulshi@gmail.com
b61a996ecbfd64f40bbc150283df17adc6e59af4
6dc49fcfe53353d7688a874ee546d06c37bbab89
/Triangulation/ModeConverter.hpp
87f82c22aa6761206f3eca10d4ece52dee56cf0f
[ "Apache-2.0" ]
permissive
jbxplan/GMLToolbox-src
00960630bcb5c93ee4d2936f67d5425036525224
fec35558787db18d222598e376bc7c1071c69a55
refs/heads/master
2022-12-01T15:04:09.391922
2020-08-10T11:36:41
2020-08-10T11:36:41
279,293,373
0
0
NOASSERTION
2020-07-13T12:14:11
2020-07-13T12:14:11
null
UTF-8
C++
false
false
2,236
hpp
#pragma once #include "x3dGL.h" template <typename T> class ModeConverterListener { public: virtual void onTriangle(T i1, T i2, T i3) = 0; virtual void onError(GLenum err) = 0; }; template <typename T> class ModeConverter { public: ModeConverter() {} void onBegin(GLenum mode) { m_mode = mode; m_state = 0; } void onError(GLenum err) { m_listener->onError(err); } void onIndex(T index) { if (m_mode == GL_TRIANGLES) { onTriangleIndex(index); } else if (m_mode == GL_TRIANGLE_STRIP) { onTriangleStripIndex(index); } else if (m_mode == GL_TRIANGLE_FAN) { onTriangleFanIndex(index); } } void setListener(ModeConverterListener<T>* listener) { m_listener = listener; } ModeConverterListener<T>* getListener() { return m_listener; } private: void onTriangleIndex(T index) { m_indices[m_state] = index; ++m_state; if (m_state == 3) { m_state = 0; m_listener->onTriangle(m_indices[0], m_indices[1], m_indices[2]); } } void onTriangleStripIndex(T index) { if (m_state == 0) { m_indices[0] = index; ++m_state; } else if (m_state == 1) { m_indices[1] = index; ++m_state; } else if (m_state == 2) { m_indices[2] = index; m_listener->onTriangle(m_indices[0], m_indices[1], m_indices[2]); m_indices[0] = m_indices[1]; m_state = 3; } else if (m_state == 3) { m_indices[1] = index; m_listener->onTriangle(m_indices[0], m_indices[1], m_indices[2]); m_indices[0] = m_indices[2]; m_state = 2; } } void onTriangleFanIndex(T index) { if (m_state == 0) { m_indices[0] = index; ++m_state; } else if (m_state == 1) { m_indices[1] = index; ++m_state; } else { m_indices[2] = index; m_listener->onTriangle(m_indices[0], m_indices[1], m_indices[2]); m_indices[1] = m_indices[2]; } } ModeConverterListener<T>* m_listener; GLenum m_mode; size_t m_state; T m_indices[3]; };
[ "git@fjkaiser.net" ]
git@fjkaiser.net
ffd9668c6b3fcebaaf3dfc98f6e5a5105c76880b
abe53b4089ce6f64e3b9026f156b157a2b3caed0
/sysutils/dar/files/patch-src_libdar_parallel__tronconneuse.cpp
05a93a51e023cfed73eb34978be6bf4ebaaa5403
[ "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports-haskell
fdd59a3af298ab32eecdecf0dfb1d7f39aa71425
3f032ebcedbb2aeed9a1ca893c7f2295a32d68c9
refs/heads/main
2023-08-04T07:57:51.088323
2022-10-02T14:51:13
2022-10-02T15:05:55
252,762,972
7
13
NOASSERTION
2022-08-01T09:17:58
2020-04-03T14:56:02
null
UTF-8
C++
false
false
1,202
cpp
--- src/libdar/parallel_tronconneuse.cpp.orig 2022-04-13 16:16:59 UTC +++ src/libdar/parallel_tronconneuse.cpp @@ -91,21 +91,21 @@ namespace libdar { U_I tmp_bs1, tmp_bs2; - scatter = make_shared<ratelier_scatter<crypto_segment> >(get_ratelier_size(num_workers)); + scatter.reset(new (nothrow) ratelier_scatter<crypto_segment>(get_ratelier_size(num_workers))); if(!scatter) throw Ememory("parallel_tronconneuse::parallel_tronconneuse"); - gather = make_shared<ratelier_gather<crypto_segment> >(get_ratelier_size(num_workers)); + gather.reset(new (nothrow) ratelier_gather<crypto_segment>(get_ratelier_size(num_workers))); if(!gather) throw Ememory("parallel_tronconneuse::parallel_tronconneuse"); - waiter = make_shared<barrier>(num_workers + 2); // +1 for crypto_reade thread, +1 this thread + waiter.reset(new (nothrow) barrier(num_workers + 2)); if(!waiter) throw Ememory("parallel_tronconneuse::parallel_tronconneuse"); // tas is created empty - tas = make_shared<heap<crypto_segment> >(); + tas.reset(new (nothrow) heap<crypto_segment>()); if(!tas) throw Ememory("parallel_tronconneuse::parallel_tronconneuse");
[ "bofh@FreeBSD.org" ]
bofh@FreeBSD.org
8434db76715d46e2a7de4d60b2bf3a88d6a22318
79d89f30c9d68226465bbfbfbb7897dff2b53ab7
/Code/Bridge151/lib/IO/fieldIO_LIME.cpp
d163ff35d7cf1a79356fa52fbbeb645bce83a679
[]
no_license
NBAlexis/BridgePPWin
5584129add2bde43d6f17d83271c8649a6ccc913
3c008074bcb99ec0e10d0d3b1045f5a494fe57ed
refs/heads/master
2020-04-08T14:50:26.295093
2019-09-01T16:37:23
2019-09-01T16:37:23
159,453,798
0
0
null
null
null
null
UTF-8
C++
false
false
15,301
cpp
/*! @file fieldIO_LIME.cpp @brief @author Hideo Matsufuru (matsufuru) $LastChangedBy: aoyama $ @date $LastChangedDate: 2015-03-24 18:19:19 #$ @version $LastChangedRevision: 1929 $ */ #include "BridgeLib_Private.h" #include <fstream> #include <string.h> #include "fieldIO_LIME.h" #include "io_format_gauge.h" #if USE_ILDG_METADATA #include "ildg_metadata.h" #endif #include "bridgeIO.h" using Bridge::vout; #ifdef USE_LIMELIB //typedef unsigned short int n_uint16_t; //typedef unsigned int n_uint32_t; //typedef unsigned long int n_uint64_t; #ifdef off_t #undef off_t #endif #define off_t n_uint64_t static const off_t block_size = 64; const std::string FieldIO_LIME::class_name = "FieldIO_LIME"; #if USE_ILDG_METADATA //================================================================ void FieldIO_LIME::check_metadata(const ILDG_Format::Params *params) { // check if config is as expected. const int Lx = CommonParameters::Lx(); const int Ly = CommonParameters::Ly(); const int Lz = CommonParameters::Lz(); const int Lt = CommonParameters::Lt(); if (!((params->Lx == Lx) && (params->Ly == Ly) && (params->Lz == Lz) && (params->Lt == Lt))) { vout.crucial(m_vl, "Error at %s: lattice size mismatch. config=(%d,%d,%d,%d), expected=(%d,%d,%d,%d).\n", class_name.c_str(), params->Lx, params->Ly, params->Lz, params->Lt, Lx, Ly, Lz, Lt); exit(EXIT_FAILURE); } if (params->prec == 32) { vout.detailed(m_vl, "ildg-format: single precision. extend to double\n"); } else { vout.detailed(m_vl, "ildg-format: double precision\n"); } } //================================================================ void FieldIO_LIME::load_metadata(LimeReader *reader, ILDG_Format::Params *params) { off_t nbytes = limeReaderBytes(reader); vout.detailed(m_vl, "limeReaderBytes: %lu bytes to read.\n", nbytes); off_t nbytes_alloc = nbytes + ((nbytes % block_size) ? (block_size - (nbytes % block_size)) : 0); char *buf = (char *)malloc(nbytes_alloc); if (buf == 0) { vout.crucial(m_vl, "Error at %s: malloc failed.\n", class_name.c_str()); exit(EXIT_FAILURE); } vout.detailed(m_vl, "allocated %lu bytes\n", nbytes_alloc); int status = limeReaderReadData(buf, &nbytes, reader); if (status != LIME_SUCCESS) { vout.crucial(m_vl, "Error at %s: limeReaderReadData failed.\n", class_name.c_str()); exit(EXIT_FAILURE); } // dump Metadata vout.detailed(m_vl, "%s\n", buf); // process ILDG Metadata ILDG_Format::Metadata md; md.read_from_buffer(buf).extract(params); free(buf); } // endif of #if USE_ILDG_METADATA #endif //================================================================ void FieldIO_LIME::load_lfn(LimeReader *reader) { off_t nbytes = limeReaderBytes(reader); vout.detailed(m_vl, "limeReaderBytes: %lu bytes to read.\n", nbytes); off_t nbytes_alloc = (nbytes + 1) + (block_size - ((nbytes + 1) % block_size)); char *buf = (char *)malloc(nbytes_alloc); if (!buf) { vout.crucial(m_vl, "Error at %s: malloc failed.\n", class_name.c_str()); exit(EXIT_FAILURE); } vout.detailed(m_vl, "allocated %lu bytes\n", nbytes_alloc); int status = limeReaderReadData(buf, &nbytes, reader); if (status != LIME_SUCCESS) { vout.crucial(m_vl, "Error at %s: limeReaderReadData failed.\n", class_name.c_str()); exit(EXIT_FAILURE); } vout.detailed(m_vl, "limeReaderReadData: %lu bytes read.\n", nbytes); buf[nbytes] = '\0'; vout.detailed(m_vl, "ildg-data-lfn: %s\n", buf); free(buf); } //==================================================================== void FieldIO_LIME::load_data(LimeReader *reader, Field *v) { off_t word_size = 8; //XXX assume 64bit precision off_t nbytes = limeReaderBytes(reader); vout.detailed(m_vl, "ildg-binary-data: limeReaderBytes: %lu bytes to read.\n", nbytes); // allocate memory for whole config data. char *buf = (char *)malloc(nbytes); if (!buf) { vout.crucial(m_vl, "Error at %s: malloc failed.", __func__); exit(EXIT_FAILURE); } int status = limeReaderReadData(buf, &nbytes, reader); if (status != LIME_SUCCESS) { vout.crucial(m_vl, "Error at %s: malloc failed.", __func__); exit(EXIT_FAILURE); } // adjust byteorder if (!FieldIO::is_bigendian()) { byte_swap(buf, word_size, nbytes / word_size); } // reorder and store int nin_file = m_format->nin(); int nex_file = m_format->nex(); if ((nin_file == 0) || (nex_file == 0)) { nin_file = v->nin(); nex_file = v->nex(); } const int nvol = v->nvol(); double *p = (double *)buf; for (int j = 0; j < nex_file; ++j) { for (int isite = 0; isite < nvol; ++isite) { for (int i = 0; i < nin_file; ++i) { int s, t; m_format->file_to_field(s, t, i, j); v->set(s, isite, t, *p++); } } } free(buf); } //==================================================================== void FieldIO_LIME::process_file(Field *v, const std::string filename) { FILE *fp = fopen(filename.c_str(), "r"); if (!fp) { vout.crucial(m_vl, "Error at %s: fopen failed.", __func__); exit(EXIT_FAILURE); } LimeReader *reader = limeCreateReader(fp); if (!reader) { vout.crucial(m_vl, "Error at %s: limeCreateReader failed.", __func__); exit(EXIT_FAILURE); } #if USE_ILDG_METADATA ILDG_Format::Params params; #endif // scan file for records. for ( ; ;) { int status = limeReaderNextRecord(reader); if (status != LIME_SUCCESS) break; const char *t = limeReaderType(reader); if (strcmp(t, "ildg-format") == 0) { #if USE_ILDG_METADATA load_metadata(reader, &params); check_metadata(&params); #endif } else if (strcmp(t, "ildg-binary-data") == 0) { load_data(reader, v); } else if (strcmp(t, "ildg-data-lfn") == 0) { load_lfn(reader); } else { vout.detailed(m_vl, "%s: known record %s.\n", __func__, t); } } // end loop over records. limeDestroyReader(reader); fclose(fp); } //==================================================================== void FieldIO_LIME::read_file(Field *v, const std::string filename) { const int nin_field = v->nin(); const int nex_field = v->nex(); const long_t Lvol = CommonParameters::Lvol(); Field vtmp; if (Communicator::is_primary()) { vout.detailed(m_vl, "reading gauge configuration from %s", filename.c_str()); vtmp.reset(nin_field, Lvol, nex_field); process_file(&vtmp, filename); } FieldIO::deliver(v, &vtmp); vout.detailed(m_vl, "read successful\n"); } //================================================================ #if USE_ILDG_METADATA void FieldIO_LIME::store_metadata(LimeWriter *writer) { // first, write metadata record. vout.detailed(m_vl, "%s: write metadata.\n", __func__); ILDG_Format::Params params; params.Lx = CommonParameters::Lx(); params.Ly = CommonParameters::Ly(); params.Lz = CommonParameters::Lz(); params.Lt = CommonParameters::Lt(); params.element_type = 0; params.prec = 8 * sizeof(double); ILDG_Format::Metadata md; md.store(&params); const int buf_size = 4 * 1024; char *buf = (char *)malloc(buf_size); md.write_to_buffer(buf, buf_size); off_t nbytes = strlen(buf); LimeRecordHeader *h = limeCreateHeader(1 /* MB */, 0 /* ME */, const_cast<char *>("ildg-format"), nbytes); limeWriteRecordHeader(h, writer); limeDestroyHeader(h); limeWriteRecordData(buf, &nbytes, writer); free(buf); } #endif //==================================================================== void FieldIO_LIME::store_data(LimeWriter *writer, Field *v, bool mark_begin, bool mark_end) { // second, write binary data. vout.detailed(m_vl, "%s: write binary data.\n", __func__); // off_t nbytes = sizeof(Field::element_type) * u->size(); off_t nbytes = sizeof(double) * v->size(); LimeRecordHeader *h = limeCreateHeader( mark_begin ? 1 : 0 /* MB */, mark_end ? 1 : 0 /* ME */, const_cast<char *>("ildg-binary-data"), nbytes); limeWriteRecordHeader(h, writer); limeDestroyHeader(h); char *buf = (char *)malloc(nbytes); if (!buf) { vout.crucial(m_vl, "Error at %s: malloc failed.\n", __func__); exit(EXIT_FAILURE); } // reorder and pack to buffer const int nin_field = v->nin(); const int nex_field = v->nex(); int nin_file = m_format->nin(); int nex_file = m_format->nex(); if ((nin_file == 0) || (nex_file == 0)) { nin_file = nin_field; nex_file = nex_field; } const long_t Lvol = CommonParameters::Lvol(); // Field::element_type *p = (Field::element_type *)buf; double *p = (double *)buf; for (int j = 0; j < nex_file; ++j) { for (long_t isite = 0; isite < Lvol; ++isite) { for (int i = 0; i < nin_file; ++i) { int s, t; m_format->file_to_field(s, t, i, j); *p++ = v->cmp(s, isite, t); } } } // adjust byteorder if (!FieldIO::is_bigendian()) { // byte_swap(buf, sizeof(Field::element_type), u->size()); byte_swap(buf, sizeof(double), v->size()); } // store limeWriteRecordData(buf, &nbytes, writer); vout.detailed(m_vl, "write succeeded.\n"); free(buf); // added by s.motoki[12.06.05]. } //==================================================================== void FieldIO_LIME::store_lfn(LimeWriter *writer, const std::string lfn_string) { off_t nbytes = lfn_string.size(); LimeRecordHeader *h = limeCreateHeader(1 /* MB */, 1 /* ME */, const_cast<char *>("ildg-data-lfn"), nbytes); limeWriteRecordHeader(h, writer); limeDestroyHeader(h); // store limeWriteRecordData(const_cast<char *>(lfn_string.c_str()), &nbytes, writer); vout.detailed(m_vl, "write succeeded.\n"); } //==================================================================== void FieldIO_LIME::write_file(Field *v, const std::string filename) { const int nin_field = v->nin(); const int nex_field = v->nex(); int nin_file = m_format->nin(); int nex_file = m_format->nex(); if ((nin_file == 0) || (nex_file == 0)) { nin_file = nin_field; nex_file = nex_field; } const long_t Lvol = CommonParameters::Lvol(); Field vtmp; if (Communicator::is_primary()) { vtmp.reset(nin_field, Lvol, nex_field); } // gather data FieldIO::gather(&vtmp, v); // reorder // dump to file. if (Communicator::is_primary()) { vout.detailed(m_vl, "writing gauge configuration to %s\n", filename.c_str()); FILE *fp = fopen(filename.c_str(), "w"); if (!fp) { vout.crucial(m_vl, "Error at %s: cannot open file for write\n", class_name.c_str()); exit(EXIT_FAILURE); } LimeWriter *writer = limeCreateWriter(fp); if (!writer) { vout.crucial(m_vl, "Error at %s: cannot create limeWriter\n", class_name.c_str()); exit(EXIT_FAILURE); } // first, write metadata #ifdef USE_ILDG_METADATA store_metadata(writer); #endif // second, write binary data. store_data(writer, &vtmp, true, true); // if any, write lfn. // store_lfn(writer, "lfn://"); limeDestroyWriter(writer); fclose(fp); } vout.detailed(m_vl, "write succeeded.\n"); // cleanup. } //==================================================================== void FieldIO_LIME::read_file(std::vector<Field *>& vv, const std::string& filename) { if (vv.size() == 0) return; const int nin_field = vv[0]->nin(); const int nex_field = vv[0]->nex(); const long_t Lvol = CommonParameters::Lvol(); Field vtmp; if (Communicator::is_primary()) { vout.detailed(m_vl, "reading gauge configuration from %s", filename.c_str()); vtmp.reset(nin_field, Lvol, nex_field); FILE *fp = fopen(filename.c_str(), "r"); if (!fp) { vout.crucial(m_vl, "Error at %s: fopen failed.", __func__); exit(EXIT_FAILURE); } LimeReader *reader = limeCreateReader(fp); if (!reader) { vout.crucial(m_vl, "Error at %s: limeCreateReader failed.", __func__); exit(EXIT_FAILURE); } // primary node reads file and deliver data to the other nodes. int idx = 0; // idx-th field // scan file for records. for ( ; ;) { int status = limeReaderNextRecord(reader); if (status != LIME_SUCCESS) break; const char *t = limeReaderType(reader); if (strcmp(t, "ildg-format") == 0) { #if USE_ILDG_METADATA ILDG_Format::Params params; load_metadata(reader, &params); check_metadata(&params); #endif } else if (strcmp(t, "ildg-binary-data") == 0) { load_data(reader, &vtmp); FieldIO::deliver(vv[idx++], &vtmp); } else if (strcmp(t, "ildg-data-lfn") == 0) { load_lfn(reader); } else { vout.detailed(m_vl, "%s: known record %s.\n", __func__, t); } } // end loop over records. limeDestroyReader(reader); fclose(fp); } else { // other nodes wait for data to be delivered from primary node. for (int i = 0, n = vv.size(); i < n; ++i) { FieldIO::deliver(vv[i], &vtmp); } } vout.detailed(m_vl, "read successful\n"); } //==================================================================== void FieldIO_LIME::write_file(std::vector<Field *>& vv, const std::string& filename) { if (vv.size() == 0) return; const int nin_field = vv[0]->nin(); const int nex_field = vv[0]->nex(); int nin_file = m_format->nin(); int nex_file = m_format->nex(); if ((nin_file == 0) || (nex_file == 0)) { nin_file = nin_field; nex_file = nex_field; } const long_t Lvol = CommonParameters::Lvol(); Field vtmp; if (Communicator::is_primary()) { vtmp.reset(nin_field, Lvol, nex_field); } FILE *fp = NULL; // only on primary node. LimeWriter *writer = NULL; // dump to file. if (Communicator::is_primary()) { vout.detailed(m_vl, "writing gauge configuration to %s\n", filename.c_str()); fp = fopen(filename.c_str(), "w"); if (!fp) { vout.crucial(m_vl, "Error at %s: cannot open file for write\n", class_name.c_str()); exit(EXIT_FAILURE); } writer = limeCreateWriter(fp); if (!writer) { vout.crucial(m_vl, "Error at %s: cannot create limeWriter\n", class_name.c_str()); exit(EXIT_FAILURE); } // first, write metadata #ifdef USE_ILDG_METADATA store_metadata(writer); #endif } for (int i = 0, n = vv.size(); i < n; ++i) { // gather data FieldIO::gather(&vtmp, vv[i]); if (Communicator::is_primary()) { // reorder // second, write binary data. store_data(writer, &vtmp, (i == 0), (i == n - 1)); } } if (Communicator::is_primary()) { // if any, write lfn. // store_lfn(writer, "lfn://"); limeDestroyWriter(writer); fclose(fp); } vout.detailed(m_vl, "write succeeded.\n"); // cleanup. } #else /* USE_LIMELIB */ void FieldIO_LIME::read_file(Field *v, const std::string filename) {} void FieldIO_LIME::write_file(Field *v, const std::string filename) {} #endif /* USE_LIMELIB */ //==================================================================== //============================================================END=====
[ "nbalexis@gmail.com" ]
nbalexis@gmail.com
b5c3ec2c75c43303dd859c4189820c2bdf498167
b172bc5d52162fb72b1f27b06a235ec20f7f0130
/Core/Entities/Character.hpp
b3d221e75c0f594f2ece6c5c459933253f641bc3
[]
no_license
vladvlasov256/ottersimulator
8249d719e92a2648917a0b4ad22db5876dd061df
41feb1eb0fbdc904c04d631859d9f935223d9771
refs/heads/master
2021-11-06T09:17:36.718894
2016-08-03T19:13:09
2016-08-03T19:13:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,560
hpp
// // Character.hpp // CoolOtter // // Created by Vladimir Vlasov on 02.05.16. // // #ifndef Character_hpp #define Character_hpp #include "cocos2d.h" #include "COCharacterRenderer.h" #include "Longboard.hpp" #include "external/Box2D/Box2D.h"//!!!headers path namespace ottersimulator { class Character : public cocos2d::Node { protected: enum PushState { kIdle = 0, kGoingDown = 1, kOnTheGround = 2, kBraking = 3, kGoingUp = 4 }; private: COCharacterRenderer* characterRenderer; std::map<std::string, b2Body*> boneBodies; b2PrismaticJoint* longboardJointBack; b2PrismaticJoint* longboardJointFront; b2PrismaticJoint* legJoint; b2RevoluteJoint* torsoJoint; std::map<std::string, cocos2d::Vec2> initialPositions; std::map<std::string, float> initialRotations; cocos2d::DrawNode* debugDrawNode;//!!!debug PushState pushState; cocos2d::Vec2 footPushShift; float footShiftDistance; std::chrono::time_point<std::chrono::system_clock> pushLastStateBegin; protected: static float getBoneLength(spBone* bone, spBone* parentBone); void updateLegTransforms(const std::string& boneNamePrefix); void updatePushState(); cocos2d::Vec2 getFootPosition(const std::string& boneNamePrefix, bool withPushShift=true); static std::chrono::time_point<std::chrono::system_clock> getCurrentTime(); void updateFootShiftPosition(); public: virtual bool initWithSkeletonAndAtlas(const std::string& skeletonFileName, const std::string& atlasFileName); static Character* createWithSkeletonAndAtlas(const std::string& skeletonFileName, const std::string& atlasFileName); void initPhysics(); void updateSprite(b2Body* body); void updateLegTransforms(); void onTick(); void onTouchMoved(cocos2d::Touch* touch); void putOnLongboard(Longboard* longboard); COCharacterRenderer* getCharacterRenderer() { return characterRenderer; } cocos2d::Vec2 getBonePosition(spBone* bone, spBone* rootBone) const; cocos2d::Vec2 getInitialBonePosition(const std::string& boneName) { return initialPositions[boneName]; } float getInitialBoneRotation(const std::string& boneName) { return initialRotations[boneName]; } void startPush(); void endPush(); }; } #endif /* Character_hpp */
[ "crivlaldo@yandex.ru" ]
crivlaldo@yandex.ru
5f22dcec327eaf6228a476320080adf81c43e82d
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/boost/1.78.0/libs/flyweight/example/composite.cpp
1395f412d2614dcb5cbc9b86ff78eb1a59b71794
[ "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "MIT", "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
4,289
cpp
/* Boost.Flyweight example of a composite design. * * Copyright 2006-2014 Joaquin M Lopez Munoz. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * See http://www.boost.org/libs/flyweight for library home page. */ #include <boost/flyweight.hpp> #include <boost/functional/hash.hpp> #include <boost/tokenizer.hpp> #include <boost/variant.hpp> #include <boost/variant/apply_visitor.hpp> #include <boost/variant/recursive_wrapper.hpp> #include <iostream> #include <stdexcept> #include <string> #include <vector> using namespace boost::flyweights; /* A node of a lisp-like list can be modeled as a boost::variant of * 1. A string (primitive node) * 2. A vector of nodes (embedded list) * To save space, 2 is stored as a vector of flyweights. * As is usual with recursive data structures, a node can be thought * of also as a list. To close the flyweight circle, the final * type list is a flyweight wrapper, so that the final structure can * be described as follows in BNF-like style: * * list ::= flyweight<list_impl> * list_impl ::= std::string | std::vector<list> */ struct list_elems; typedef boost::variant< std::string, boost::recursive_wrapper<list_elems> > list_impl; struct list_elems:std::vector<flyweight<list_impl> >{}; typedef flyweight<list_impl> list; /* list_impl must be hashable to be used by flyweight: If a * node is a std::string, its hash resolves to that of the string; * if it is a vector of flyweight nodes, we combine their corresponding * hash values. As hashing a flyweight does not involve actually hashing * its pointed-to value, the resulting computation does not recursively * descend down the entire data structure. */ struct list_hasher:boost::static_visitor<std::size_t> { std::size_t operator()(const std::string& str)const { boost::hash<std::string> h; return h(str); } std::size_t operator()(const list_elems& elms)const { std::size_t res=0; for(list_elems::const_iterator it=elms.begin(),it_end=elms.end(); it!=it_end;++it){ boost::hash_combine(res,*it); } return res; } }; #if defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP) namespace boost{ #endif std::size_t hash_value(const list_impl& limpl) { return boost::apply_visitor(list_hasher(),limpl); } #if defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP) } /* namespace boost */ #endif /* basic pretty printer with indentation according to the nesting level */ struct list_pretty_printer:boost::static_visitor<> { list_pretty_printer():nest(0){} void operator()(const std::string& str) { indent(); std::cout<<str<<"\n"; } void operator()(const boost::recursive_wrapper<list_elems>& elmsw) { indent(); std::cout<<"(\n"; ++nest; const list_elems& elms=elmsw.get(); for(list_elems::const_iterator it=elms.begin(),it_end=elms.end(); it!=it_end;++it){ boost::apply_visitor(*this,it->get()); } --nest; indent(); std::cout<<")\n"; } private: void indent()const { for(int i=nest;i--;)std::cout<<" "; } int nest; }; void pretty_print(const list& l) { list_pretty_printer pp; boost::apply_visitor(pp,l.get()); } /* list parser */ template<typename InputIterator> list parse_list(InputIterator& first,InputIterator last,int nest) { list_elems elms; while(first!=last){ std::string str=*first++; if(str=="("){ elms.push_back(parse_list(first,last,nest+1)); } else if(str==")"){ if(nest==0)throw std::runtime_error("unmatched )"); return list(elms); } else{ elms.push_back(list(str)); } } if(nest!=0)throw std::runtime_error("unmatched ("); return list(elms); } list parse_list(const std::string str) { typedef boost::tokenizer<boost::char_separator<char> > tokenizer; tokenizer tok(str,boost::char_separator<char>(" ","()")); tokenizer::iterator begin=tok.begin(); return parse_list(begin,tok.end(),0); } int main() { std::cout<<"enter list: "; std::string str; std::getline(std::cin,str); try{ pretty_print(parse_list(str)); } catch(const std::exception& e){ std::cout<<"error: "<<e.what()<<"\n"; } return 0; }
[ "frank@arangodb.com" ]
frank@arangodb.com
890ec67238ea6336c9a39997cffa6782801f02b1
6c8a158fd3eea6dc37b8497f9eb7ea2e57b91896
/116_QtGameTcpServer/tcpserver.h
1ef311b83bf6b591bd4536f03bcc4337e27f6b9c
[]
no_license
beduty/QtTrain
07677ec37730c230dbf5ba04c30ef69f39d29a45
5983ef485b5f45ae59ef2ac33bc40c7241ae6db7
refs/heads/master
2023-02-10T11:22:49.400596
2021-01-04T14:59:20
2021-01-04T14:59:20
326,716,000
0
0
null
null
null
null
UTF-8
C++
false
false
2,591
h
#ifndef TCPSERVER_H #define TCPSERVER_H #include <QWidget> #include <QTcpServer> #include <QTcpSocket> #include <QtNetwork> #include <QPlainTextEdit> QT_BEGIN_NAMESPACE namespace Ui { class TcpServer; } QT_END_NAMESPACE /// 와... QTcpServer 되게 좋다!!! /// 1. 기본적으로 비동기. ( Accept(NewConnetion), remove(Disconnected)) /// 2. 소켓클래스도 QTcpServer에 포함되어 Multi Client 사용하기 되게 편하다. /// --> QTcpSocket* 은 QTcpServer::nextPendingConnection()을 통해서 얻어오기 때문에 따로 관리할 필요가 없다. /// --> 받아온 QTcpSocket*은 QVector로 관리하여 클라이언트로 부터 메시지 들어오면 받아다가 모든 클라이언트에 뿌려줄때만 사용한다. /// --> QTcpServer가 제거될때 알아서 QTcpSocket*도 없어진다. 따라서 클라이언트와 연결끊어질 때 socket은 deleteLater() 해주면 된다. /// 3. QVector<QTcpSocket*> 을 쓰면 멀티 클라이언트 관리가 용이하다. /// --> QVector.removeOne(QTcpSocket*)을 쓰면 그냥 포인터만 넘기면 알아서 위치를 찾아 지워준다! /// 4. Signal-Slot 패턴에서 sender()를 쓰면, Signal보낸 QObject를 알 수 있다. /// -> 이를 활용하면 멀티 클라이언트 중에서 어떤 클라이언트가 메시지를 보내온 것인지 알 수 있다. /// 5. QHash<QTcpSocket*, QByteArray>를 사용하면 QTcpSocket별로 들어온 메시지 관리를 할 수 있다. /// /// ---> QTcpSocket을 계속 늘리기만 했고, 끊어졌을 때 재사용 방안을 마련해야한다. /// ----> 여기서는 Socket을 deleteLater했기때문에 재사용이 안된다고 봐야 한다. class TcpServer : public QWidget { Q_OBJECT public: TcpServer(QWidget *parent = nullptr); ~TcpServer(); private slots: void newConnection(); // QTcpServer의 NewConection시그널 처리한다. void removeConnection(); // QTcpSocket::disconnected 시그널 처리한다. void readyRead(); //QTcpSocket::readyRead 시그널 처리한다. void on_disconnectClients_clicked(); private: Ui::TcpServer *ui; QTcpServer *m_server; // 서버! 되게 좋다! QVector<QTcpSocket*> m_clients; // 클라이언트 연결될때마다 소켓 하나씩 늘린다. QHash<QTcpSocket*, QByteArray> m_receivedData; // 소켓별로 들어온 데이터를 관리한다. //--> m_receivedData[QTcpSocket*] 해주면 해당 소켓의 데이터를 확인 할 수 있다. void newMessage(QTcpSocket* sender, const QString& message); }; #endif // TCPSERVER_H
[ "jungty6735@gmail.com" ]
jungty6735@gmail.com
f26289fbb91e33a0c854fa3cb42cf8a7f37f2010
21840aca65db3330b732de6902974e95c5dce1a8
/CPPGenerated/tensorflow/contrib/tensorboard/plugins/trace/trace_info.pb.cc
0a5286af3b05bcaca0e595eeca942785ae26c798
[ "MIT" ]
permissive
nubbel/swift-tensorflow
818a53a1f16fed71066018801fa5071b4397ff06
3385401ed76ae8a0eca10f2757bb43b8a46f3d46
refs/heads/master
2021-01-17T15:46:58.033441
2017-10-31T15:01:51
2017-10-31T15:01:51
69,651,119
20
3
null
2017-04-25T15:28:40
2016-09-30T08:58:24
Swift
UTF-8
C++
false
true
104,556
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: tensorflow/contrib/tensorboard/plugins/trace/trace_info.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "tensorflow/contrib/tensorboard/plugins/trace/trace_info.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/port.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/wire_format_lite_inl.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // @@protoc_insertion_point(includes) namespace tensorflow { namespace contrib { namespace tensorboard { class TraceInfoDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<TraceInfo> { } _TraceInfo_default_instance_; class OpInfoDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<OpInfo> { } _OpInfo_default_instance_; class LineTraceDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<LineTrace> { } _LineTrace_default_instance_; class TensorInfoDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<TensorInfo> { } _TensorInfo_default_instance_; class FileInfoDefaultTypeInternal : public ::google::protobuf::internal::ExplicitlyConstructed<FileInfo> { } _FileInfo_default_instance_; namespace protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto { namespace { ::google::protobuf::Metadata file_level_metadata[6]; } // namespace const ::google::protobuf::uint32 TableStruct::offsets[] = { ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TraceInfo, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TraceInfo, ops_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TraceInfo, files_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, op_type_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, device_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, traceback_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, inputs_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(OpInfo, outputs_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LineTrace, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LineTrace, file_path_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LineTrace, line_number_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TensorInfo, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TensorInfo, shape_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TensorInfo, dtype_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TensorInfo, num_bytes_per_elem_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(TensorInfo, consumers_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileInfo, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileInfo, file_path_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileInfo, source_code_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileInfo, multiline_statements_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] = { { 0, -1, sizeof(TraceInfo)}, { 6, -1, sizeof(OpInfo)}, { 16, -1, sizeof(LineTrace)}, { 22, -1, sizeof(TensorInfo)}, { 30, -1, sizeof(FileInfo)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast<const ::google::protobuf::Message*>(&_TraceInfo_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&_OpInfo_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&_LineTrace_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&_TensorInfo_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&_FileInfo_default_instance_), }; namespace { void protobuf_AssignDescriptors() { AddDescriptors(); ::google::protobuf::MessageFactory* factory = NULL; AssignDescriptors( "tensorflow/contrib/tensorboard/plugins/trace/trace_info.proto", schemas, file_default_instances, TableStruct::offsets, factory, file_level_metadata, NULL, NULL); } void protobuf_AssignDescriptorsOnce() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &protobuf_AssignDescriptors); } void protobuf_RegisterTypes(const ::std::string&) GOOGLE_ATTRIBUTE_COLD; void protobuf_RegisterTypes(const ::std::string&) { protobuf_AssignDescriptorsOnce(); ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 6); const ::google::protobuf::Descriptor* FileInfo_MultilineStatementsEntry_descriptor = protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[4].descriptor; ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( FileInfo_MultilineStatementsEntry_descriptor, ::google::protobuf::internal::MapEntry< ::google::protobuf::uint32, ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32, 0>::CreateDefaultInstance( FileInfo_MultilineStatementsEntry_descriptor)); } } // namespace void TableStruct::Shutdown() { _TraceInfo_default_instance_.Shutdown(); delete file_level_metadata[0].reflection; _OpInfo_default_instance_.Shutdown(); delete file_level_metadata[1].reflection; _LineTrace_default_instance_.Shutdown(); delete file_level_metadata[2].reflection; _TensorInfo_default_instance_.Shutdown(); delete file_level_metadata[3].reflection; _FileInfo_default_instance_.Shutdown(); delete file_level_metadata[5].reflection; } void TableStruct::InitDefaultsImpl() { GOOGLE_PROTOBUF_VERIFY_VERSION; ::google::protobuf::internal::InitProtobufDefaults(); _TraceInfo_default_instance_.DefaultConstruct(); _OpInfo_default_instance_.DefaultConstruct(); _LineTrace_default_instance_.DefaultConstruct(); _TensorInfo_default_instance_.DefaultConstruct(); _FileInfo_default_instance_.DefaultConstruct(); } void InitDefaults() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &TableStruct::InitDefaultsImpl); } void AddDescriptorsImpl() { InitDefaults(); static const char descriptor[] = { "\n=tensorflow/contrib/tensorboard/plugins" "/trace/trace_info.proto\022\036tensorflow.cont" "rib.tensorboard\"y\n\tTraceInfo\0223\n\003ops\030\001 \003(" "\0132&.tensorflow.contrib.tensorboard.OpInf" "o\0227\n\005files\030\002 \003(\0132(.tensorflow.contrib.te" "nsorboard.FileInfo\"\356\001\n\006OpInfo\022\014\n\004name\030\001 " "\001(\t\022\017\n\007op_type\030\002 \001(\t\022\016\n\006device\030\003 \001(\t\022<\n\t" "traceback\030\004 \003(\0132).tensorflow.contrib.ten" "sorboard.LineTrace\022:\n\006inputs\030\005 \003(\0132*.ten" "sorflow.contrib.tensorboard.TensorInfo\022;" "\n\007outputs\030\006 \003(\0132*.tensorflow.contrib.ten" "sorboard.TensorInfo\"3\n\tLineTrace\022\021\n\tfile" "_path\030\001 \001(\t\022\023\n\013line_number\030\002 \001(\r\"Y\n\nTens" "orInfo\022\r\n\005shape\030\001 \003(\005\022\r\n\005dtype\030\002 \001(\t\022\032\n\022" "num_bytes_per_elem\030\003 \001(\r\022\021\n\tconsumers\030\004 " "\003(\t\"\317\001\n\010FileInfo\022\021\n\tfile_path\030\001 \001(\t\022\023\n\013s" "ource_code\030\002 \001(\t\022_\n\024multiline_statements" "\030\003 \003(\0132A.tensorflow.contrib.tensorboard." "FileInfo.MultilineStatementsEntry\032:\n\030Mul" "tilineStatementsEntry\022\013\n\003key\030\001 \001(\r\022\r\n\005va" "lue\030\002 \001(\r:\0028\001b\006proto3" }; ::google::protobuf::DescriptorPool::InternalAddGeneratedFile( descriptor, 821); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "tensorflow/contrib/tensorboard/plugins/trace/trace_info.proto", &protobuf_RegisterTypes); ::google::protobuf::internal::OnShutdown(&TableStruct::Shutdown); } void AddDescriptors() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl); } // Force AddDescriptors() to be called at static initialization time. struct StaticDescriptorInitializer { StaticDescriptorInitializer() { AddDescriptors(); } } static_descriptor_initializer; } // namespace protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TraceInfo::kOpsFieldNumber; const int TraceInfo::kFilesFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TraceInfo::TraceInfo() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.contrib.tensorboard.TraceInfo) } TraceInfo::TraceInfo(const TraceInfo& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), ops_(from.ops_), files_(from.files_), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); // @@protoc_insertion_point(copy_constructor:tensorflow.contrib.tensorboard.TraceInfo) } void TraceInfo::SharedCtor() { _cached_size_ = 0; } TraceInfo::~TraceInfo() { // @@protoc_insertion_point(destructor:tensorflow.contrib.tensorboard.TraceInfo) SharedDtor(); } void TraceInfo::SharedDtor() { } void TraceInfo::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* TraceInfo::descriptor() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[0].descriptor; } const TraceInfo& TraceInfo::default_instance() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); return *internal_default_instance(); } TraceInfo* TraceInfo::New(::google::protobuf::Arena* arena) const { TraceInfo* n = new TraceInfo; if (arena != NULL) { arena->Own(n); } return n; } void TraceInfo::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.contrib.tensorboard.TraceInfo) ops_.Clear(); files_.Clear(); } bool TraceInfo::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.contrib.tensorboard.TraceInfo) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated .tensorflow.contrib.tensorboard.OpInfo ops = 1; case 1: { if (tag == 10u) { DO_(input->IncrementRecursionDepth()); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth( input, add_ops())); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } // repeated .tensorflow.contrib.tensorboard.FileInfo files = 2; case 2: { if (tag == 18u) { DO_(input->IncrementRecursionDepth()); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth( input, add_files())); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag)); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.contrib.tensorboard.TraceInfo) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.contrib.tensorboard.TraceInfo) return false; #undef DO_ } void TraceInfo::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.contrib.tensorboard.TraceInfo) // repeated .tensorflow.contrib.tensorboard.OpInfo ops = 1; for (unsigned int i = 0, n = this->ops_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, this->ops(i), output); } // repeated .tensorflow.contrib.tensorboard.FileInfo files = 2; for (unsigned int i = 0, n = this->files_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, this->files(i), output); } // @@protoc_insertion_point(serialize_end:tensorflow.contrib.tensorboard.TraceInfo) } ::google::protobuf::uint8* TraceInfo::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.contrib.tensorboard.TraceInfo) // repeated .tensorflow.contrib.tensorboard.OpInfo ops = 1; for (unsigned int i = 0, n = this->ops_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 1, this->ops(i), false, target); } // repeated .tensorflow.contrib.tensorboard.FileInfo files = 2; for (unsigned int i = 0, n = this->files_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 2, this->files(i), false, target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.contrib.tensorboard.TraceInfo) return target; } size_t TraceInfo::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.contrib.tensorboard.TraceInfo) size_t total_size = 0; // repeated .tensorflow.contrib.tensorboard.OpInfo ops = 1; { unsigned int count = this->ops_size(); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->ops(i)); } } // repeated .tensorflow.contrib.tensorboard.FileInfo files = 2; { unsigned int count = this->files_size(); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->files(i)); } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void TraceInfo::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.contrib.tensorboard.TraceInfo) GOOGLE_DCHECK_NE(&from, this); const TraceInfo* source = ::google::protobuf::internal::DynamicCastToGenerated<const TraceInfo>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.contrib.tensorboard.TraceInfo) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.contrib.tensorboard.TraceInfo) MergeFrom(*source); } } void TraceInfo::MergeFrom(const TraceInfo& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.contrib.tensorboard.TraceInfo) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ops_.MergeFrom(from.ops_); files_.MergeFrom(from.files_); } void TraceInfo::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.contrib.tensorboard.TraceInfo) if (&from == this) return; Clear(); MergeFrom(from); } void TraceInfo::CopyFrom(const TraceInfo& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.contrib.tensorboard.TraceInfo) if (&from == this) return; Clear(); MergeFrom(from); } bool TraceInfo::IsInitialized() const { return true; } void TraceInfo::Swap(TraceInfo* other) { if (other == this) return; InternalSwap(other); } void TraceInfo::InternalSwap(TraceInfo* other) { ops_.UnsafeArenaSwap(&other->ops_); files_.UnsafeArenaSwap(&other->files_); std::swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata TraceInfo::GetMetadata() const { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[0]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // TraceInfo // repeated .tensorflow.contrib.tensorboard.OpInfo ops = 1; int TraceInfo::ops_size() const { return ops_.size(); } void TraceInfo::clear_ops() { ops_.Clear(); } const ::tensorflow::contrib::tensorboard::OpInfo& TraceInfo::ops(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TraceInfo.ops) return ops_.Get(index); } ::tensorflow::contrib::tensorboard::OpInfo* TraceInfo::mutable_ops(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.TraceInfo.ops) return ops_.Mutable(index); } ::tensorflow::contrib::tensorboard::OpInfo* TraceInfo::add_ops() { // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.TraceInfo.ops) return ops_.Add(); } ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::OpInfo >* TraceInfo::mutable_ops() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.TraceInfo.ops) return &ops_; } const ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::OpInfo >& TraceInfo::ops() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.TraceInfo.ops) return ops_; } // repeated .tensorflow.contrib.tensorboard.FileInfo files = 2; int TraceInfo::files_size() const { return files_.size(); } void TraceInfo::clear_files() { files_.Clear(); } const ::tensorflow::contrib::tensorboard::FileInfo& TraceInfo::files(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TraceInfo.files) return files_.Get(index); } ::tensorflow::contrib::tensorboard::FileInfo* TraceInfo::mutable_files(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.TraceInfo.files) return files_.Mutable(index); } ::tensorflow::contrib::tensorboard::FileInfo* TraceInfo::add_files() { // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.TraceInfo.files) return files_.Add(); } ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::FileInfo >* TraceInfo::mutable_files() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.TraceInfo.files) return &files_; } const ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::FileInfo >& TraceInfo::files() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.TraceInfo.files) return files_; } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int OpInfo::kNameFieldNumber; const int OpInfo::kOpTypeFieldNumber; const int OpInfo::kDeviceFieldNumber; const int OpInfo::kTracebackFieldNumber; const int OpInfo::kInputsFieldNumber; const int OpInfo::kOutputsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 OpInfo::OpInfo() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.contrib.tensorboard.OpInfo) } OpInfo::OpInfo(const OpInfo& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), traceback_(from.traceback_), inputs_(from.inputs_), outputs_(from.outputs_), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } op_type_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.op_type().size() > 0) { op_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.op_type_); } device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.device().size() > 0) { device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); } // @@protoc_insertion_point(copy_constructor:tensorflow.contrib.tensorboard.OpInfo) } void OpInfo::SharedCtor() { name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); op_type_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); device_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _cached_size_ = 0; } OpInfo::~OpInfo() { // @@protoc_insertion_point(destructor:tensorflow.contrib.tensorboard.OpInfo) SharedDtor(); } void OpInfo::SharedDtor() { name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); op_type_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); device_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void OpInfo::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* OpInfo::descriptor() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[1].descriptor; } const OpInfo& OpInfo::default_instance() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); return *internal_default_instance(); } OpInfo* OpInfo::New(::google::protobuf::Arena* arena) const { OpInfo* n = new OpInfo; if (arena != NULL) { arena->Own(n); } return n; } void OpInfo::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.contrib.tensorboard.OpInfo) traceback_.Clear(); inputs_.Clear(); outputs_.Clear(); name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); op_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); device_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } bool OpInfo::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.contrib.tensorboard.OpInfo) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string name = 1; case 1: { if (tag == 10u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.OpInfo.name")); } else { goto handle_unusual; } break; } // string op_type = 2; case 2: { if (tag == 18u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_op_type())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->op_type().data(), this->op_type().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.OpInfo.op_type")); } else { goto handle_unusual; } break; } // string device = 3; case 3: { if (tag == 26u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_device())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->device().data(), this->device().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.OpInfo.device")); } else { goto handle_unusual; } break; } // repeated .tensorflow.contrib.tensorboard.LineTrace traceback = 4; case 4: { if (tag == 34u) { DO_(input->IncrementRecursionDepth()); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth( input, add_traceback())); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } // repeated .tensorflow.contrib.tensorboard.TensorInfo inputs = 5; case 5: { if (tag == 42u) { DO_(input->IncrementRecursionDepth()); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth( input, add_inputs())); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } // repeated .tensorflow.contrib.tensorboard.TensorInfo outputs = 6; case 6: { if (tag == 50u) { DO_(input->IncrementRecursionDepth()); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtualNoRecursionDepth( input, add_outputs())); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag)); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.contrib.tensorboard.OpInfo) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.contrib.tensorboard.OpInfo) return false; #undef DO_ } void OpInfo::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.contrib.tensorboard.OpInfo) // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->name(), output); } // string op_type = 2; if (this->op_type().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->op_type().data(), this->op_type().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.op_type"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->op_type(), output); } // string device = 3; if (this->device().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->device().data(), this->device().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.device"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->device(), output); } // repeated .tensorflow.contrib.tensorboard.LineTrace traceback = 4; for (unsigned int i = 0, n = this->traceback_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 4, this->traceback(i), output); } // repeated .tensorflow.contrib.tensorboard.TensorInfo inputs = 5; for (unsigned int i = 0, n = this->inputs_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 5, this->inputs(i), output); } // repeated .tensorflow.contrib.tensorboard.TensorInfo outputs = 6; for (unsigned int i = 0, n = this->outputs_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 6, this->outputs(i), output); } // @@protoc_insertion_point(serialize_end:tensorflow.contrib.tensorboard.OpInfo) } ::google::protobuf::uint8* OpInfo::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.contrib.tensorboard.OpInfo) // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->name(), target); } // string op_type = 2; if (this->op_type().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->op_type().data(), this->op_type().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.op_type"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->op_type(), target); } // string device = 3; if (this->device().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->device().data(), this->device().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.OpInfo.device"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->device(), target); } // repeated .tensorflow.contrib.tensorboard.LineTrace traceback = 4; for (unsigned int i = 0, n = this->traceback_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 4, this->traceback(i), false, target); } // repeated .tensorflow.contrib.tensorboard.TensorInfo inputs = 5; for (unsigned int i = 0, n = this->inputs_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 5, this->inputs(i), false, target); } // repeated .tensorflow.contrib.tensorboard.TensorInfo outputs = 6; for (unsigned int i = 0, n = this->outputs_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 6, this->outputs(i), false, target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.contrib.tensorboard.OpInfo) return target; } size_t OpInfo::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.contrib.tensorboard.OpInfo) size_t total_size = 0; // repeated .tensorflow.contrib.tensorboard.LineTrace traceback = 4; { unsigned int count = this->traceback_size(); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->traceback(i)); } } // repeated .tensorflow.contrib.tensorboard.TensorInfo inputs = 5; { unsigned int count = this->inputs_size(); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->inputs(i)); } } // repeated .tensorflow.contrib.tensorboard.TensorInfo outputs = 6; { unsigned int count = this->outputs_size(); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->outputs(i)); } } // string name = 1; if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } // string op_type = 2; if (this->op_type().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->op_type()); } // string device = 3; if (this->device().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->device()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void OpInfo::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.contrib.tensorboard.OpInfo) GOOGLE_DCHECK_NE(&from, this); const OpInfo* source = ::google::protobuf::internal::DynamicCastToGenerated<const OpInfo>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.contrib.tensorboard.OpInfo) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.contrib.tensorboard.OpInfo) MergeFrom(*source); } } void OpInfo::MergeFrom(const OpInfo& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.contrib.tensorboard.OpInfo) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); traceback_.MergeFrom(from.traceback_); inputs_.MergeFrom(from.inputs_); outputs_.MergeFrom(from.outputs_); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } if (from.op_type().size() > 0) { op_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.op_type_); } if (from.device().size() > 0) { device_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.device_); } } void OpInfo::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.contrib.tensorboard.OpInfo) if (&from == this) return; Clear(); MergeFrom(from); } void OpInfo::CopyFrom(const OpInfo& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.contrib.tensorboard.OpInfo) if (&from == this) return; Clear(); MergeFrom(from); } bool OpInfo::IsInitialized() const { return true; } void OpInfo::Swap(OpInfo* other) { if (other == this) return; InternalSwap(other); } void OpInfo::InternalSwap(OpInfo* other) { traceback_.UnsafeArenaSwap(&other->traceback_); inputs_.UnsafeArenaSwap(&other->inputs_); outputs_.UnsafeArenaSwap(&other->outputs_); name_.Swap(&other->name_); op_type_.Swap(&other->op_type_); device_.Swap(&other->device_); std::swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata OpInfo::GetMetadata() const { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[1]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // OpInfo // string name = 1; void OpInfo::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& OpInfo::name() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.name) return name_.GetNoArena(); } void OpInfo::set_name(const ::std::string& value) { name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.OpInfo.name) } #if LANG_CXX11 void OpInfo::set_name(::std::string&& value) { name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.OpInfo.name) } #endif void OpInfo::set_name(const char* value) { name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.OpInfo.name) } void OpInfo::set_name(const char* value, size_t size) { name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.OpInfo.name) } ::std::string* OpInfo::mutable_name() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* OpInfo::release_name() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.OpInfo.name) return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void OpInfo::set_allocated_name(::std::string* name) { if (name != NULL) { } else { } name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.OpInfo.name) } // string op_type = 2; void OpInfo::clear_op_type() { op_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& OpInfo::op_type() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.op_type) return op_type_.GetNoArena(); } void OpInfo::set_op_type(const ::std::string& value) { op_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.OpInfo.op_type) } #if LANG_CXX11 void OpInfo::set_op_type(::std::string&& value) { op_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.OpInfo.op_type) } #endif void OpInfo::set_op_type(const char* value) { op_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.OpInfo.op_type) } void OpInfo::set_op_type(const char* value, size_t size) { op_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.OpInfo.op_type) } ::std::string* OpInfo::mutable_op_type() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.op_type) return op_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* OpInfo::release_op_type() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.OpInfo.op_type) return op_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void OpInfo::set_allocated_op_type(::std::string* op_type) { if (op_type != NULL) { } else { } op_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), op_type); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.OpInfo.op_type) } // string device = 3; void OpInfo::clear_device() { device_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& OpInfo::device() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.device) return device_.GetNoArena(); } void OpInfo::set_device(const ::std::string& value) { device_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.OpInfo.device) } #if LANG_CXX11 void OpInfo::set_device(::std::string&& value) { device_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.OpInfo.device) } #endif void OpInfo::set_device(const char* value) { device_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.OpInfo.device) } void OpInfo::set_device(const char* value, size_t size) { device_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.OpInfo.device) } ::std::string* OpInfo::mutable_device() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.device) return device_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* OpInfo::release_device() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.OpInfo.device) return device_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void OpInfo::set_allocated_device(::std::string* device) { if (device != NULL) { } else { } device_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), device); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.OpInfo.device) } // repeated .tensorflow.contrib.tensorboard.LineTrace traceback = 4; int OpInfo::traceback_size() const { return traceback_.size(); } void OpInfo::clear_traceback() { traceback_.Clear(); } const ::tensorflow::contrib::tensorboard::LineTrace& OpInfo::traceback(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.traceback) return traceback_.Get(index); } ::tensorflow::contrib::tensorboard::LineTrace* OpInfo::mutable_traceback(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.traceback) return traceback_.Mutable(index); } ::tensorflow::contrib::tensorboard::LineTrace* OpInfo::add_traceback() { // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.OpInfo.traceback) return traceback_.Add(); } ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::LineTrace >* OpInfo::mutable_traceback() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.OpInfo.traceback) return &traceback_; } const ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::LineTrace >& OpInfo::traceback() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.OpInfo.traceback) return traceback_; } // repeated .tensorflow.contrib.tensorboard.TensorInfo inputs = 5; int OpInfo::inputs_size() const { return inputs_.size(); } void OpInfo::clear_inputs() { inputs_.Clear(); } const ::tensorflow::contrib::tensorboard::TensorInfo& OpInfo::inputs(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.inputs) return inputs_.Get(index); } ::tensorflow::contrib::tensorboard::TensorInfo* OpInfo::mutable_inputs(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.inputs) return inputs_.Mutable(index); } ::tensorflow::contrib::tensorboard::TensorInfo* OpInfo::add_inputs() { // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.OpInfo.inputs) return inputs_.Add(); } ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::TensorInfo >* OpInfo::mutable_inputs() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.OpInfo.inputs) return &inputs_; } const ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::TensorInfo >& OpInfo::inputs() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.OpInfo.inputs) return inputs_; } // repeated .tensorflow.contrib.tensorboard.TensorInfo outputs = 6; int OpInfo::outputs_size() const { return outputs_.size(); } void OpInfo::clear_outputs() { outputs_.Clear(); } const ::tensorflow::contrib::tensorboard::TensorInfo& OpInfo::outputs(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.OpInfo.outputs) return outputs_.Get(index); } ::tensorflow::contrib::tensorboard::TensorInfo* OpInfo::mutable_outputs(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.OpInfo.outputs) return outputs_.Mutable(index); } ::tensorflow::contrib::tensorboard::TensorInfo* OpInfo::add_outputs() { // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.OpInfo.outputs) return outputs_.Add(); } ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::TensorInfo >* OpInfo::mutable_outputs() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.OpInfo.outputs) return &outputs_; } const ::google::protobuf::RepeatedPtrField< ::tensorflow::contrib::tensorboard::TensorInfo >& OpInfo::outputs() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.OpInfo.outputs) return outputs_; } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int LineTrace::kFilePathFieldNumber; const int LineTrace::kLineNumberFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 LineTrace::LineTrace() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.contrib.tensorboard.LineTrace) } LineTrace::LineTrace(const LineTrace& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); file_path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.file_path().size() > 0) { file_path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_path_); } line_number_ = from.line_number_; // @@protoc_insertion_point(copy_constructor:tensorflow.contrib.tensorboard.LineTrace) } void LineTrace::SharedCtor() { file_path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); line_number_ = 0u; _cached_size_ = 0; } LineTrace::~LineTrace() { // @@protoc_insertion_point(destructor:tensorflow.contrib.tensorboard.LineTrace) SharedDtor(); } void LineTrace::SharedDtor() { file_path_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void LineTrace::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* LineTrace::descriptor() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[2].descriptor; } const LineTrace& LineTrace::default_instance() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); return *internal_default_instance(); } LineTrace* LineTrace::New(::google::protobuf::Arena* arena) const { LineTrace* n = new LineTrace; if (arena != NULL) { arena->Own(n); } return n; } void LineTrace::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.contrib.tensorboard.LineTrace) file_path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); line_number_ = 0u; } bool LineTrace::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.contrib.tensorboard.LineTrace) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string file_path = 1; case 1: { if (tag == 10u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_file_path())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.LineTrace.file_path")); } else { goto handle_unusual; } break; } // uint32 line_number = 2; case 2: { if (tag == 16u) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>( input, &line_number_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag)); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.contrib.tensorboard.LineTrace) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.contrib.tensorboard.LineTrace) return false; #undef DO_ } void LineTrace::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.contrib.tensorboard.LineTrace) // string file_path = 1; if (this->file_path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.LineTrace.file_path"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->file_path(), output); } // uint32 line_number = 2; if (this->line_number() != 0) { ::google::protobuf::internal::WireFormatLite::WriteUInt32(2, this->line_number(), output); } // @@protoc_insertion_point(serialize_end:tensorflow.contrib.tensorboard.LineTrace) } ::google::protobuf::uint8* LineTrace::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.contrib.tensorboard.LineTrace) // string file_path = 1; if (this->file_path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.LineTrace.file_path"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->file_path(), target); } // uint32 line_number = 2; if (this->line_number() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteUInt32ToArray(2, this->line_number(), target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.contrib.tensorboard.LineTrace) return target; } size_t LineTrace::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.contrib.tensorboard.LineTrace) size_t total_size = 0; // string file_path = 1; if (this->file_path().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->file_path()); } // uint32 line_number = 2; if (this->line_number() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::UInt32Size( this->line_number()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void LineTrace::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.contrib.tensorboard.LineTrace) GOOGLE_DCHECK_NE(&from, this); const LineTrace* source = ::google::protobuf::internal::DynamicCastToGenerated<const LineTrace>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.contrib.tensorboard.LineTrace) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.contrib.tensorboard.LineTrace) MergeFrom(*source); } } void LineTrace::MergeFrom(const LineTrace& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.contrib.tensorboard.LineTrace) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.file_path().size() > 0) { file_path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_path_); } if (from.line_number() != 0) { set_line_number(from.line_number()); } } void LineTrace::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.contrib.tensorboard.LineTrace) if (&from == this) return; Clear(); MergeFrom(from); } void LineTrace::CopyFrom(const LineTrace& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.contrib.tensorboard.LineTrace) if (&from == this) return; Clear(); MergeFrom(from); } bool LineTrace::IsInitialized() const { return true; } void LineTrace::Swap(LineTrace* other) { if (other == this) return; InternalSwap(other); } void LineTrace::InternalSwap(LineTrace* other) { file_path_.Swap(&other->file_path_); std::swap(line_number_, other->line_number_); std::swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata LineTrace::GetMetadata() const { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[2]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // LineTrace // string file_path = 1; void LineTrace::clear_file_path() { file_path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& LineTrace::file_path() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.LineTrace.file_path) return file_path_.GetNoArena(); } void LineTrace::set_file_path(const ::std::string& value) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.LineTrace.file_path) } #if LANG_CXX11 void LineTrace::set_file_path(::std::string&& value) { file_path_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.LineTrace.file_path) } #endif void LineTrace::set_file_path(const char* value) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.LineTrace.file_path) } void LineTrace::set_file_path(const char* value, size_t size) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.LineTrace.file_path) } ::std::string* LineTrace::mutable_file_path() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.LineTrace.file_path) return file_path_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* LineTrace::release_file_path() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.LineTrace.file_path) return file_path_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void LineTrace::set_allocated_file_path(::std::string* file_path) { if (file_path != NULL) { } else { } file_path_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), file_path); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.LineTrace.file_path) } // uint32 line_number = 2; void LineTrace::clear_line_number() { line_number_ = 0u; } ::google::protobuf::uint32 LineTrace::line_number() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.LineTrace.line_number) return line_number_; } void LineTrace::set_line_number(::google::protobuf::uint32 value) { line_number_ = value; // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.LineTrace.line_number) } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TensorInfo::kShapeFieldNumber; const int TensorInfo::kDtypeFieldNumber; const int TensorInfo::kNumBytesPerElemFieldNumber; const int TensorInfo::kConsumersFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TensorInfo::TensorInfo() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.contrib.tensorboard.TensorInfo) } TensorInfo::TensorInfo(const TensorInfo& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), shape_(from.shape_), consumers_(from.consumers_), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); dtype_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.dtype().size() > 0) { dtype_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.dtype_); } num_bytes_per_elem_ = from.num_bytes_per_elem_; // @@protoc_insertion_point(copy_constructor:tensorflow.contrib.tensorboard.TensorInfo) } void TensorInfo::SharedCtor() { dtype_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); num_bytes_per_elem_ = 0u; _cached_size_ = 0; } TensorInfo::~TensorInfo() { // @@protoc_insertion_point(destructor:tensorflow.contrib.tensorboard.TensorInfo) SharedDtor(); } void TensorInfo::SharedDtor() { dtype_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void TensorInfo::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* TensorInfo::descriptor() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[3].descriptor; } const TensorInfo& TensorInfo::default_instance() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); return *internal_default_instance(); } TensorInfo* TensorInfo::New(::google::protobuf::Arena* arena) const { TensorInfo* n = new TensorInfo; if (arena != NULL) { arena->Own(n); } return n; } void TensorInfo::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.contrib.tensorboard.TensorInfo) shape_.Clear(); consumers_.Clear(); dtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); num_bytes_per_elem_ = 0u; } bool TensorInfo::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.contrib.tensorboard.TensorInfo) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated int32 shape = 1; case 1: { if (tag == 10u) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, this->mutable_shape()))); } else if (tag == 8u) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( 1, 10u, input, this->mutable_shape()))); } else { goto handle_unusual; } break; } // string dtype = 2; case 2: { if (tag == 18u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_dtype())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dtype().data(), this->dtype().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.TensorInfo.dtype")); } else { goto handle_unusual; } break; } // uint32 num_bytes_per_elem = 3; case 3: { if (tag == 24u) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>( input, &num_bytes_per_elem_))); } else { goto handle_unusual; } break; } // repeated string consumers = 4; case 4: { if (tag == 34u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_consumers())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->consumers(this->consumers_size() - 1).data(), this->consumers(this->consumers_size() - 1).length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.TensorInfo.consumers")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag)); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.contrib.tensorboard.TensorInfo) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.contrib.tensorboard.TensorInfo) return false; #undef DO_ } void TensorInfo::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.contrib.tensorboard.TensorInfo) // repeated int32 shape = 1; if (this->shape_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(1, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(_shape_cached_byte_size_); } for (int i = 0; i < this->shape_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteInt32NoTag( this->shape(i), output); } // string dtype = 2; if (this->dtype().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dtype().data(), this->dtype().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.TensorInfo.dtype"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->dtype(), output); } // uint32 num_bytes_per_elem = 3; if (this->num_bytes_per_elem() != 0) { ::google::protobuf::internal::WireFormatLite::WriteUInt32(3, this->num_bytes_per_elem(), output); } // repeated string consumers = 4; for (int i = 0; i < this->consumers_size(); i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->consumers(i).data(), this->consumers(i).length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.TensorInfo.consumers"); ::google::protobuf::internal::WireFormatLite::WriteString( 4, this->consumers(i), output); } // @@protoc_insertion_point(serialize_end:tensorflow.contrib.tensorboard.TensorInfo) } ::google::protobuf::uint8* TensorInfo::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.contrib.tensorboard.TensorInfo) // repeated int32 shape = 1; if (this->shape_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 1, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( _shape_cached_byte_size_, target); } for (int i = 0; i < this->shape_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteInt32NoTagToArray(this->shape(i), target); } // string dtype = 2; if (this->dtype().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dtype().data(), this->dtype().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.TensorInfo.dtype"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->dtype(), target); } // uint32 num_bytes_per_elem = 3; if (this->num_bytes_per_elem() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteUInt32ToArray(3, this->num_bytes_per_elem(), target); } // repeated string consumers = 4; for (int i = 0; i < this->consumers_size(); i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->consumers(i).data(), this->consumers(i).length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.TensorInfo.consumers"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(4, this->consumers(i), target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.contrib.tensorboard.TensorInfo) return target; } size_t TensorInfo::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.contrib.tensorboard.TensorInfo) size_t total_size = 0; // repeated int32 shape = 1; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: Int32Size(this->shape_); if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size(data_size); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _shape_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated string consumers = 4; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->consumers_size()); for (int i = 0; i < this->consumers_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->consumers(i)); } // string dtype = 2; if (this->dtype().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->dtype()); } // uint32 num_bytes_per_elem = 3; if (this->num_bytes_per_elem() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::UInt32Size( this->num_bytes_per_elem()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void TensorInfo::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.contrib.tensorboard.TensorInfo) GOOGLE_DCHECK_NE(&from, this); const TensorInfo* source = ::google::protobuf::internal::DynamicCastToGenerated<const TensorInfo>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.contrib.tensorboard.TensorInfo) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.contrib.tensorboard.TensorInfo) MergeFrom(*source); } } void TensorInfo::MergeFrom(const TensorInfo& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.contrib.tensorboard.TensorInfo) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); shape_.MergeFrom(from.shape_); consumers_.MergeFrom(from.consumers_); if (from.dtype().size() > 0) { dtype_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.dtype_); } if (from.num_bytes_per_elem() != 0) { set_num_bytes_per_elem(from.num_bytes_per_elem()); } } void TensorInfo::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.contrib.tensorboard.TensorInfo) if (&from == this) return; Clear(); MergeFrom(from); } void TensorInfo::CopyFrom(const TensorInfo& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.contrib.tensorboard.TensorInfo) if (&from == this) return; Clear(); MergeFrom(from); } bool TensorInfo::IsInitialized() const { return true; } void TensorInfo::Swap(TensorInfo* other) { if (other == this) return; InternalSwap(other); } void TensorInfo::InternalSwap(TensorInfo* other) { shape_.UnsafeArenaSwap(&other->shape_); consumers_.UnsafeArenaSwap(&other->consumers_); dtype_.Swap(&other->dtype_); std::swap(num_bytes_per_elem_, other->num_bytes_per_elem_); std::swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata TensorInfo::GetMetadata() const { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[3]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // TensorInfo // repeated int32 shape = 1; int TensorInfo::shape_size() const { return shape_.size(); } void TensorInfo::clear_shape() { shape_.Clear(); } ::google::protobuf::int32 TensorInfo::shape(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TensorInfo.shape) return shape_.Get(index); } void TensorInfo::set_shape(int index, ::google::protobuf::int32 value) { shape_.Set(index, value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.TensorInfo.shape) } void TensorInfo::add_shape(::google::protobuf::int32 value) { shape_.Add(value); // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.TensorInfo.shape) } const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >& TensorInfo::shape() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.TensorInfo.shape) return shape_; } ::google::protobuf::RepeatedField< ::google::protobuf::int32 >* TensorInfo::mutable_shape() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.TensorInfo.shape) return &shape_; } // string dtype = 2; void TensorInfo::clear_dtype() { dtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& TensorInfo::dtype() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TensorInfo.dtype) return dtype_.GetNoArena(); } void TensorInfo::set_dtype(const ::std::string& value) { dtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.TensorInfo.dtype) } #if LANG_CXX11 void TensorInfo::set_dtype(::std::string&& value) { dtype_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.TensorInfo.dtype) } #endif void TensorInfo::set_dtype(const char* value) { dtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.TensorInfo.dtype) } void TensorInfo::set_dtype(const char* value, size_t size) { dtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.TensorInfo.dtype) } ::std::string* TensorInfo::mutable_dtype() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.TensorInfo.dtype) return dtype_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* TensorInfo::release_dtype() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.TensorInfo.dtype) return dtype_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void TensorInfo::set_allocated_dtype(::std::string* dtype) { if (dtype != NULL) { } else { } dtype_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), dtype); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.TensorInfo.dtype) } // uint32 num_bytes_per_elem = 3; void TensorInfo::clear_num_bytes_per_elem() { num_bytes_per_elem_ = 0u; } ::google::protobuf::uint32 TensorInfo::num_bytes_per_elem() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TensorInfo.num_bytes_per_elem) return num_bytes_per_elem_; } void TensorInfo::set_num_bytes_per_elem(::google::protobuf::uint32 value) { num_bytes_per_elem_ = value; // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.TensorInfo.num_bytes_per_elem) } // repeated string consumers = 4; int TensorInfo::consumers_size() const { return consumers_.size(); } void TensorInfo::clear_consumers() { consumers_.Clear(); } const ::std::string& TensorInfo::consumers(int index) const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.TensorInfo.consumers) return consumers_.Get(index); } ::std::string* TensorInfo::mutable_consumers(int index) { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.TensorInfo.consumers) return consumers_.Mutable(index); } void TensorInfo::set_consumers(int index, const ::std::string& value) { // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.TensorInfo.consumers) consumers_.Mutable(index)->assign(value); } void TensorInfo::set_consumers(int index, const char* value) { consumers_.Mutable(index)->assign(value); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.TensorInfo.consumers) } void TensorInfo::set_consumers(int index, const char* value, size_t size) { consumers_.Mutable(index)->assign( reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.TensorInfo.consumers) } ::std::string* TensorInfo::add_consumers() { // @@protoc_insertion_point(field_add_mutable:tensorflow.contrib.tensorboard.TensorInfo.consumers) return consumers_.Add(); } void TensorInfo::add_consumers(const ::std::string& value) { consumers_.Add()->assign(value); // @@protoc_insertion_point(field_add:tensorflow.contrib.tensorboard.TensorInfo.consumers) } void TensorInfo::add_consumers(const char* value) { consumers_.Add()->assign(value); // @@protoc_insertion_point(field_add_char:tensorflow.contrib.tensorboard.TensorInfo.consumers) } void TensorInfo::add_consumers(const char* value, size_t size) { consumers_.Add()->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_add_pointer:tensorflow.contrib.tensorboard.TensorInfo.consumers) } const ::google::protobuf::RepeatedPtrField< ::std::string>& TensorInfo::consumers() const { // @@protoc_insertion_point(field_list:tensorflow.contrib.tensorboard.TensorInfo.consumers) return consumers_; } ::google::protobuf::RepeatedPtrField< ::std::string>* TensorInfo::mutable_consumers() { // @@protoc_insertion_point(field_mutable_list:tensorflow.contrib.tensorboard.TensorInfo.consumers) return &consumers_; } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // =================================================================== #if PROTOBUF_INLINE_NOT_IN_HEADERS #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int FileInfo::kFilePathFieldNumber; const int FileInfo::kSourceCodeFieldNumber; const int FileInfo::kMultilineStatementsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 FileInfo::FileInfo() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.contrib.tensorboard.FileInfo) } FileInfo::FileInfo(const FileInfo& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); const ::google::protobuf::Descriptor*& FileInfo_MultilineStatementsEntry_descriptor = protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[4].descriptor; multiline_statements_.SetAssignDescriptorCallback( protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce); multiline_statements_.SetEntryDescriptor( &FileInfo_MultilineStatementsEntry_descriptor); multiline_statements_.MergeFrom(from.multiline_statements_); file_path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.file_path().size() > 0) { file_path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_path_); } source_code_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.source_code().size() > 0) { source_code_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.source_code_); } // @@protoc_insertion_point(copy_constructor:tensorflow.contrib.tensorboard.FileInfo) } void FileInfo::SharedCtor() { const ::google::protobuf::Descriptor*& FileInfo_MultilineStatementsEntry_descriptor = protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[4].descriptor; multiline_statements_.SetAssignDescriptorCallback( protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce); multiline_statements_.SetEntryDescriptor( &FileInfo_MultilineStatementsEntry_descriptor); file_path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); source_code_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _cached_size_ = 0; } FileInfo::~FileInfo() { // @@protoc_insertion_point(destructor:tensorflow.contrib.tensorboard.FileInfo) SharedDtor(); } void FileInfo::SharedDtor() { file_path_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); source_code_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void FileInfo::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* FileInfo::descriptor() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[5].descriptor; } const FileInfo& FileInfo::default_instance() { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::InitDefaults(); return *internal_default_instance(); } FileInfo* FileInfo::New(::google::protobuf::Arena* arena) const { FileInfo* n = new FileInfo; if (arena != NULL) { arena->Own(n); } return n; } void FileInfo::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.contrib.tensorboard.FileInfo) multiline_statements_.Clear(); file_path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); source_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } bool FileInfo::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.contrib.tensorboard.FileInfo) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string file_path = 1; case 1: { if (tag == 10u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_file_path())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.FileInfo.file_path")); } else { goto handle_unusual; } break; } // string source_code = 2; case 2: { if (tag == 18u) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_source_code())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->source_code().data(), this->source_code().length(), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.contrib.tensorboard.FileInfo.source_code")); } else { goto handle_unusual; } break; } // map<uint32, uint32> multiline_statements = 3; case 3: { if (tag == 26u) { DO_(input->IncrementRecursionDepth()); FileInfo_MultilineStatementsEntry::Parser< ::google::protobuf::internal::MapField< ::google::protobuf::uint32, ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32, 0 >, ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 > > parser(&multiline_statements_); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, &parser)); } else { goto handle_unusual; } input->UnsafeDecrementRecursionDepth(); break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag)); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.contrib.tensorboard.FileInfo) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.contrib.tensorboard.FileInfo) return false; #undef DO_ } void FileInfo::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.contrib.tensorboard.FileInfo) // string file_path = 1; if (this->file_path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.FileInfo.file_path"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->file_path(), output); } // string source_code = 2; if (this->source_code().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->source_code().data(), this->source_code().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.FileInfo.source_code"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->source_code(), output); } // map<uint32, uint32> multiline_statements = 3; if (!this->multiline_statements().empty()) { typedef ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_pointer ConstPtr; typedef ::google::protobuf::internal::SortItem< ::google::protobuf::uint32, ConstPtr > SortItem; typedef ::google::protobuf::internal::CompareByFirstField<SortItem> Less; if (output->IsSerializationDeterministic() && this->multiline_statements().size() > 1) { ::google::protobuf::scoped_array<SortItem> items( new SortItem[this->multiline_statements().size()]); typedef ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::size_type size_type; size_type n = 0; for (::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_iterator it = this->multiline_statements().begin(); it != this->multiline_statements().end(); ++it, ++n) { items[n] = SortItem(&*it); } ::std::sort(&items[0], &items[n], Less()); ::google::protobuf::scoped_ptr<FileInfo_MultilineStatementsEntry> entry; for (size_type i = 0; i < n; i++) { entry.reset(multiline_statements_.NewEntryWrapper( items[i].second->first, items[i].second->second)); ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, *entry, output); } } else { ::google::protobuf::scoped_ptr<FileInfo_MultilineStatementsEntry> entry; for (::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_iterator it = this->multiline_statements().begin(); it != this->multiline_statements().end(); ++it) { entry.reset(multiline_statements_.NewEntryWrapper( it->first, it->second)); ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, *entry, output); } } } // @@protoc_insertion_point(serialize_end:tensorflow.contrib.tensorboard.FileInfo) } ::google::protobuf::uint8* FileInfo::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.contrib.tensorboard.FileInfo) // string file_path = 1; if (this->file_path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->file_path().data(), this->file_path().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.FileInfo.file_path"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->file_path(), target); } // string source_code = 2; if (this->source_code().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->source_code().data(), this->source_code().length(), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.contrib.tensorboard.FileInfo.source_code"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->source_code(), target); } // map<uint32, uint32> multiline_statements = 3; if (!this->multiline_statements().empty()) { typedef ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_pointer ConstPtr; typedef ::google::protobuf::internal::SortItem< ::google::protobuf::uint32, ConstPtr > SortItem; typedef ::google::protobuf::internal::CompareByFirstField<SortItem> Less; if (deterministic && this->multiline_statements().size() > 1) { ::google::protobuf::scoped_array<SortItem> items( new SortItem[this->multiline_statements().size()]); typedef ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::size_type size_type; size_type n = 0; for (::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_iterator it = this->multiline_statements().begin(); it != this->multiline_statements().end(); ++it, ++n) { items[n] = SortItem(&*it); } ::std::sort(&items[0], &items[n], Less()); ::google::protobuf::scoped_ptr<FileInfo_MultilineStatementsEntry> entry; for (size_type i = 0; i < n; i++) { entry.reset(multiline_statements_.NewEntryWrapper( items[i].second->first, items[i].second->second)); target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 3, *entry, deterministic, target); ; } } else { ::google::protobuf::scoped_ptr<FileInfo_MultilineStatementsEntry> entry; for (::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_iterator it = this->multiline_statements().begin(); it != this->multiline_statements().end(); ++it) { entry.reset(multiline_statements_.NewEntryWrapper( it->first, it->second)); target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageNoVirtualToArray( 3, *entry, deterministic, target); ; } } } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.contrib.tensorboard.FileInfo) return target; } size_t FileInfo::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.contrib.tensorboard.FileInfo) size_t total_size = 0; // map<uint32, uint32> multiline_statements = 3; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->multiline_statements_size()); { ::google::protobuf::scoped_ptr<FileInfo_MultilineStatementsEntry> entry; for (::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >::const_iterator it = this->multiline_statements().begin(); it != this->multiline_statements().end(); ++it) { entry.reset(multiline_statements_.NewEntryWrapper(it->first, it->second)); total_size += ::google::protobuf::internal::WireFormatLite:: MessageSizeNoVirtual(*entry); } } // string file_path = 1; if (this->file_path().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->file_path()); } // string source_code = 2; if (this->source_code().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->source_code()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void FileInfo::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.contrib.tensorboard.FileInfo) GOOGLE_DCHECK_NE(&from, this); const FileInfo* source = ::google::protobuf::internal::DynamicCastToGenerated<const FileInfo>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.contrib.tensorboard.FileInfo) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.contrib.tensorboard.FileInfo) MergeFrom(*source); } } void FileInfo::MergeFrom(const FileInfo& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.contrib.tensorboard.FileInfo) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); multiline_statements_.MergeFrom(from.multiline_statements_); if (from.file_path().size() > 0) { file_path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_path_); } if (from.source_code().size() > 0) { source_code_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.source_code_); } } void FileInfo::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.contrib.tensorboard.FileInfo) if (&from == this) return; Clear(); MergeFrom(from); } void FileInfo::CopyFrom(const FileInfo& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.contrib.tensorboard.FileInfo) if (&from == this) return; Clear(); MergeFrom(from); } bool FileInfo::IsInitialized() const { return true; } void FileInfo::Swap(FileInfo* other) { if (other == this) return; InternalSwap(other); } void FileInfo::InternalSwap(FileInfo* other) { multiline_statements_.Swap(&other->multiline_statements_); file_path_.Swap(&other->file_path_); source_code_.Swap(&other->source_code_); std::swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata FileInfo::GetMetadata() const { protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_tensorflow_2fcontrib_2ftensorboard_2fplugins_2ftrace_2ftrace_5finfo_2eproto::file_level_metadata[5]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // FileInfo // string file_path = 1; void FileInfo::clear_file_path() { file_path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& FileInfo::file_path() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.FileInfo.file_path) return file_path_.GetNoArena(); } void FileInfo::set_file_path(const ::std::string& value) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.FileInfo.file_path) } #if LANG_CXX11 void FileInfo::set_file_path(::std::string&& value) { file_path_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.FileInfo.file_path) } #endif void FileInfo::set_file_path(const char* value) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.FileInfo.file_path) } void FileInfo::set_file_path(const char* value, size_t size) { file_path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.FileInfo.file_path) } ::std::string* FileInfo::mutable_file_path() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.FileInfo.file_path) return file_path_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* FileInfo::release_file_path() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.FileInfo.file_path) return file_path_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void FileInfo::set_allocated_file_path(::std::string* file_path) { if (file_path != NULL) { } else { } file_path_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), file_path); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.FileInfo.file_path) } // string source_code = 2; void FileInfo::clear_source_code() { source_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } const ::std::string& FileInfo::source_code() const { // @@protoc_insertion_point(field_get:tensorflow.contrib.tensorboard.FileInfo.source_code) return source_code_.GetNoArena(); } void FileInfo::set_source_code(const ::std::string& value) { source_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:tensorflow.contrib.tensorboard.FileInfo.source_code) } #if LANG_CXX11 void FileInfo::set_source_code(::std::string&& value) { source_code_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), std::move(value)); // @@protoc_insertion_point(field_set_rvalue:tensorflow.contrib.tensorboard.FileInfo.source_code) } #endif void FileInfo::set_source_code(const char* value) { source_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:tensorflow.contrib.tensorboard.FileInfo.source_code) } void FileInfo::set_source_code(const char* value, size_t size) { source_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:tensorflow.contrib.tensorboard.FileInfo.source_code) } ::std::string* FileInfo::mutable_source_code() { // @@protoc_insertion_point(field_mutable:tensorflow.contrib.tensorboard.FileInfo.source_code) return source_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } ::std::string* FileInfo::release_source_code() { // @@protoc_insertion_point(field_release:tensorflow.contrib.tensorboard.FileInfo.source_code) return source_code_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void FileInfo::set_allocated_source_code(::std::string* source_code) { if (source_code != NULL) { } else { } source_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), source_code); // @@protoc_insertion_point(field_set_allocated:tensorflow.contrib.tensorboard.FileInfo.source_code) } // map<uint32, uint32> multiline_statements = 3; int FileInfo::multiline_statements_size() const { return multiline_statements_.size(); } void FileInfo::clear_multiline_statements() { multiline_statements_.Clear(); } const ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >& FileInfo::multiline_statements() const { // @@protoc_insertion_point(field_map:tensorflow.contrib.tensorboard.FileInfo.multiline_statements) return multiline_statements_.GetMap(); } ::google::protobuf::Map< ::google::protobuf::uint32, ::google::protobuf::uint32 >* FileInfo::mutable_multiline_statements() { // @@protoc_insertion_point(field_mutable_map:tensorflow.contrib.tensorboard.FileInfo.multiline_statements) return multiline_statements_.MutableMap(); } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // @@protoc_insertion_point(namespace_scope) } // namespace tensorboard } // namespace contrib } // namespace tensorflow // @@protoc_insertion_point(global_scope)
[ "jp@fieldstormapp.com" ]
jp@fieldstormapp.com
5fec1e7839ce2a2446a4eb4ff92e924b40f5fd42
55955d0dcbe4a9082189df0849dae53babaa6fe4
/Yingge/core/clickable.h
b22f9bdde32e7ddb06933d6a5fbb6c5544bc7e0a
[]
no_license
husathap/Yingge
4fd42419a823961aec65cee2756d14b891a513c1
0de4ec289324914dabb215c870a064396d5494d8
refs/heads/master
2021-01-01T18:48:14.046338
2014-06-10T14:12:11
2014-06-10T14:12:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,022
h
#pragma once #include <SFML/Graphics.hpp> namespace yingge { /* A class that contains logics which allows an drawable object to be made clickable. * A drawable object can easily be made clickable by making the object class inherit * this class, and call updateClick inside the object's update logic. */ class Clickable { private: bool m_clicked = false; // Indicate whether the object is clicked or not. bool m_pressed = false; // Indicate whether the keyboard is down or not. bool m_entered = false; // Indicate whether the cursor has entered the object or not. protected: bool isClicked(); // Indicate whether the object is clicked or not. bool isPressed(); // Indicate whether the keyboard is down or not. bool isEntered(); // Indicate whether the cursor has entered the object or not. // Update the object to make sure update its click status. void updateClick(sf::FloatRect *f, sf::RenderWindow *w); public: std::string name = ""; // The name of the clickable object. }; }
[ "hubertth@hotmail.com" ]
hubertth@hotmail.com
587f3707d3886622befda57134cc25458d9a97b3
260a8c374b3fd21676f3b6958df77ace7a4580e8
/RomanBankApp_Test.cpp
c366850d03f0c9e2f68c94a22fc682c55baedef1
[]
no_license
nollesson/romanbank
c85d316d15753fdc70c1f12c653248ca501d69f6
889062112efc189a4e7c87f0034138501c8534d8
refs/heads/master
2020-05-23T02:27:11.722886
2019-06-10T15:33:10
2019-06-10T15:33:10
186,603,917
0
0
null
null
null
null
UTF-8
C++
false
false
799
cpp
#include "RomanBank_Mock.hpp" #include "RomanBankApp.hpp" #include "RomanCalculator.hpp" #include <gtest/gtest.h> #include <gmock/gmock.h> using ::testing::_; using ::testing::Return; using ::testing::NiceMock; TEST(RomanBankApp, verifyMocks) { NiceMock<MockRomanBank> mockBank; EXPECT_CALL(mockBank, createAccount("1", "2")); ON_CALL(mockBank, changeAccountValue("3", "4")).WillByDefault(Return(true)); EXPECT_CALL(mockBank, getValueInAccount("5")).WillRepeatedly(Return("6")); EXPECT_CALL(mockBank, getSavingsInGreekCurrency("7")).WillRepeatedly(Return("8")); mockBank.createAccount("1", "2"); EXPECT_TRUE((mockBank.changeAccountValue("3", "4"))); EXPECT_EQ(mockBank.getValueInAccount("5"), "6"); EXPECT_EQ(mockBank.getSavingsInGreekCurrency("7"), "8"); }
[ "niklas.ollesson@tobii.com" ]
niklas.ollesson@tobii.com
f1b4b50ede708c755f025f2eea6dfa3468091346
a69e4c07b9b001966dad902f3024de1298a78a00
/staticlib/MathFuncsLib/MyExecRefsLib/stdafx.h
986d877acf931b59a206d2bb6ec48f7d36e32d22
[]
no_license
zhangsufan/hello-world
e20547968266847543c659d1c2296bbead079295
22376ca55ba60e0add2f84b5729b3e2fabd8e7d3
refs/heads/master
2020-07-31T07:02:29.198333
2019-11-26T07:04:29
2019-11-26T07:04:29
210,523,884
0
0
null
null
null
null
GB18030
C++
false
false
313
h
// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 // #pragma once #include "MathFuncsLib.h" #include "targetver.h" #include <iostream> #include <stdio.h> #include <tchar.h> // TODO: 在此处引用程序需要的其他头文件
[ "55731364+zhangsufan@users.noreply.github.com" ]
55731364+zhangsufan@users.noreply.github.com
08871296f2af564d6bb4313a94544915b076efee
c21fb8cdd7bb293acde1fa6e92603bd5686f6113
/Lecture_09/bfs.cpp
2ca014d4ec065e6b126e2de4362b1b5258872859
[]
no_license
tusharsk/Coding-blocks-Noida-2019-June
eee79b732bee3b30ebb1e37a50ff0385971faca3
659a021b5d4c560e3ad7d22df27acbd5a5fd7aa9
refs/heads/master
2020-06-13T04:38:00.767694
2019-09-20T07:42:48
2019-09-20T07:42:48
194,537,146
0
2
null
null
null
null
UTF-8
C++
false
false
437
cpp
vector<vector<int>> adj; // adjacency list representation int n; // number of nodes int s; // source vertex queue<int> q; vector<bool> used(n); vector<int> d(n), p(n); q.push(s); used[s] = true; p[s] = -1; while (!q.empty()) { int v = q.front(); q.pop(); for (int u : adj[v]) { if (!used[u]) { used[u] = true; q.push(u); d[u] = d[v] + 1; p[u] = v; } } }
[ "tusharsk26@gmail.com" ]
tusharsk26@gmail.com
99487878209666c9a64a52171754a417497c1a34
431b75c64a8b6a5a009bb2e76dbd249782b75396
/bluno_test2/bluno_test2.ino
41d85285a10eb8e92c88bff2712c947ca43dce2a
[]
no_license
mmoesse/FastLED-Projects
c2bee356510314084ef1cae04769b668bb3cc965
00edd84ef9fcace5ada9de88a5cdc025414c6fe5
refs/heads/master
2020-03-25T06:01:16.100987
2018-08-17T15:17:49
2018-08-17T15:17:49
143,479,258
1
0
null
null
null
null
UTF-8
C++
false
false
4,016
ino
#include "FastLED.h" // FastLED "100-lines-of-code" demo reel, showing just a few // of the kinds of animation patterns you can quickly and easily // compose using FastLED. // // This example also shows one easy way to define multiple // animations patterns and have them automatically rotate. // // -Mark Kriegsman, December 2014 #if FASTLED_VERSION < 3001000 #error "Requires FastLED 3.1 or later; check github for latest code." #endif #define DATA_PIN 9 //#define CLK_PIN 4 #define LED_TYPE WS2811 #define COLOR_ORDER GRB //5mx30LED neopixel //#define NUM_LEDS 150 //12mm "holiday lights" //#define NUM_LEDS 50 //extended 12mm "holiday lights" #define NUM_LEDS 51 CRGB leds[NUM_LEDS]; // Pin 13 has an LED connected on most Arduino boards. // give it a name: int led = 13; #define BRIGHTNESS 96 #define FRAMES_PER_SECOND 120 void setup() { delay(3000); // 3 second delay for recovery // initialize the digital pin as an output. pinMode(led, OUTPUT); Serial.begin(115200); //initial the Serial // tell FastLED about the LED strip configuration FastLED.addLeds<LED_TYPE,DATA_PIN,COLOR_ORDER>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); //FastLED.addLeds<LED_TYPE,DATA_PIN,CLK_PIN,COLOR_ORDER>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); // set master brightness control FastLED.setBrightness(BRIGHTNESS); } // List of patterns to cycle through. Each is defined as a separate function below. typedef void (*SimplePatternList[])(); SimplePatternList gPatterns = { rainbow, rainbowWithGlitter, confetti, sinelon, juggle, bpm }; //SimplePatternList gPatterns = { bpm }; uint8_t gCurrentPatternNumber = 0; // Index number of which pattern is current uint8_t gHue = 0; // rotating "base color" used by many of the patterns void loop() { // Call the current pattern function once, updating the 'leds' array gPatterns[gCurrentPatternNumber](); // send the 'leds' array out to the actual LED strip FastLED.show(); // insert a delay to keep the framerate modest FastLED.delay(1000/FRAMES_PER_SECOND); // do some periodic updates EVERY_N_MILLISECONDS( 20 ) { gHue++; } // slowly cycle the "base color" through the rainbow EVERY_N_SECONDS( 10 ) { nextPattern(); } // change patterns periodically if(Serial.available()) { Serial.write(Serial.read()); //send what has been received } } #define ARRAY_SIZE(A) (sizeof(A) / sizeof((A)[0])) void nextPattern() { // add one to the current pattern number, and wrap around at the end gCurrentPatternNumber = (gCurrentPatternNumber + 1) % ARRAY_SIZE( gPatterns); } void rainbow() { // FastLED's built-in rainbow generator fill_rainbow( leds, NUM_LEDS, gHue, 7); } void rainbowWithGlitter() { // built-in FastLED rainbow, plus some random sparkly glitter rainbow(); addGlitter(80); } void addGlitter( fract8 chanceOfGlitter) { if( random8() < chanceOfGlitter) { leds[ random16(NUM_LEDS) ] += CRGB::White; } } void confetti() { // random colored speckles that blink in and fade smoothly fadeToBlackBy( leds, NUM_LEDS, 10); int pos = random16(NUM_LEDS); leds[pos] += CHSV( gHue + random8(64), 200, 255); } void sinelon() { // a colored dot sweeping back and forth, with fading trails fadeToBlackBy( leds, NUM_LEDS, 20); int pos = beatsin16(13,0,NUM_LEDS); leds[pos] += CHSV( gHue, 255, 192); } void bpm() { // colored stripes pulsing at a defined Beats-Per-Minute (BPM) uint8_t BeatsPerMinute = 62; CRGBPalette16 palette = PartyColors_p; uint8_t beat = beatsin8( BeatsPerMinute, 64, 255); for( int i = 0; i < NUM_LEDS; i++) { //9948 leds[i] = ColorFromPalette(palette, gHue+(i*2), beat-gHue+(i*10)); } } void juggle() { // eight colored dots, weaving in and out of sync with each other fadeToBlackBy( leds, NUM_LEDS, 20); byte dothue = 0; for( int i = 0; i < 8; i++) { leds[beatsin16(i+7,0,NUM_LEDS)] |= CHSV(dothue, 200, 255); dothue += 32; } }
[ "noreply@github.com" ]
mmoesse.noreply@github.com
5db82365bda1a4cd0137fc35993f2053d7473ad5
c365d25ee2237b3c260198827b33b0253d43eaf4
/desafios/9298340-batch2/9298340-A18-PA/a.cpp
d4644260618a522f5134d94d73d976fa28b6259c
[]
no_license
germanohn/competitive-programming
fb1249910ce951fe290e9a5be3876d3870ab8aa3
fab9dc0e2998dd395c1b9d6639f8c187cf637669
refs/heads/master
2021-06-12T08:17:52.907705
2021-03-17T19:06:19
2021-03-17T19:06:19
58,595,999
0
0
null
null
null
null
UTF-8
C++
false
false
968
cpp
#include <bits/stdc++.h> #define mp make_pair #define pb push_back #define ff first #define ss second using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; const int inf = 1e9; const int MAX = 50004; int n, m; int v[MAX]; int me[105][MAX]; int dp (int i, int val) { if (i == n) { if (val == 0) return 0; else return inf; } if (val == 0) return 0; if (me[i][val] != -1) return me[i][val]; int ans = dp (i + 1, val); if (val - v[i] >= 0) ans = min (ans , min (1 + dp (i, val - v[i]), 1 + dp (i + 1, val - v[i]))); return me[i][val] = ans; } int main() { while (scanf (" %d", &m)) { if (m == 0) break; memset (me, -1, sizeof me); scanf (" %d", &n); for (int i = 0; i < n; i++) scanf ("%d", &v[i]); int ans = dp (0, m); if (ans >= inf) printf ("Impossivel\n"); else printf ("%d\n", ans); } }
[ "germanohn8@gmail.com" ]
germanohn8@gmail.com
2883a649d2813c5e1a1abc149445faa819a6490d
8f02939917edda1e714ffc26f305ac6778986e2d
/Codeforces/1278 edu 78/D.cc
91812b800782e5b4c4aef69008ff08babe522d0c
[]
no_license
queuedq/ps
fd6ee880d67484d666970e7ef85459683fa5b106
d45bd3037a389495d9937afa47cf0f74cd3f09cf
refs/heads/master
2023-08-18T16:45:18.970261
2023-08-17T17:04:19
2023-08-17T17:04:19
134,966,734
5
0
null
null
null
null
UTF-8
C++
false
false
2,098
cc
#include <bits/stdc++.h> #define endl "\n" using namespace std; typedef long long lld; typedef pair<int, int> pii; typedef pair<lld, lld> pll; //////////////////////////////////////////////////////////////// const int MAX_N = 5e5 + 5; int N, L[MAX_N], R[MAX_N]; vector<int> coords, seg; list<int> inter; int edges; struct DSU { int parent[MAX_N], size[MAX_N]; DSU() { for (int i = 0; i < MAX_N; i++) { parent[i] = i; size[i] = 1; } } int find(int x) { if (x == parent[x]) return x; return parent[x] = find(parent[x]); } void merge(int x, int y) { x = find(x); y = find(y); if (size[x] < size[y]) swap(x, y); parent[y] = x; size[x] += size[y]; } } dsu; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); //////////////////////////////// cin >> N; for (int i = 0; i < N; i++) { cin >> L[i] >> R[i]; coords.push_back(L[i]); coords.push_back(R[i]); } sort(coords.begin(), coords.end()); seg.resize(2*N); for (int i = 0; i < N; i++) { int l = lower_bound(coords.begin(), coords.end(), L[i]) - coords.begin(); int r = lower_bound(coords.begin(), coords.end(), R[i]) - coords.begin(); seg[l] = i+1; seg[r] = -i-1; } // for (int i = 0; i < 2*N; i++) cout << seg[i] << " "; // cout << endl; for (int i = 0; i < 2*N; i++) { if (seg[i] > 0) { inter.push_back(seg[i]); } else { // cout << "inter: "; // for (auto it = inter.begin(); it != inter.end(); it++) { // cout << *it << " "; // } // cout << endl; for (auto it = prev(inter.end()); ; it--) { int v = *it; if (v == -seg[i]) { inter.erase(it); break; } if (dsu.find(-seg[i]) == dsu.find(v)) { // cout << -seg[i] << " " << v << endl; cout << "NO" << endl; return 0; } dsu.merge(v, -seg[i]); edges++; } } } if (edges == N - 1) { cout << "YES" << endl; } else { cout << "NO" << endl; } //////////////////////////////// return 0; }
[ "queued37@gmail.com" ]
queued37@gmail.com
d7a365a0a8cf00344422f7f6eb992a7989cf6e84
c737f279082243128e56ba75a2c1fd52bf63137a
/Host.h
a1d02dca1e18edd9fd456d2495c0e12cb5d1e51c
[]
no_license
sarthakps/dengue-model
dba08563acc9f75a530dfa61c35a94dae8c66028
41c82815881640cccad7dc585416a71abe7ac422
refs/heads/master
2022-10-24T18:02:37.896338
2020-06-14T13:48:59
2020-06-14T13:48:59
255,870,136
3
2
null
null
null
null
UTF-8
C++
false
false
495
h
using namespace std; class Host{ public: bool isImmune; public: Host(bool isImmune){ this->isImmune = isImmune; } }; //to make given number of hosts void makeHosts(vector<Host> &hosts, int amount){ for(int i = 0; i<amount; i++){ if(i<200){ Host host(true); hosts.push_back(host); } else { Host host(false); hosts.push_back(host); } } random_shuffle(hosts.begin(), hosts.end()); }
[ "sarthak2580@gmail.com" ]
sarthak2580@gmail.com
c7927a4f277b249624b6c5094864110c72313000
4694a1fd919acf5a8d554c3a181d4331b8e2f612
/WordQuery.h
8944d0a52d90bf803ab5ea47d0639665e64a3016
[]
no_license
anribras/QueryOop
acf0c04a919bcafce04244e9cfedc21564913f30
bc621d9958c46f9ccbdcc0cdfbe21c4e695075c1
refs/heads/master
2021-01-19T18:44:27.248028
2017-08-23T09:08:30
2017-08-23T09:08:30
101,160,095
1
0
null
null
null
null
UTF-8
C++
false
false
277
h
#ifndef _WORDQUERY_H_ #define _WORDQUERY_H_ #include "Query_base.h" #include "QueryResult.h" #include "QueryText.h" class WordQuery : public Query_base { public: WordQuery(const string & s):word(s){} QueryResult eval(QueryText & t); private: string word; }; #endif
[ "yangding@le.com" ]
yangding@le.com
fe2258070e07cc5cf7534de75790432ab5e53b5d
665943f321d8c5647ab4eeadb687508d2de08de3
/Root/ZeroLeptonCxxUtils.cxx
3efa8d428c246518e08e1cbe2b27ed5b4227e9cd
[]
no_license
lawrenceleejr/ZeroLeptonRun2
15672575d1765d342c8c903c04ba0553e5a7c4a4
67042394b0bca205081175f002ef3fb44fd46b98
refs/heads/master
2021-01-19T04:45:06.991785
2015-11-18T12:01:42
2015-11-18T12:01:42
36,355,758
0
2
null
2015-09-29T14:21:02
2015-05-27T09:05:35
C++
UTF-8
C++
false
false
6,204
cxx
/* * This file is part of Healpix_cxx. * * Healpix_cxx 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. * * Healpix_cxx 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 Healpix_cxx; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * For more information about HEALPix, see http://healpix.jpl.nasa.gov */ /* * Healpix_cxx is being developed at the Max-Planck-Institut fuer Astrophysik * and financially supported by the Deutsches Zentrum fuer Luft- und Raumfahrt * (DLR). */ /* * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Max-Planck-Society * Authors: Martin Reinecke, Reinhard Hell * Adapted from Sophie Henrot-Versille for ATLAS */ // if we are using g++, check for version 3.0 or higher #ifdef __GNUC__ #if (__GNUC__<3) #error your C++ compiler is too old. g++ version 3.0 or higher is required. #endif #endif #include <fstream> #include <sstream> #include <iostream> #include <iomanip> #include <string> #include <cstdio> #include <cctype> #include "ZeroLeptonRun2/ZeroLeptonCxxUtils.h" using namespace std; string trim (const string &orig) { string::size_type p1=orig.find_first_not_of(" \t"); if (p1==string::npos) return ""; string::size_type p2=orig.find_last_not_of(" \t"); return orig.substr(p1,p2-p1+1); } template<typename T> string dataToString (const T &x) { ostringstream strstrm; strstrm << x; return trim(strstrm.str()); } template<> string dataToString (const bool &x) { return x ? "T" : "F"; } template<> string dataToString (const string &x) { return trim(x); } template<> string dataToString (const float &x) { ostringstream strstrm; strstrm << setprecision(8) << x; return trim(strstrm.str()); } template<> string dataToString (const double &x) { ostringstream strstrm; strstrm << setprecision(16) << x; return trim(strstrm.str()); } template string dataToString (const signed char &x); template string dataToString (const unsigned char &x); template string dataToString (const short &x); template string dataToString (const unsigned short &x); template string dataToString (const int &x); template string dataToString (const unsigned int &x); template string dataToString (const long &x); template string dataToString (const unsigned long &x); template string dataToString (const long long &x); template string dataToString (const unsigned long long &x); string intToString(int x, int width) { ostringstream strstrm; strstrm << setw(width) << setfill('0') << x; return trim(strstrm.str()); } template<typename T> void stringToData (const string &x, T &value) { string error = string("conversion error in stringToData<") + type2typename<T>() +">(\""+x+"\")"; istringstream strstrm(x); strstrm >> value; if (!strstrm) cout << error << endl; string rest; strstrm >> rest; // rest=trim(rest); if (rest.length()>0) cout << error << endl; } template<> void stringToData (const string &x, string &value) { value = trim(x); } template<> void stringToData (const string &x, bool &value) { if ( x=="F" || x=="f" || x=="n" || x=="N" || x=="false" || x==".false." || x=="FALSE" || x==".FALSE.") value=false; else if (x=="T" || x=="t" || x=="y" || x=="Y" || x=="true" || x==".true." || x=="TRUE" || x==".TRUE.") value=true; else { string error = string("conversion error in stringToData<bool>(\"")+x+"\")"; cout << error << endl; } } template void stringToData (const string &x, signed char &value); template void stringToData (const string &x, unsigned char &value); template void stringToData (const string &x, short &value); template void stringToData (const string &x, unsigned short &value); template void stringToData (const string &x, int &value); template void stringToData (const string &x, unsigned int &value); template void stringToData (const string &x, long &value); template void stringToData (const string &x, unsigned long &value); template void stringToData (const string &x, long long &value); template void stringToData (const string &x, unsigned long long &value); template void stringToData (const string &x, float &value); template void stringToData (const string &x, double &value); bool equal_nocase (const string &a, const string &b) { if (a.size()!=b.size()) return false; for (unsigned int m=0; m<a.size(); ++m) if (tolower(a[m])!=tolower(b[m])) return false; return true; } string tolower(const string &input) { string result=input; for (unsigned int m=0; m<result.size(); ++m) result[m]=char(tolower(result[m])); return result; } void parse_file (const string &filename, map<string,string> &dict) { int lineno=0; dict.clear(); ifstream inp(filename.c_str()); if(!inp) cout << "File not found:" << filename << endl; while (inp) { string line; getline(inp, line); ++lineno; // remove potential carriage returns at the end of the line line=line.substr(0,line.find_first_of("\r")); line=line.substr(0,line.find_first_of("#")); line=trim(line); if (line.size()>0) { string::size_type eqpos=line.find("="); if (eqpos!=string::npos) { string key=trim(line.substr(0,eqpos)), value=trim(line.substr(eqpos+1,string::npos)); if (key=="") cerr << "Warning: empty key in " << filename << ", line " << lineno << endl; else { if (dict.find(key)!=dict.end()) cerr << "Warning: key " << key << " multiply defined in " << filename << ", line " << lineno << endl; dict[key]=value; } } } } }
[ "lduflot@4525493e-7705-40b1-a816-d608a930855b" ]
lduflot@4525493e-7705-40b1-a816-d608a930855b
8c20905f9ef26f0dd39becb1fb2a80b630948e05
ef76a393f27b0417904563f72ef9f504ceae4f3e
/include/stx/option_result/impl/panic_helpers.h
482d7ec5bcabc5146d416e03c8782f827dc1c087
[ "MIT" ]
permissive
lamarrr/STX
d4994de556af74fcc2532eb9476ae831fee3d645
9044e6d0bb8cf9d019863cabd9b03f65fab85dec
refs/heads/main
2023-08-28T04:41:14.736883
2023-08-12T02:48:04
2023-08-12T02:48:04
250,762,873
593
30
MIT
2023-06-04T22:35:56
2020-03-28T10:08:03
C++
UTF-8
C++
false
false
3,091
h
/** * @file panic_helpers.h * @author Basit Ayantunde <rlamarrr@gmail.com> * @date 2020-04-22 * * @copyright MIT License * * Copyright (c) 2020-2022 Basit Ayantunde * */ #pragma once #include "stx/panic.h" #include "stx/source_location.h" STX_BEGIN_NAMESPACE namespace impl { namespace option { /// panic helper for `Option<T>::expect()` when no value is present [[noreturn]] inline void expect_value_failed( std::string_view msg, SourceLocation location = SourceLocation::current()) { panic(msg, location); } /// panic helper for `Option<T>::expect_none()` when a value is present [[noreturn]] inline void expect_none_failed( std::string_view msg, SourceLocation location = SourceLocation::current()) { panic(msg, location); } /// panic helper for `Option<T>::unwrap()` when no value is present [[noreturn]] inline void no_value( SourceLocation location = SourceLocation::current()) { panic("called `Option::unwrap()` on a `None` value", location); } /// panic helper for `Option<T>::value()` when no value is present [[noreturn]] inline void no_lref( SourceLocation location = SourceLocation::current()) { panic("called `Option::value()` on a `None` value", location); } /// panic helper for `Option<T>::unwrap_none()` when a value is present [[noreturn]] inline void no_none( SourceLocation location = SourceLocation::current()) { panic("called `Option::unwrap_none()` on a `Some` value", location); } } // namespace option namespace result { /// panic helper for `Result<T, E>::expect()` when no value is present template <typename E> [[noreturn]] inline void expect_value_failed( std::string_view msg, E const &err, SourceLocation location = SourceLocation::current()) { panic(msg, err, location); } /// panic helper for `Result<T, E>::expect_err()` when a value is present [[noreturn]] inline void expect_err_failed( std::string_view msg, SourceLocation location = SourceLocation::current()) { panic(msg, location); } /// panic helper for `Result<T, E>::unwrap()` when no value is present template <typename E> [[noreturn]] inline void no_value( E const &err, SourceLocation location = SourceLocation::current()) { panic("called `Result::unwrap()` on an `Err` value", err, location); } /// panic helper for `Result<T, E>::value()` when no value is present template <typename E> [[noreturn]] inline void no_lref( E const &err, SourceLocation location = SourceLocation::current()) { panic("called `Result::value()` on an `Err` value", err, location); } /// panic helper for `Result<T, E>::unwrap_err()` when a value is present [[noreturn]] inline void no_err( SourceLocation location = SourceLocation::current()) { panic("called `Result::unwrap_err()` on an `Ok` value", location); } /// panic helper for `Result<T, E>::err()` when no value is present [[noreturn]] inline void no_err_lref( SourceLocation location = SourceLocation::current()) { panic("called `Result::err()` on an `Ok` value", location); } } // namespace result } // namespace impl STX_END_NAMESPACE
[ "rlamarrr@gmail.com" ]
rlamarrr@gmail.com
07a3a02057562828ae3a385ae6549495457247b9
fdfc2b3438a8fc210eaec23672ccbe561ce36b07
/poc/openepos/.svn/pristine/07/07a3a02057562828ae3a385ae6549495457247b9.svn-base
508f75efaa3cb554d8e17f3d309d85c355c3f297
[]
no_license
soldi/mestrado
e26dac3dbc5f1ff88f36765a6ef239c9520460bf
e9e3d33ec7f361de4637aeb8f9f8e7996dcf4d56
refs/heads/master
2021-01-15T11:28:49.113106
2015-10-30T15:31:56
2015-10-30T15:31:56
16,246,005
0
1
null
null
null
null
UTF-8
C++
false
false
608
// EPOS ML310 NIC Mediator Test #include <nic.h> __USING_SYS OStream cout; int main() { NIC nic; NIC::Address src, dst; NIC::Protocol prot; char data[nic.mtu()]; for(int i = 0; i < 10; i++) nic.send(NIC::BROADCAST, 0x8888, "alguem ai?\n", 12); for(int i = 0; i < 10; i++) nic.receive(&src, &prot, data, nic.mtu()); NIC::Statistics stat = nic.statistics(); cout << "Statistics\n" << "Tx Packets: " << stat.tx_packets << "\n" << "Tx Bytes: " << stat.tx_bytes << "\n" << "Rx Packets: " << stat.rx_packets << "\n" << "Rx Bytes: " << stat.rx_bytes << "\n"; }
[ "soldi" ]
soldi
73506fcbb65e5e2d674057a622836cf6f32d8af4
6895d9a7bbfafad93cea9353d12bf61adfd7533a
/linked_list/Singly/OneLinkNode.h
2b87bbdf4011dde762722cee6ff9a6cba455d05b
[]
no_license
pisces312/AlgorithmInC
d6691d5bbb55012ae6cbe0cb99c2ea4f8abcd348
e2adce9fdefd7ec8b3dbb094dbbe9f4d5864fc2d
refs/heads/master
2021-01-17T22:24:16.574995
2017-04-21T12:15:36
2017-04-21T12:15:36
84,197,159
0
0
null
2017-04-21T12:15:37
2017-03-07T12:34:59
C++
UTF-8
C++
false
false
211
h
#include<stdlib.h> typedef char OneLinkDataType; class OneLinkNode { public: OneLinkDataType data; OneLinkNode *next; OneLinkNode(OneLinkDataType n=' ') { data=n; next=NULL; } };
[ "lee.ni@emc.com" ]
lee.ni@emc.com
ca6b3a6cfd7d59a6ee354855dbe865615f175147
12d09d9628c655eea00ad909b652f5cc071c0946
/d07/ex02/main.cpp
acf82f0e464b8007582bedea5398377b003d2b6b
[]
no_license
blueskin90/piscine_cpp
eda583e2ec50ef3c9f0e8b7d0d9ee62c7d00c20a
d00edd1394137c401226ed763d4ed633192ca0f5
refs/heads/master
2023-06-24T09:11:01.027098
2021-07-17T18:08:20
2021-07-17T18:08:20
277,582,406
0
0
null
null
null
null
UTF-8
C++
false
false
1,118
cpp
#include "Array.tpp" #include <iostream> int main(void) { Array<int> a = Array<int>(3); for (unsigned int i = 0; i < a.size(); i++) { std::cout << a[i] << std::endl; } std::cout << "-----------" << std::endl; Array<char> b = Array<char>(3); b[0] = 'a'; b[1] = 'b'; b[2] = 'c'; for (unsigned int i = 0; i < b.size(); i++) std::cout << b[i] << std::endl; std::cout << "-----------" << std::endl; Array<char> c = Array<char>(b); for (unsigned int i = 0; i < c.size(); i++) std::cout << c[i] << std::endl; std::cout << "-----------" << std::endl; Array<std::string> str1 = Array<std::string>(); Array<std::string> str2 = Array<std::string>(4); str2[0] = "how"; str2[1] = "are"; str2[2] = "you"; str2[3] = "?"; str1 = str2; for (int i = 0; i < 4; i++) std::cout << str1[i] << " "; std::cout << std::endl << "Size = " << str1.size() << std::endl; std::cout << "-----------" << std::endl; try{ a[80]; b[80]; c[80]; } catch (std::exception & exception){ std::cout << exception.what() << std::endl; return 0; } std::cout << "-----------" << std::endl; return 0; }
[ "blueskin@gmail.com" ]
blueskin@gmail.com
7055f5928f5f9bd99b390c39a9f2d3290cec1d62
7dc4dbd022f97cae2fbf332e1b0c22a7fa44416f
/src/crypto/sha256.h
44769168833dd1eeef63a77e50890096ea9c460c
[ "MIT" ]
permissive
anders94/mitcoin
215c125728f27b473f55e03e7e46850d6517553e
f759d0a62cd109954488277b83d146f5d0d11562
refs/heads/master
2016-08-12T05:09:09.425424
2015-10-17T12:45:58
2015-10-17T12:45:58
44,423,621
2
0
null
null
null
null
UTF-8
C++
false
false
658
h
// Copyright (c) 2014 The mitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef mitcoin_CRYPTO_SHA256_H #define mitcoin_CRYPTO_SHA256_H #include <stdint.h> #include <stdlib.h> /** A hasher class for SHA-256. */ class CSHA256 { private: uint32_t s[8]; unsigned char buf[64]; size_t bytes; public: static const size_t OUTPUT_SIZE = 32; CSHA256(); CSHA256& Write(const unsigned char* data, size_t len); void Finalize(unsigned char hash[OUTPUT_SIZE]); CSHA256& Reset(); }; #endif // mitcoin_CRYPTO_SHA256_H
[ "anders-git@evantide.com" ]
anders-git@evantide.com
e470cb45cd7ca2ab1b43064238198f8df6c39864
148f53a787f769197dbd9ed4511702d2a9855ccf
/C++/Source/BSearch/153.cpp
3d210d807549d234cc8fa7e430ee7aa1309ea71f
[]
no_license
porkallen/leetcode
8e620428323499b1157dad7c7fa03c3db534a396
2720f5173450eae66c16f2afd8d5ced7cd63165f
refs/heads/master
2021-08-19T17:55:21.333231
2021-06-04T06:08:28
2021-06-04T06:08:28
110,309,885
0
0
null
null
null
null
UTF-8
C++
false
false
841
cpp
#include "common.h" class Solution { public: int findMin(vector<int>& nums) { int left = 0, right = nums.size() - 1; while(left < right){ int m = left + (right - left)/2; if(nums[m] < nums[right]){ right = m; } else{ left = m + 1; } } return nums[left]; } }; int main(){ Solution s; cout << "<Case:" << __FILE__ << ">\n"; cout << "==Output==\n"; #if ENABLE_TREE_TEST_CASE TreeNode root(3); root.left = new TreeNode(9); root.right = new TreeNode(20); root.right->left = new TreeNode(15); root.right->right = new TreeNode(7); root.left->right = new TreeNode(2); /* 3 / \ 9 20 \ / \ 2 15 7 */ #endif return 0; }
[ "allen@occipital.com" ]
allen@occipital.com
f22367f3b1e4ae80d675d7a5e0f7a803a315f3ea
cd3e09d1408952b37c6e04adc980b6671ebd1e52
/101206MeasureIntesity.cp
e27731fa10a46f97637bc73b0b6fc1ebfd207da0
[ "MIT" ]
permissive
ayakimovich/cp2-pipelines
2e3cac3bbb91aca2c3da0d8a7a121cfbbb7d8dcc
01ca339b89a34a0759d1de9dc8c824486ae1408f
refs/heads/master
2021-01-01T20:06:10.859961
2015-01-26T17:22:17
2015-01-26T17:22:17
15,076,166
0
0
null
null
null
null
UTF-8
C++
false
false
1,416
cp
CellProfiler Pipeline: http://www.cellprofiler.org Version:1 SVNRevision:9978 LoadImages:[module_num:1|svn_version:\'9976\'|variable_revision_number:6|show_window:False|notes:\x5B\x5D] File type to be loaded:individual images File selection method:Text-Exact match Number of images in each group?:3 Type the text that the excluded images have in common:Do not use Analyze all subfolders within the selected folder?:No Input image file location:Default Input Folder\x7CNone Check image sets for missing or duplicate files?:Yes Group images by metadata?:No Exclude certain files?:No Specify metadata fields to group by: Image count:1 Text that these images have in common (case-sensitive):w2.TIF Position of this image in each group:1 Extract metadata from where?:None Regular expression that finds metadata in the file name:^(?P<Plate>.*)_(?P<Well>\x5BA-P\x5D\x5B0-9\x5D{2})_s(?P<Site>\x5B0-9\x5D) Type the regular expression that finds metadata in the subfolder path:.*\x5B\\\\/\x5D(?P<Date>.*)\x5B\\\\/\x5D(?P<Run>.*)$ Channel count:1 Name this loaded image:GFP Channel number\x3A:1 MeasureImageIntensity:[module_num:2|svn_version:\'9842\'|variable_revision_number:2|show_window:False|notes:\x5B\x5D] Select the image to measure:GFP Measure the intensity only from areas enclosed by objects?:No Select the input objects:None
[ "arthur.yakimovitch@gmail.com" ]
arthur.yakimovitch@gmail.com
24d41187808fbf3cd1346f66315d0086cd5d1431
4503b4ec29e9a30d26c433bac376f2bddaefd9e5
/EcoServerSDK/include/SISProjectSearchTypePjtType.h
61269b11ce6136e579813aab1172f77f5445d965
[]
no_license
SwunZH/ecocommlibs
0a872e0bbecbb843a0584fb787cf0c5e8a2a270b
4cff09ff1e479f5f519f207262a61ee85f543b3a
refs/heads/master
2021-01-25T12:02:39.067444
2018-02-23T07:04:43
2018-02-23T07:04:43
123,447,012
1
0
null
2018-03-01T14:37:53
2018-03-01T14:37:53
null
UTF-8
C++
false
false
944
h
#pragma once #ifndef _SISProjectSearchTypePjtType_H #define _SISProjectSearchTypePjtType_H #include <afxwin.h> #include <afxext.h> #include "SISVariableSearchTypeText.h" class AFX_EXT_CLASS SISProjectSearchTypePjtType : public SISVariableSearchTypeText { public: /** @brief Creator @param @return @remark Initialize member variable */ SISProjectSearchTypePjtType(); /** @brief Creator @param c [in]Object of SISNProjectSearchTypePjtType @return @remark Initialize member variable using value of input object */ SISProjectSearchTypePjtType(SISProjectSearchTypePjtType& c); /** @brief Destructors @param @return @remark */ ~SISProjectSearchTypePjtType(); /** @brief Default Operator @param @return @remark */ SISProjectSearchTypePjtType& operator = (const SISProjectSearchTypePjtType &other); private: void SetVariableName(CString strVarName); }; #endif
[ "hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb" ]
hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb
10c0b34c37434368550e8708182a38340071e93b
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/chrome/browser/ui/android/color_chooser_dialog_android.cc
0abbae66b5a2897bdf9e48e9e0a784dcd9fe118d
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
532
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/browser_dialogs.h" // The actual android color chooser is at // components/embedder_support/android/delegate/color_chooser_android.cc namespace chrome { content::ColorChooser* ShowColorChooser(content::WebContents* web_contents, SkColor initial_color) { return NULL; } } // namespace chrome
[ "artem@brave.com" ]
artem@brave.com
c7026884336ced95dd4258326d1cdf03d54a2fc4
c92c222f13674f0c7284849ed3393b124127f14b
/Practice1/Sources/Filters/TurnFilter.cpp
2c90953e0d73f201adaf2caa81284071dabb7f58
[]
no_license
BFDestroyeer/cg-practice
033826c49166b580acd9f9874dff89b8e29b426b
e930a7f562a20f3785de2b270a5b80b15679dfb0
refs/heads/master
2022-08-20T04:39:33.759286
2020-05-25T06:55:49
2020-05-25T06:55:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,092
cpp
#include "TurnFilter.h" constexpr double PI = 3.1415926535897932384626433832795; TurnFilter::TurnFilter(double angle_) { angle = angle_ * PI / 180; } QImage TurnFilter::calculateNewImagePixMap(const QImage& image) { QImage result(image); double center_x = image.height() / 2; double center_y = image.height() / 2; for (int x = 0; x < image.width(); x++) { for (int y = 0; y < image.height(); y++) { double source_x, source_y; source_x = (x - center_x) * cos(angle) - (y - center_y) * sin(angle) + center_x; source_y = (x - center_x) * sin(angle) + (y - center_y) * cos(angle) + center_y; QColor image_color; if ((source_x < image.width()) && (source_x > 0) && (source_y < image.height()) && (source_y > 0)) { image_color = image.pixelColor(source_x, source_y); } else { image_color = QColor(0, 0, 0); } result.setPixelColor(x, y, image_color); } } return result; }
[ "mzoreev@gmail.com" ]
mzoreev@gmail.com
e31caa792bdf5feaa0c2d2260182c8c70ee6c547
f6cc891dea8b6c8aa0f034e70c528e3eb760cb35
/HolaOGRE/ObjectMan.cpp
4100fa2f1ba3e6b7b0de04c0b7c731f32f1fdc74
[]
no_license
SeppukuAK/IG2-Ogre
f45fd0160894ecf08b8b23e81b9ff10e0cfb28d1
40219e810269853fd9d1f78ee51c21dbce00ff9e
refs/heads/master
2021-09-04T14:47:06.689095
2018-01-19T16:11:26
2018-01-19T16:11:26
113,357,857
0
0
null
null
null
null
UTF-8
C++
false
false
735
cpp
#include "ObjectMan.h" ObjectMan::ObjectMan(Ogre::SceneNode* scnNode, Ogre::Vector3 pos) : node(scnNode) { control = new UserControl(this); node->setPosition(pos); } ObjectMan::~ObjectMan() { UserControl* pCtrl = Ogre::any_cast<UserControl*>( node->getAttachedObject(0)->//Suponemos que solo puede tener controlador el primer objeto adjunto a un nodo getUserObjectBindings().getUserAny()); delete pCtrl; } void ObjectMan::setObjMan(Ogre::MovableObject* mObj) { //comprobar que es primer objeto que se adjunta al nodo if (node->getAttachedObjects().size() == 0) { node->attachObject(mObj); node->getAttachedObject(0)->getUserObjectBindings().setUserAny(Ogre::Any(control)); } //else a lo mejor hay que hacer algo }
[ "raulse01@ucm.es" ]
raulse01@ucm.es
e7f67331a4b51ecf8f0a07f82ce05a7f49175abc
59f138bc76677021fc6d8bf6b4aba0dc5d501662
/purpura sdk/sdk/materials.h
1e38e65ef82e2188cd396bc2e8f39e9b54e889f1
[]
no_license
rockebol/katzecheats-free
7882077c370ac60c3354748224152efa50228197
759bbeccced2356735119b787aeefb9e62c29736
refs/heads/master
2022-09-28T18:46:58.142616
2020-05-30T07:38:47
2020-05-30T07:38:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,187
h
#pragma once #define TEXTURE_GROUP_LIGHTMAP "Lightmaps" #define TEXTURE_GROUP_WORLD "World textures" #define TEXTURE_GROUP_MODEL "Model textures" #define TEXTURE_GROUP_VGUI "VGUI textures" #define TEXTURE_GROUP_PARTICLE "Particle textures" #define TEXTURE_GROUP_DECAL "Decal textures" #define TEXTURE_GROUP_SKYBOX "SkyBox textures" #define TEXTURE_GROUP_CLIENT_EFFECTS "ClientEffect textures" #define TEXTURE_GROUP_OTHER "Other textures" #define TEXTURE_GROUP_PRECACHED "Precached" // TODO: assign texture groups to the precached materials #define TEXTURE_GROUP_CUBE_MAP "CubeMap textures" #define TEXTURE_GROUP_RENDER_TARGET "RenderTargets" #define TEXTURE_GROUP_UNACCOUNTED "Unaccounted textures" // Textures that weren't assigned a texture group. #define TEXTURE_GROUP_STATIC_INDEX_BUFFER "Static Indices" #define TEXTURE_GROUP_STATIC_VERTEX_BUFFER_DISP "Displacement Verts" #define TEXTURE_GROUP_STATIC_VERTEX_BUFFER_COLOR "Lighting Verts" #define TEXTURE_GROUP_STATIC_VERTEX_BUFFER_WORLD "World Verts" #define TEXTURE_GROUP_STATIC_VERTEX_BUFFER_MODELS "Model Verts" #define TEXTURE_GROUP_STATIC_VERTEX_BUFFER_OTHER "Other Verts" #define TEXTURE_GROUP_DYNAMIC_INDEX_BUFFER "Dynamic Indices" #define TEXTURE_GROUP_DYNAMIC_VERTEX_BUFFER "Dynamic Verts" #define TEXTURE_GROUP_DEPTH_BUFFER "DepthBuffer" #define TEXTURE_GROUP_VIEW_MODEL "ViewModel" #define TEXTURE_GROUP_PIXEL_SHADERS "Pixel Shaders" #define TEXTURE_GROUP_VERTEX_SHADERS "Vertex Shaders" #define TEXTURE_GROUP_RENDER_TARGET_SURFACE "RenderTarget Surfaces" #define TEXTURE_GROUP_MORPH_TARGETS "Morph Targets" enum MaterialVarFlags_t { MATERIAL_VAR_DEBUG = (1 << 0), MATERIAL_VAR_NO_DEBUG_OVERRIDE = (1 << 1), MATERIAL_VAR_NO_DRAW = (1 << 2), MATERIAL_VAR_USE_IN_FILLRATE_MODE = (1 << 3), MATERIAL_VAR_VERTEXCOLOR = (1 << 4), MATERIAL_VAR_VERTEXALPHA = (1 << 5), MATERIAL_VAR_SELFILLUM = (1 << 6), MATERIAL_VAR_ADDITIVE = (1 << 7), MATERIAL_VAR_ALPHATEST = (1 << 8), MATERIAL_VAR_ZNEARER = (1 << 10), MATERIAL_VAR_MODEL = (1 << 11), MATERIAL_VAR_FLAT = (1 << 12), MATERIAL_VAR_NOCULL = (1 << 13), MATERIAL_VAR_NOFOG = (1 << 14), MATERIAL_VAR_IGNOREZ = (1 << 15), MATERIAL_VAR_DECAL = (1 << 16), MATERIAL_VAR_ENVMAPSPHERE = (1 << 17), // OBSOLETE MATERIAL_VAR_ENVMAPCAMERASPACE = (1 << 19), // OBSOLETE MATERIAL_VAR_BASEALPHAENVMAPMASK = (1 << 20), MATERIAL_VAR_TRANSLUCENT = (1 << 21), MATERIAL_VAR_NORMALMAPALPHAENVMAPMASK = (1 << 22), MATERIAL_VAR_NEEDS_SOFTWARE_SKINNING = (1 << 23), // OBSOLETE MATERIAL_VAR_OPAQUETEXTURE = (1 << 24), MATERIAL_VAR_ENVMAPMODE = (1 << 25), // OBSOLETE MATERIAL_VAR_SUPPRESS_DECALS = (1 << 26), MATERIAL_VAR_HALFLAMBERT = (1 << 27), MATERIAL_VAR_WIREFRAME = (1 << 28), MATERIAL_VAR_ALLOWALPHATOCOVERAGE = (1 << 29), MATERIAL_VAR_ALPHA_MODIFIED_BY_PROXY = (1 << 30), MATERIAL_VAR_VERTEXFOG = (1 << 31), }; using material_handle_t = unsigned short; class i_material {// 11 public: const char* get_name() { using original_fn = const char*(__thiscall*)(i_material*); return (*(original_fn**)this)[0](this); } const char* get_group_name() { using original_fn = const char*(__thiscall*)(i_material*); return (*(original_fn**)this)[1](this); } void* find_var(const char* name, bool* bFound) { using original_fn = void*(__thiscall*)(i_material*, const char*, bool*, bool); return (*(original_fn**)this)[11](this, name, bFound, true); } void alpha_modulate(int alpha, float divide) { using original_fn = void(__thiscall*)(i_material*, float); return (*(original_fn**)this)[27](this, static_cast<float>(alpha) / divide); } void alpha_modulate(float alpha) { using original_fn = void(__thiscall*)(i_material*, float); return (*(original_fn**)this)[27](this, alpha); } void color_modulate(int r, int g, int b) { using original_fn = void(__thiscall*)(i_material*, float, float, float); return (*(original_fn**)this)[28](this, r / 255.f, g / 255.f, b / 255.f); } void set_flag(int flag, bool on) { using original_fn = void(__thiscall*)(i_material*, int, bool); return (*(original_fn**)this)[29](this, flag, on); // idk l0l } };
[ "catahustle@gmail.com" ]
catahustle@gmail.com
69196e251421cb7a7d34ab2dc65a334a8326b309
5014bc1560490ac37e8c5d2562a2bfdb16727ea9
/SDK/NanoCore/NanoCPP/examples/manual/money_get.cpp
16f948fd255164a72f49f37c29dca85fa7e071e8
[ "Apache-2.0" ]
permissive
PSP-Archive/Nanodesktop
6fbf130d668dc9aa6afd06d8c4fff55a8cdcbdaf
37f502dff47c1a0b11c2a9d65c8cdcde12591e39
refs/heads/main
2023-02-28T08:41:12.147204
2021-02-08T13:01:00
2021-02-08T13:01:00
337,077,653
0
0
null
null
null
null
UTF-8
C++
false
false
3,258
cpp
/************************************************************************** * * money_get.cpp - Example program for the money_get facet. * * $Id: money_get.cpp 550991 2007-06-26 23:58:07Z sebor $ * *************************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. * * Copyright 1998-2006 Rogue Wave Software. * **************************************************************************/ #include <locale> // for locale, money_get, use_facet #include <sstream> // for istringstream #include <iostream> // for cout, endl #include <iterator> // for istreambuf_iterator #include <examples.h> // hardcode the name of the English US locale for known systems #if defined (__FreeBSD__) || defined (__osf__) // FreeBSD and Tru64 UNIX const char en_US[] = "en_US.ISO8859-1"; #elif defined (__hpux) // HP-UX const char en_US[] = "en_US.iso88591"; // Windows #elif defined (_WIN32) const char en_US[] = "English"; #else // AIX, IRIX, Linux, Solaris const char en_US[] = "en_US"; #endif int main (int argc, char *argv[]) { // Get the monetary string and locale from the argument vector. const char* const buffer = 1 < argc ? argv [1] : "$1,234.6789"; const char* const locname = 2 < argc ? argv [2] : en_US; const bool intl = 3 < argc; std::string smon; long double fmon = 0.0; std::ios_base::iostate state = std::ios_base::goodbit; // Retrieve the money_get facet from the named locale. const std::locale loc (locname); typedef std::istreambuf_iterator<char> Iter; typedef std::money_get<char, Iter> MoneyGet; const MoneyGet &mgf = std::use_facet<MoneyGet>(loc); { // Build an istringstream object from the buffer // and imbue the locale in it. std::istringstream ins (buffer); ins.imbue (loc); // Get a string representation of the monetary value. mgf.get (ins, Iter (), intl, ins, state, smon); } { std::istringstream ins (buffer); ins.imbue (loc); // Get a floating point representation of the monetary value. mgf.get (ins, Iter (), intl, ins, state, fmon); } // Output the original sequence and its string and floating point // representations. std::cout << buffer << " --> \"" << smon << "\" --> " << fmon << '\n'; // Return 0 on success, non-zero on failure. return !(std::ios_base::eofbit == state); }
[ "pierluigiortenzi@gmail.com" ]
pierluigiortenzi@gmail.com
c368b7039ba5706814949acad5788e065a7c47d1
bb20ba88cc104e320374612e00fdddd5fefe86d8
/C++/3rd_Party/CGAL/include/CGAL/IO/Polyhedron_builder_from_STL.h
fa57e8ac5888dbe3a090239f9785c5810b029fc6
[]
no_license
cbtogu/3DLearning
5949e22d16f14a57ab04e0eec0ef1c4364747c76
9cfc64ad1e0473aff4e2aef34da50731249d3433
refs/heads/master
2022-01-31T10:37:58.177148
2017-07-06T15:11:43
2017-07-06T15:11:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,258
h
// Copyright (c) 2015 GeometryFactory // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id: Polyhedron_builder_from_STL.h,v 1.4 2017/02/06 12:37:05 Emmanuel.Pot Exp $ // // Author(s) : Andreas Fabri #ifndef CGAL_IO_POLYHEDRON_STL_BUILDER_H #define CGAL_IO_POLYHEDRON_STL_BUILDER_H #include <CGAL/Modifier_base.h> #include <CGAL/Polyhedron_incremental_builder_3.h> #include <CGAL/IO/STL_reader.h> #include <iostream> namespace CGAL{ template <class HDS> class Polyhedron_builder_from_STL : public CGAL::Modifier_base<HDS> { typedef typename HDS::Vertex::Point Point_3; typedef std::vector<cpp11::array<double, 3> > Points_3; typedef cpp11::array<int,3> Facet; typedef std::vector<Facet> Surface; std::istream& is; Points_3 meshPoints; Surface mesh; public: Polyhedron_builder_from_STL(std::istream& is_) : is(is_) {} void operator()( HDS& hds) { if(!read_STL(is, meshPoints, mesh)) return; CGAL::Polyhedron_incremental_builder_3<HDS> B(hds); B.begin_surface( meshPoints.size(), mesh.size()); typedef typename Points_3::size_type size_type; for(size_type i=0; i < meshPoints.size(); i++){ B.add_vertex( Point_3(meshPoints[i][0], meshPoints[i][1], meshPoints[i][2]) ); } for(size_type i=0; i < mesh.size(); i++){ B.begin_facet(); B.add_vertex_to_facet( mesh[i][0]); B.add_vertex_to_facet( mesh[i][1]); B.add_vertex_to_facet( mesh[i][2]); B.end_facet(); } if(B.error()) { std::cerr << "An error occured while creating a Polyhedron" << std::endl; B.rollback(); } B.end_surface(); } }; } //end of CGAL namespace #endif // CGAL_IO_POLYHEDRON_STL_BUILDER_H
[ "Etienne.Houze@polytechnique.edu" ]
Etienne.Houze@polytechnique.edu
e885f545720fcb788b727b1309ff484f550cb700
8a1a2440dca0e3b60d11c74e6061df7e7ab6ab89
/file_plugins/hpgl/hpgl_plugin.h
727fcfef26787a891d1f8451cd9824bf947ef6fd
[]
no_license
VB6Hobbyst7/GERBER_X3
cf4ceea15e068c5ccc53235349aa9887cf14c6cf
eaa0084448d997224cb1423cf0423a215624b26b
refs/heads/master
2023-07-12T16:36:06.688997
2021-07-18T14:49:19
2021-07-18T14:49:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,209
h
/******************************************************************************* * * * Author : Damir Bakiev * * Version : na * * Date : 14 January 2021 * * Website : na * * Copyright : Damir Bakiev 2016-2021 * * * * License: * * Use, modification & distribution is subject to Boost Software License Ver 1. * * http://www.boost.org/LICENSE_1_0.txt * * * *******************************************************************************/ #pragma once #include "interfaces/pluginfile.h" #include "hpgl_parser.h" #include <QObject> #include <QStack> namespace Hpgl { class File; class Plugin : public QObject, public FilePluginInterface, Parser { Q_OBJECT Q_PLUGIN_METADATA(IID ParserInterface_iid FILE "hpgl.json") Q_INTERFACES(FilePluginInterface) public: explicit Plugin(QObject* parent = nullptr); // FilePluginInterface interface bool thisIsIt(const QString& fileName) override; QObject* getObject() override; int type() const override; QString folderName() const override; FileInterface* createFile() override; QJsonObject info() const override; std::pair<SettingsTabInterface*, QString> createSettingsTab(QWidget* parent) override; void updateFileModel(FileInterface* file) override; public slots: FileInterface* parseFile(const QString& fileName, int type) override; signals: void fileReady(FileInterface* file) override; void fileProgress(const QString& fileName, int max, int value) override; void fileError(const QString& fileName, const QString& error) override; private: File* file = nullptr; }; }
[ "xray3d@ya.ru" ]
xray3d@ya.ru
0b9b7955d4a06d657cf6fe2ddaa374fe20321a8c
7dc6fa7ffd68f07adb9ba80efbbb5eba341dafe9
/158/c.cpp
0483045796b2ea212c6cc3c99792c8f9e9a1a421
[]
no_license
anraku/atcoder-code
63fd35fd495509f954ece1549a395392a86c2181
d475674904d02b4d6b8b9bc3d981c7ba1d1d4f89
refs/heads/master
2021-07-06T16:29:27.970352
2021-04-22T12:32:10
2021-04-22T12:32:10
238,450,070
0
0
null
null
null
null
UTF-8
C++
false
false
384
cpp
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0;i < n;i++) typedef long long ll; using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int a, b; cin >> a >> b; int n = 1; int ans = -1; while (n <= 1000) { if (floor(n * 0.08) == a && floor(n * 0.1) == b) { ans = n; break; } n++; } cout << ans << endl; }
[ "anraku90@gmail.com" ]
anraku90@gmail.com
c3870d9ecfc1536672881364b05ac09da4e0a365
49bf571e8f5e9ee2e6119a7d4582f3d762b68a08
/build-test_login-Desktop_Qt_5_13_1_GCC_64bit-Debug/ui_registe.h
770ec1c15836e9dc095ae455c0834cd5a05a24e0
[]
no_license
a798447431/Qt_Project
a88e5b31e5175617787799d27c2a4603d8a09d0b
03c7518b59d56369df97582505e1729503fa1664
refs/heads/master
2020-12-27T12:24:42.999604
2020-02-03T06:45:41
2020-02-03T06:45:41
237,900,469
0
1
null
null
null
null
UTF-8
C++
false
false
20,008
h
/******************************************************************************** ** Form generated from reading UI file 'registe.ui' ** ** Created by: Qt User Interface Compiler version 5.13.1 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_REGISTE_H #define UI_REGISTE_H #include <QtCore/QVariant> #include <QtWidgets/QApplication> #include <QtWidgets/QComboBox> #include <QtWidgets/QDialog> #include <QtWidgets/QGridLayout> #include <QtWidgets/QHBoxLayout> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QPushButton> #include <QtWidgets/QSpacerItem> #include <QtWidgets/QVBoxLayout> QT_BEGIN_NAMESPACE class Ui_registe { public: QVBoxLayout *verticalLayout; QLabel *title; QGridLayout *gridLayout; QSpacerItem *horizontalSpacer_7; QLabel *user_name; QLineEdit *le_usernum; QSpacerItem *horizontalSpacer; QSpacerItem *horizontalSpacer_8; QLabel *pwd; QLineEdit *le_pwd; QSpacerItem *horizontalSpacer_2; QSpacerItem *horizontalSpacer_9; QLabel *sure_pwd; QLineEdit *le_surepwd; QSpacerItem *horizontalSpacer_3; QSpacerItem *horizontalSpacer_10; QLabel *lb_system_role; QComboBox *cbb_system_role; QSpacerItem *horizontalSpacer_4; QSpacerItem *horizontalSpacer_18; QLabel *lb_username; QLineEdit *le_username; QSpacerItem *horizontalSpacer_5; QSpacerItem *horizontalSpacer_19; QLabel *lb_usersex; QComboBox *cbb_usersex; QSpacerItem *horizontalSpacer_6; QSpacerItem *horizontalSpacer_20; QLabel *lb_organization; QLineEdit *le_organization; QSpacerItem *horizontalSpacer_17; QSpacerItem *horizontalSpacer_21; QLabel *lb_origanization_code; QLineEdit *le_origanization_code; QSpacerItem *horizontalSpacer_16; QSpacerItem *horizontalSpacer_22; QLabel *lb_duty; QLineEdit *le_duty; QSpacerItem *horizontalSpacer_15; QSpacerItem *horizontalSpacer_23; QLabel *lb_duty_code; QLineEdit *le_duty_code; QSpacerItem *horizontalSpacer_14; QHBoxLayout *horizontalLayout_11; QSpacerItem *horizontalSpacer_11; QPushButton *btn_registe; QSpacerItem *horizontalSpacer_13; QPushButton *btn_register_exit; QSpacerItem *horizontalSpacer_12; void setupUi(QDialog *registe) { if (registe->objectName().isEmpty()) registe->setObjectName(QString::fromUtf8("registe")); registe->resize(530, 820); verticalLayout = new QVBoxLayout(registe); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); title = new QLabel(registe); title->setObjectName(QString::fromUtf8("title")); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); sizePolicy.setHorizontalStretch(0); sizePolicy.setVerticalStretch(0); sizePolicy.setHeightForWidth(title->sizePolicy().hasHeightForWidth()); title->setSizePolicy(sizePolicy); title->setStyleSheet(QString::fromUtf8("font: 57 26pt \"\346\226\207\346\263\211\351\251\277\347\202\271\351\230\265\346\255\243\351\273\221\";")); title->setAlignment(Qt::AlignCenter); verticalLayout->addWidget(title); gridLayout = new QGridLayout(); gridLayout->setObjectName(QString::fromUtf8("gridLayout")); horizontalSpacer_7 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_7, 0, 0, 1, 1); user_name = new QLabel(registe); user_name->setObjectName(QString::fromUtf8("user_name")); QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Preferred); sizePolicy1.setHorizontalStretch(0); sizePolicy1.setVerticalStretch(0); sizePolicy1.setHeightForWidth(user_name->sizePolicy().hasHeightForWidth()); user_name->setSizePolicy(sizePolicy1); user_name->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(user_name, 0, 1, 1, 1); le_usernum = new QLineEdit(registe); le_usernum->setObjectName(QString::fromUtf8("le_usernum")); sizePolicy.setHeightForWidth(le_usernum->sizePolicy().hasHeightForWidth()); le_usernum->setSizePolicy(sizePolicy); gridLayout->addWidget(le_usernum, 0, 2, 1, 1); horizontalSpacer = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer, 0, 3, 1, 1); horizontalSpacer_8 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_8, 1, 0, 1, 1); pwd = new QLabel(registe); pwd->setObjectName(QString::fromUtf8("pwd")); sizePolicy1.setHeightForWidth(pwd->sizePolicy().hasHeightForWidth()); pwd->setSizePolicy(sizePolicy1); pwd->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(pwd, 1, 1, 1, 1); le_pwd = new QLineEdit(registe); le_pwd->setObjectName(QString::fromUtf8("le_pwd")); sizePolicy.setHeightForWidth(le_pwd->sizePolicy().hasHeightForWidth()); le_pwd->setSizePolicy(sizePolicy); le_pwd->setEchoMode(QLineEdit::Password); gridLayout->addWidget(le_pwd, 1, 2, 1, 1); horizontalSpacer_2 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_2, 1, 3, 1, 1); horizontalSpacer_9 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_9, 2, 0, 1, 1); sure_pwd = new QLabel(registe); sure_pwd->setObjectName(QString::fromUtf8("sure_pwd")); sizePolicy1.setHeightForWidth(sure_pwd->sizePolicy().hasHeightForWidth()); sure_pwd->setSizePolicy(sizePolicy1); sure_pwd->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(sure_pwd, 2, 1, 1, 1); le_surepwd = new QLineEdit(registe); le_surepwd->setObjectName(QString::fromUtf8("le_surepwd")); sizePolicy.setHeightForWidth(le_surepwd->sizePolicy().hasHeightForWidth()); le_surepwd->setSizePolicy(sizePolicy); le_surepwd->setEchoMode(QLineEdit::Password); gridLayout->addWidget(le_surepwd, 2, 2, 1, 1); horizontalSpacer_3 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_3, 2, 3, 1, 1); horizontalSpacer_10 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_10, 3, 0, 1, 1); lb_system_role = new QLabel(registe); lb_system_role->setObjectName(QString::fromUtf8("lb_system_role")); sizePolicy1.setHeightForWidth(lb_system_role->sizePolicy().hasHeightForWidth()); lb_system_role->setSizePolicy(sizePolicy1); lb_system_role->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_system_role, 3, 1, 1, 1); cbb_system_role = new QComboBox(registe); cbb_system_role->addItem(QString()); cbb_system_role->addItem(QString()); cbb_system_role->addItem(QString()); cbb_system_role->addItem(QString()); cbb_system_role->setObjectName(QString::fromUtf8("cbb_system_role")); sizePolicy.setHeightForWidth(cbb_system_role->sizePolicy().hasHeightForWidth()); cbb_system_role->setSizePolicy(sizePolicy); gridLayout->addWidget(cbb_system_role, 3, 2, 1, 1); horizontalSpacer_4 = new QSpacerItem(14, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_4, 3, 3, 1, 1); horizontalSpacer_18 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_18, 4, 0, 1, 1); lb_username = new QLabel(registe); lb_username->setObjectName(QString::fromUtf8("lb_username")); sizePolicy1.setHeightForWidth(lb_username->sizePolicy().hasHeightForWidth()); lb_username->setSizePolicy(sizePolicy1); lb_username->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_username, 4, 1, 1, 1); le_username = new QLineEdit(registe); le_username->setObjectName(QString::fromUtf8("le_username")); sizePolicy.setHeightForWidth(le_username->sizePolicy().hasHeightForWidth()); le_username->setSizePolicy(sizePolicy); gridLayout->addWidget(le_username, 4, 2, 1, 1); horizontalSpacer_5 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_5, 4, 3, 1, 1); horizontalSpacer_19 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_19, 5, 0, 1, 1); lb_usersex = new QLabel(registe); lb_usersex->setObjectName(QString::fromUtf8("lb_usersex")); sizePolicy1.setHeightForWidth(lb_usersex->sizePolicy().hasHeightForWidth()); lb_usersex->setSizePolicy(sizePolicy1); lb_usersex->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_usersex, 5, 1, 1, 1); cbb_usersex = new QComboBox(registe); cbb_usersex->addItem(QString()); cbb_usersex->addItem(QString()); cbb_usersex->addItem(QString()); cbb_usersex->setObjectName(QString::fromUtf8("cbb_usersex")); sizePolicy.setHeightForWidth(cbb_usersex->sizePolicy().hasHeightForWidth()); cbb_usersex->setSizePolicy(sizePolicy); gridLayout->addWidget(cbb_usersex, 5, 2, 1, 1); horizontalSpacer_6 = new QSpacerItem(13, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_6, 5, 3, 1, 1); horizontalSpacer_20 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_20, 6, 0, 1, 1); lb_organization = new QLabel(registe); lb_organization->setObjectName(QString::fromUtf8("lb_organization")); sizePolicy1.setHeightForWidth(lb_organization->sizePolicy().hasHeightForWidth()); lb_organization->setSizePolicy(sizePolicy1); lb_organization->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_organization, 6, 1, 1, 1); le_organization = new QLineEdit(registe); le_organization->setObjectName(QString::fromUtf8("le_organization")); sizePolicy.setHeightForWidth(le_organization->sizePolicy().hasHeightForWidth()); le_organization->setSizePolicy(sizePolicy); gridLayout->addWidget(le_organization, 6, 2, 1, 1); horizontalSpacer_17 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_17, 6, 3, 1, 1); horizontalSpacer_21 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_21, 7, 0, 1, 1); lb_origanization_code = new QLabel(registe); lb_origanization_code->setObjectName(QString::fromUtf8("lb_origanization_code")); sizePolicy1.setHeightForWidth(lb_origanization_code->sizePolicy().hasHeightForWidth()); lb_origanization_code->setSizePolicy(sizePolicy1); lb_origanization_code->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_origanization_code, 7, 1, 1, 1); le_origanization_code = new QLineEdit(registe); le_origanization_code->setObjectName(QString::fromUtf8("le_origanization_code")); sizePolicy.setHeightForWidth(le_origanization_code->sizePolicy().hasHeightForWidth()); le_origanization_code->setSizePolicy(sizePolicy); gridLayout->addWidget(le_origanization_code, 7, 2, 1, 1); horizontalSpacer_16 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_16, 7, 3, 1, 1); horizontalSpacer_22 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_22, 8, 0, 1, 1); lb_duty = new QLabel(registe); lb_duty->setObjectName(QString::fromUtf8("lb_duty")); sizePolicy1.setHeightForWidth(lb_duty->sizePolicy().hasHeightForWidth()); lb_duty->setSizePolicy(sizePolicy1); lb_duty->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_duty, 8, 1, 1, 1); le_duty = new QLineEdit(registe); le_duty->setObjectName(QString::fromUtf8("le_duty")); sizePolicy.setHeightForWidth(le_duty->sizePolicy().hasHeightForWidth()); le_duty->setSizePolicy(sizePolicy); gridLayout->addWidget(le_duty, 8, 2, 1, 1); horizontalSpacer_15 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_15, 8, 3, 1, 1); horizontalSpacer_23 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_23, 9, 0, 1, 1); lb_duty_code = new QLabel(registe); lb_duty_code->setObjectName(QString::fromUtf8("lb_duty_code")); sizePolicy1.setHeightForWidth(lb_duty_code->sizePolicy().hasHeightForWidth()); lb_duty_code->setSizePolicy(sizePolicy1); lb_duty_code->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(lb_duty_code, 9, 1, 1, 1); le_duty_code = new QLineEdit(registe); le_duty_code->setObjectName(QString::fromUtf8("le_duty_code")); sizePolicy.setHeightForWidth(le_duty_code->sizePolicy().hasHeightForWidth()); le_duty_code->setSizePolicy(sizePolicy); gridLayout->addWidget(le_duty_code, 9, 2, 1, 1); horizontalSpacer_14 = new QSpacerItem(18, 23, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_14, 9, 3, 1, 1); gridLayout->setColumnStretch(0, 1); gridLayout->setColumnStretch(1, 1); gridLayout->setColumnStretch(2, 7); gridLayout->setColumnStretch(3, 1); verticalLayout->addLayout(gridLayout); horizontalLayout_11 = new QHBoxLayout(); horizontalLayout_11->setObjectName(QString::fromUtf8("horizontalLayout_11")); horizontalSpacer_11 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_11->addItem(horizontalSpacer_11); btn_registe = new QPushButton(registe); btn_registe->setObjectName(QString::fromUtf8("btn_registe")); horizontalLayout_11->addWidget(btn_registe); horizontalSpacer_13 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_11->addItem(horizontalSpacer_13); btn_register_exit = new QPushButton(registe); btn_register_exit->setObjectName(QString::fromUtf8("btn_register_exit")); horizontalLayout_11->addWidget(btn_register_exit); horizontalSpacer_12 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_11->addItem(horizontalSpacer_12); horizontalLayout_11->setStretch(0, 2); horizontalLayout_11->setStretch(1, 3); horizontalLayout_11->setStretch(3, 3); horizontalLayout_11->setStretch(4, 2); verticalLayout->addLayout(horizontalLayout_11); verticalLayout->setStretch(0, 1); verticalLayout->setStretch(1, 8); verticalLayout->setStretch(2, 1); retranslateUi(registe); QMetaObject::connectSlotsByName(registe); } // setupUi void retranslateUi(QDialog *registe) { registe->setWindowTitle(QCoreApplication::translate("registe", "\346\226\260\345\273\272\347\224\250\346\210\267", nullptr)); title->setText(QCoreApplication::translate("registe", "\346\226\260\345\273\272\347\224\250\346\210\267", nullptr)); user_name->setText(QCoreApplication::translate("registe", "\345\270\220\345\217\267\357\274\232", nullptr)); le_usernum->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\345\270\220\345\217\267", nullptr)); pwd->setText(QCoreApplication::translate("registe", "\345\257\206\347\240\201\357\274\232", nullptr)); le_pwd->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\345\257\206\347\240\201", nullptr)); sure_pwd->setText(QCoreApplication::translate("registe", "\347\241\256\350\256\244\345\257\206\347\240\201\357\274\232", nullptr)); le_surepwd->setPlaceholderText(QCoreApplication::translate("registe", "\345\206\215\346\254\241\347\241\256\350\256\244\345\257\206\347\240\201", nullptr)); lb_system_role->setText(QCoreApplication::translate("registe", "\347\263\273\347\273\237\350\247\222\350\211\262\357\274\232", nullptr)); cbb_system_role->setItemText(0, QString()); cbb_system_role->setItemText(1, QCoreApplication::translate("registe", "\346\225\231\347\273\203\345\221\230", nullptr)); cbb_system_role->setItemText(2, QCoreApplication::translate("registe", "\345\217\227\350\256\255\350\200\205", nullptr)); cbb_system_role->setItemText(3, QCoreApplication::translate("registe", "\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230", nullptr)); lb_username->setText(QCoreApplication::translate("registe", "\345\247\223\345\220\215\357\274\232", nullptr)); le_username->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\345\247\223\345\220\215", nullptr)); lb_usersex->setText(QCoreApplication::translate("registe", "\346\200\247\345\210\253\357\274\232", nullptr)); cbb_usersex->setItemText(0, QString()); cbb_usersex->setItemText(1, QCoreApplication::translate("registe", "\347\224\267", nullptr)); cbb_usersex->setItemText(2, QCoreApplication::translate("registe", "\345\245\263", nullptr)); lb_organization->setText(QCoreApplication::translate("registe", "\346\234\272\346\236\204\357\274\232", nullptr)); le_organization->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\346\234\272\346\236\204\345\220\215\347\247\260", nullptr)); lb_origanization_code->setText(QCoreApplication::translate("registe", "\346\234\272\346\236\204\344\273\243\347\240\201\357\274\232", nullptr)); le_origanization_code->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\346\234\272\346\236\204\344\273\243\347\240\201", nullptr)); lb_duty->setText(QCoreApplication::translate("registe", "\350\201\214\345\212\241\357\274\232", nullptr)); le_duty->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\350\201\214\345\212\241", nullptr)); lb_duty_code->setText(QCoreApplication::translate("registe", "\350\201\214\345\212\241\344\273\243\347\240\201\357\274\232", nullptr)); le_duty_code->setPlaceholderText(QCoreApplication::translate("registe", "\350\257\267\350\276\223\345\205\245\350\201\214\345\212\241\344\273\243\347\240\201", nullptr)); btn_registe->setText(QCoreApplication::translate("registe", "\346\263\250\345\206\214", nullptr)); btn_register_exit->setText(QCoreApplication::translate("registe", "\351\200\200\345\207\272", nullptr)); } // retranslateUi }; namespace Ui { class registe: public Ui_registe {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_REGISTE_H
[ "253604653@qq.com" ]
253604653@qq.com
c751d2e23e6be1f2eb9c364ba1ec98306441d033
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/processor3/3.02/rho
49857fcfb27006d02bfc78c333b04c8f604620f0
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
46,215
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "3.02"; object rho; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -3 0 0 0 0 0]; internalField nonuniform List<scalar> 5625 ( 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40003 1.40003 1.40003 1.40003 1.40003 1.40003 1.40003 1.40003 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39999 1.39999 1.39999 1.39999 1.39999 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40002 1.40002 1.40003 1.40003 1.40003 1.40004 1.40004 1.40004 1.40004 1.40004 1.40003 1.40003 1.40003 1.40003 1.40003 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39999 1.39999 1.39999 1.39998 1.39998 1.39998 1.39998 1.39997 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39998 1.39999 1.39999 1.4 1.40001 1.40001 1.40002 1.40003 1.40003 1.40004 1.40004 1.40004 1.40005 1.40005 1.40005 1.40005 1.40005 1.40004 1.40004 1.40004 1.40004 1.40003 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39999 1.39998 1.39998 1.39998 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39999 1.4 1.4 1.40001 1.40002 1.40003 1.40004 1.40004 1.40005 1.40005 1.40006 1.40006 1.40006 1.40006 1.40006 1.40006 1.40006 1.40005 1.40005 1.40004 1.40004 1.40004 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39998 1.39998 1.39998 1.39997 1.39997 1.39996 1.39996 1.39996 1.39996 1.39996 1.39996 1.39996 1.39997 1.39997 1.39998 1.39999 1.4 1.40001 1.40002 1.40003 1.40004 1.40005 1.40006 1.40007 1.40007 1.40008 1.40008 1.40008 1.40008 1.40008 1.40008 1.40007 1.40007 1.40006 1.40006 1.40005 1.40004 1.40004 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39998 1.39997 1.39997 1.39996 1.39996 1.39995 1.39995 1.39995 1.39995 1.39995 1.39996 1.39996 1.39997 1.39998 1.39999 1.4 1.40001 1.40003 1.40004 1.40005 1.40007 1.40008 1.40009 1.40009 1.4001 1.4001 1.40011 1.40011 1.40011 1.4001 1.4001 1.40009 1.40009 1.40008 1.40007 1.40006 1.40006 1.40005 1.40004 1.40004 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39997 1.39997 1.39996 1.39996 1.39995 1.39995 1.39994 1.39994 1.39994 1.39995 1.39996 1.39996 1.39998 1.39999 1.4 1.40002 1.40004 1.40005 1.40007 1.40009 1.4001 1.40012 1.40013 1.40013 1.40014 1.40014 1.40014 1.40014 1.40014 1.40013 1.40013 1.40012 1.40011 1.4001 1.40009 1.40008 1.40007 1.40006 1.40005 1.40004 1.40004 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39997 1.39996 1.39995 1.39995 1.39994 1.39994 1.39994 1.39994 1.39994 1.39995 1.39996 1.39998 1.39999 1.40001 1.40003 1.40006 1.40008 1.4001 1.40012 1.40014 1.40016 1.40017 1.40019 1.40019 1.4002 1.4002 1.4002 1.40019 1.40019 1.40018 1.40017 1.40016 1.40014 1.40013 1.40011 1.4001 1.40009 1.40007 1.40006 1.40005 1.40004 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39996 1.39995 1.39995 1.39994 1.39994 1.39994 1.39994 1.39994 1.39995 1.39997 1.39998 1.4 1.40003 1.40006 1.40009 1.40012 1.40015 1.40018 1.4002 1.40023 1.40025 1.40026 1.40028 1.40028 1.40029 1.40028 1.40028 1.40027 1.40025 1.40024 1.40022 1.4002 1.40018 1.40017 1.40015 1.40013 1.40011 1.40009 1.40008 1.40007 1.40005 1.40004 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39996 1.39995 1.39994 1.39994 1.39994 1.39994 1.39995 1.39996 1.39997 1.4 1.40002 1.40006 1.40009 1.40013 1.40017 1.40022 1.40026 1.40029 1.40033 1.40036 1.40038 1.4004 1.40041 1.40041 1.40041 1.4004 1.40039 1.40037 1.40035 1.40032 1.4003 1.40027 1.40024 1.40022 1.40019 1.40016 1.40014 1.40012 1.4001 1.40008 1.40007 1.40005 1.40004 1.40003 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39995 1.39995 1.39994 1.39994 1.39994 1.39995 1.39997 1.39999 1.40002 1.40005 1.4001 1.40015 1.4002 1.40026 1.40032 1.40037 1.40043 1.40048 1.40052 1.40056 1.40059 1.4006 1.40061 1.40061 1.4006 1.40058 1.40055 1.40052 1.40048 1.40044 1.4004 1.40036 1.40032 1.40028 1.40025 1.40021 1.40018 1.40015 1.40012 1.4001 1.40008 1.40006 1.40005 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39995 1.39995 1.39995 1.39995 1.39996 1.39998 1.40001 1.40005 1.4001 1.40015 1.40022 1.40029 1.40037 1.40045 1.40053 1.40061 1.40069 1.40075 1.40081 1.40085 1.40088 1.4009 1.4009 1.40089 1.40086 1.40083 1.40078 1.40073 1.40067 1.40061 1.40055 1.40049 1.40043 1.40038 1.40032 1.40027 1.40023 1.40019 1.40016 1.40013 1.4001 1.40008 1.40006 1.40005 1.40003 1.40003 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39996 1.39996 1.39996 1.39998 1.4 1.40004 1.40009 1.40015 1.40022 1.40031 1.40041 1.40052 1.40063 1.40075 1.40086 1.40097 1.40107 1.40116 1.40123 1.40129 1.40132 1.40133 1.40132 1.4013 1.40125 1.40119 1.40112 1.40103 1.40095 1.40085 1.40076 1.40067 1.40059 1.4005 1.40043 1.40036 1.4003 1.40025 1.4002 1.40016 1.40013 1.4001 1.40007 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.39997 1.39998 1.4 1.40003 1.40007 1.40013 1.40021 1.40031 1.40042 1.40056 1.4007 1.40086 1.40102 1.40118 1.40135 1.4015 1.40163 1.40175 1.40184 1.40191 1.40194 1.40195 1.40192 1.40187 1.4018 1.4017 1.40159 1.40146 1.40133 1.40119 1.40106 1.40092 1.4008 1.40068 1.40058 1.40048 1.4004 1.40032 1.40026 1.4002 1.40016 1.40012 1.40009 1.40007 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40002 1.40006 1.40011 1.40019 1.40029 1.40041 1.40056 1.40073 1.40092 1.40113 1.40136 1.40159 1.40182 1.40204 1.40224 1.40243 1.40258 1.4027 1.40278 1.40281 1.40281 1.40277 1.40268 1.40257 1.40242 1.40225 1.40206 1.40187 1.40167 1.40147 1.40128 1.4011 1.40093 1.40078 1.40064 1.40053 1.40042 1.40034 1.40026 1.4002 1.40015 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40005 1.40009 1.40016 1.40025 1.40037 1.40052 1.4007 1.40092 1.40117 1.40145 1.40175 1.40207 1.40239 1.4027 1.40301 1.40328 1.40353 1.40373 1.40388 1.40398 1.40402 1.404 1.40393 1.4038 1.40363 1.40341 1.40316 1.40289 1.40261 1.40232 1.40204 1.40177 1.40151 1.40127 1.40106 1.40087 1.40071 1.40056 1.40044 1.40035 1.40026 1.4002 1.40014 1.4001 1.40007 1.40005 1.40003 1.40002 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40012 1.4002 1.40031 1.40045 1.40063 1.40086 1.40113 1.40145 1.40181 1.4022 1.40262 1.40306 1.4035 1.40393 1.40434 1.40471 1.40503 1.4053 1.40549 1.40561 1.40566 1.40562 1.4055 1.40532 1.40507 1.40476 1.40441 1.40403 1.40363 1.40323 1.40283 1.40244 1.40208 1.40175 1.40145 1.40118 1.40095 1.40076 1.40059 1.40046 1.40035 1.40026 1.40019 1.40013 1.40009 1.40006 1.40003 1.40002 1.40001 1.4 1.4 1.4 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40024 1.40036 1.40053 1.40075 1.40102 1.40135 1.40174 1.40219 1.40269 1.40324 1.40381 1.40441 1.405 1.40558 1.40612 1.40662 1.40704 1.40738 1.40763 1.40778 1.40783 1.40777 1.4076 1.40734 1.40699 1.40657 1.40609 1.40556 1.40501 1.40445 1.40389 1.40336 1.40286 1.4024 1.40198 1.40162 1.4013 1.40102 1.4008 1.40061 1.40046 1.40034 1.40024 1.40017 1.40011 1.40007 1.40004 1.40002 1.40001 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40042 1.40061 1.40085 1.40117 1.40156 1.40203 1.40258 1.40321 1.4039 1.40464 1.40542 1.40621 1.407 1.40776 1.40848 1.40911 1.40966 1.4101 1.41042 1.4106 1.41065 1.41056 1.41033 1.40998 1.40951 1.40894 1.40829 1.40758 1.40684 1.40608 1.40532 1.4046 1.40391 1.40328 1.40271 1.4022 1.40176 1.40139 1.40108 1.40082 1.40061 1.40045 1.40032 1.40022 1.40015 1.40009 1.40005 1.40003 1.40001 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40067 1.40095 1.40131 1.40176 1.40232 1.40297 1.40373 1.40458 1.40551 1.4065 1.40753 1.40857 1.4096 1.41059 1.4115 1.41232 1.41301 1.41356 1.41395 1.41418 1.41423 1.4141 1.41381 1.41335 1.41273 1.41199 1.41114 1.41021 1.40923 1.40822 1.40721 1.40623 1.40531 1.40445 1.40368 1.40299 1.40239 1.40188 1.40146 1.40111 1.40083 1.4006 1.40043 1.40029 1.40019 1.40012 1.40007 1.40003 1.40001 1.4 1.39999 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40103 1.40143 1.40194 1.40257 1.40333 1.40423 1.40525 1.40639 1.40762 1.40891 1.41025 1.41159 1.4129 1.41415 1.41529 1.41631 1.41717 1.41784 1.41833 1.4186 1.41865 1.41849 1.41812 1.41754 1.41676 1.41583 1.41474 1.41355 1.41228 1.41097 1.40965 1.40837 1.40714 1.406 1.40497 1.40404 1.40324 1.40255 1.40197 1.4015 1.40112 1.40081 1.40058 1.4004 1.40026 1.40016 1.40009 1.40005 1.40001 1.39999 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40152 1.40208 1.40279 1.40365 1.40469 1.40588 1.40724 1.40872 1.41031 1.41198 1.41367 1.41536 1.41699 1.41852 1.41992 1.42115 1.42218 1.42299 1.42356 1.42388 1.42395 1.42375 1.4233 1.4226 1.42166 1.42051 1.41917 1.41769 1.41609 1.41443 1.41275 1.41109 1.4095 1.40801 1.40664 1.40542 1.40435 1.40343 1.40266 1.40202 1.40151 1.4011 1.40078 1.40054 1.40036 1.40022 1.40013 1.40006 1.40002 1.4 1.39998 1.39997 1.39997 1.39997 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40217 1.40295 1.40391 1.40508 1.40645 1.40802 1.40977 1.41167 1.41369 1.41577 1.41787 1.41993 1.42189 1.42372 1.42538 1.42682 1.42801 1.42895 1.42961 1.42997 1.43005 1.42982 1.4293 1.42849 1.4274 1.42605 1.42446 1.42268 1.42074 1.41869 1.4166 1.41451 1.41248 1.41057 1.4088 1.40721 1.4058 1.40459 1.40356 1.40271 1.40203 1.40148 1.40105 1.40073 1.40049 1.40031 1.40018 1.40009 1.40004 1.4 1.39998 1.39997 1.39996 1.39996 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40305 1.40409 1.40537 1.40691 1.40869 1.41071 1.41294 1.41532 1.41781 1.42035 1.42286 1.4253 1.42759 1.4297 1.43157 1.43319 1.43452 1.43555 1.43627 1.43667 1.43675 1.43651 1.43595 1.43506 1.43386 1.43234 1.43054 1.42849 1.42621 1.42377 1.42124 1.41869 1.41617 1.41376 1.41152 1.40947 1.40766 1.40608 1.40474 1.40362 1.40271 1.40199 1.40142 1.40099 1.40066 1.40042 1.40025 1.40014 1.40006 1.40001 1.39998 1.39996 1.39996 1.39996 1.39996 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40418 1.40556 1.40724 1.40923 1.4115 1.41404 1.4168 1.41971 1.4227 1.42569 1.42861 1.43138 1.43395 1.43626 1.43828 1.43999 1.44139 1.44245 1.44318 1.4436 1.44369 1.44345 1.44289 1.44198 1.44074 1.43915 1.43722 1.43497 1.43242 1.42964 1.42669 1.42365 1.42062 1.41766 1.41487 1.4123 1.40999 1.40797 1.40624 1.40479 1.4036 1.40265 1.4019 1.40133 1.4009 1.40058 1.40036 1.4002 1.40009 1.40002 1.39998 1.39996 1.39995 1.39995 1.39995 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40563 1.40743 1.40959 1.4121 1.41494 1.41806 1.42139 1.42484 1.42831 1.43171 1.43495 1.43796 1.44068 1.44307 1.44511 1.4468 1.44814 1.44915 1.44983 1.45022 1.45031 1.4501 1.44958 1.44875 1.44758 1.44604 1.44412 1.44182 1.43914 1.43612 1.43284 1.42937 1.42582 1.4223 1.41892 1.41576 1.41288 1.41033 1.40813 1.40627 1.40474 1.40351 1.40253 1.40178 1.40121 1.4008 1.40049 1.40028 1.40014 1.40005 1.39999 1.39996 1.39995 1.39994 1.39994 1.39995 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40746 1.40976 1.41247 1.41559 1.41905 1.42279 1.42668 1.43063 1.43451 1.4382 1.44162 1.44469 1.44737 1.44965 1.45152 1.45301 1.45415 1.45498 1.45553 1.45583 1.4559 1.45574 1.45535 1.45469 1.45373 1.45242 1.45072 1.44857 1.44596 1.44291 1.43945 1.43568 1.4317 1.42765 1.42367 1.41988 1.41637 1.41322 1.41047 1.40813 1.40618 1.4046 1.40334 1.40237 1.40163 1.40108 1.40068 1.4004 1.40021 1.40009 1.40001 1.39996 1.39994 1.39993 1.39994 1.39994 1.39995 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40972 1.4126 1.41595 1.41972 1.42384 1.42817 1.43257 1.4369 1.44102 1.4448 1.44817 1.45105 1.45345 1.45536 1.45683 1.45792 1.45869 1.4592 1.45951 1.45967 1.4597 1.45962 1.45941 1.45904 1.45845 1.45756 1.4563 1.45458 1.45234 1.44953 1.44617 1.44231 1.43808 1.43361 1.42909 1.42467 1.4205 1.41669 1.41332 1.41041 1.40796 1.40596 1.40436 1.40311 1.40216 1.40145 1.40093 1.40056 1.40031 1.40014 1.40004 1.39998 1.39994 1.39993 1.39993 1.39993 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41247 1.416 1.42004 1.4245 1.42923 1.43408 1.43885 1.44336 1.44747 1.45106 1.45406 1.45645 1.45825 1.45953 1.46036 1.46084 1.46106 1.46112 1.4611 1.46105 1.46103 1.46103 1.46106 1.46106 1.46098 1.46071 1.46014 1.45914 1.45758 1.45537 1.45245 1.44884 1.44462 1.43995 1.43503 1.43006 1.42524 1.42075 1.4167 1.41315 1.41013 1.40764 1.40563 1.40405 1.40283 1.40192 1.40125 1.40077 1.40044 1.40022 1.40008 1.39999 1.39995 1.39993 1.39992 1.39992 1.39993 1.39994 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41574 1.41998 1.42474 1.42984 1.4351 1.44029 1.44518 1.44959 1.45335 1.45639 1.45868 1.46024 1.46115 1.46153 1.4615 1.46119 1.46072 1.46023 1.45979 1.4595 1.45939 1.45948 1.45978 1.46022 1.46075 1.46124 1.46156 1.46153 1.46099 1.45974 1.45767 1.45471 1.45089 1.44634 1.44126 1.43591 1.43053 1.42538 1.42062 1.41639 1.41273 1.40967 1.40718 1.4052 1.40367 1.40251 1.40166 1.40104 1.40062 1.40033 1.40014 1.40002 1.39996 1.39993 1.39991 1.39992 1.39992 1.39994 1.39995 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41955 1.42454 1.42996 1.43561 1.4412 1.44647 1.45116 1.45507 1.45811 1.46022 1.46144 1.46186 1.46163 1.4609 1.45985 1.45863 1.45741 1.4563 1.45542 1.45485 1.45464 1.45482 1.45538 1.45628 1.45745 1.45878 1.46011 1.46124 1.46196 1.46201 1.46119 1.45932 1.45634 1.45233 1.44745 1.44198 1.43622 1.4305 1.42507 1.42012 1.41578 1.41209 1.40905 1.40661 1.4047 1.40325 1.40217 1.40139 1.40084 1.40047 1.40022 1.40007 1.39998 1.39993 1.39991 1.39991 1.39992 1.39993 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4239 1.42959 1.43558 1.44157 1.44721 1.45219 1.45628 1.45929 1.4612 1.46203 1.46189 1.46094 1.4594 1.45746 1.45532 1.45317 1.45117 1.44946 1.44815 1.44731 1.447 1.44725 1.44805 1.44938 1.45117 1.45332 1.45567 1.45803 1.46014 1.46172 1.46246 1.46208 1.46041 1.4574 1.45316 1.44794 1.44208 1.43597 1.42996 1.42433 1.41927 1.4149 1.41125 1.40829 1.40595 1.40415 1.4028 1.40182 1.40113 1.40065 1.40033 1.40013 1.40001 1.39994 1.39991 1.3999 1.39991 1.39992 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.42871 1.435 1.44137 1.4474 1.45272 1.457 1.46005 1.46177 1.46221 1.46149 1.4598 1.45738 1.45447 1.45131 1.44813 1.4451 1.44239 1.44014 1.43843 1.43735 1.43695 1.43725 1.43826 1.43996 1.44229 1.44517 1.44847 1.45199 1.4555 1.45868 1.46115 1.46256 1.46259 1.46105 1.45793 1.45341 1.44781 1.44159 1.43516 1.42893 1.42319 1.41812 1.4138 1.41026 1.40743 1.40523 1.40357 1.40236 1.40148 1.40088 1.40047 1.40021 1.40005 1.39996 1.39992 1.3999 1.3999 1.39991 1.39992 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.43388 1.44059 1.44703 1.45273 1.45729 1.46044 1.46206 1.46217 1.46091 1.4585 1.4552 1.45132 1.44711 1.44284 1.43872 1.43493 1.43163 1.42892 1.42689 1.42562 1.42513 1.42547 1.42664 1.42863 1.4314 1.43489 1.43898 1.44353 1.4483 1.453 1.45723 1.46056 1.46255 1.46286 1.46131 1.45796 1.45307 1.44708 1.4405 1.43383 1.42746 1.4217 1.41671 1.41253 1.40916 1.40651 1.40449 1.403 1.40192 1.40117 1.40065 1.40032 1.40011 1.39999 1.39993 1.3999 1.3999 1.3999 1.39992 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.43923 1.44608 1.45222 1.45716 1.46053 1.46217 1.46207 1.46036 1.4573 1.45319 1.44837 1.44313 1.43778 1.43256 1.42766 1.42327 1.41949 1.41643 1.41416 1.41273 1.41219 1.41255 1.41384 1.41604 1.41914 1.42309 1.42782 1.4332 1.43904 1.44507 1.45092 1.45612 1.46016 1.46256 1.46295 1.46121 1.45748 1.45215 1.44574 1.43885 1.43201 1.42562 1.41994 1.41511 1.41114 1.408 1.40558 1.40377 1.40245 1.40152 1.40088 1.40046 1.40019 1.40003 1.39995 1.3999 1.39989 1.3999 1.39991 1.39992 1.39994 1.39995 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.44453 1.45116 1.45659 1.46034 1.46215 1.46199 1.45999 1.45642 1.4516 1.44591 1.43971 1.43332 1.42702 1.42103 1.41553 1.41067 1.40654 1.40322 1.40077 1.39923 1.39863 1.399 1.40036 1.40272 1.40606 1.41035 1.41556 1.42158 1.42827 1.4354 1.44264 1.44954 1.45556 1.46011 1.46266 1.46288 1.46074 1.45649 1.45064 1.44383 1.43669 1.42978 1.42346 1.41797 1.41339 1.4097 1.40683 1.40466 1.40307 1.40194 1.40115 1.40063 1.40029 1.40009 1.39997 1.39992 1.39989 1.39989 1.3999 1.39992 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.44952 1.45553 1.45981 1.46201 1.462 1.4599 1.45597 1.45059 1.44416 1.43709 1.42973 1.42239 1.41534 1.40876 1.40281 1.39759 1.3932 1.38968 1.38708 1.38545 1.3848 1.38517 1.38658 1.38903 1.39254 1.39709 1.40265 1.40916 1.4165 1.4245 1.43288 1.44124 1.44905 1.45565 1.46042 1.46282 1.46259 1.45983 1.45493 1.44853 1.44137 1.43408 1.42721 1.42108 1.41587 1.41162 1.40826 1.4057 1.4038 1.40243 1.40148 1.40084 1.40042 1.40016 1.40001 1.39993 1.3999 1.39989 1.3999 1.39991 1.39993 1.39994 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.45391 1.45889 1.46168 1.46206 1.46009 1.45603 1.45027 1.44325 1.43541 1.42717 1.41887 1.41079 1.40316 1.39613 1.38982 1.38433 1.37971 1.37601 1.37328 1.37156 1.37086 1.37122 1.37265 1.37519 1.37882 1.38357 1.38941 1.39629 1.40414 1.41282 1.42211 1.43167 1.441 1.44947 1.45637 1.46101 1.46292 1.46197 1.45839 1.45277 1.44586 1.43842 1.43111 1.4244 1.41857 1.41373 1.40986 1.40687 1.40463 1.40301 1.40187 1.40109 1.40057 1.40025 1.40006 1.39996 1.39991 1.39989 1.39989 1.39991 1.39992 1.39994 1.39995 1.39997 1.39998 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.45746 1.46106 1.46209 1.46052 1.45657 1.45065 1.44322 1.43477 1.42576 1.41658 1.40753 1.39888 1.39078 1.38338 1.37676 1.37099 1.36614 1.36225 1.35937 1.35754 1.35678 1.35713 1.35861 1.36122 1.36499 1.36992 1.37599 1.38318 1.39145 1.40068 1.41069 1.42122 1.43182 1.44192 1.45077 1.45759 1.46172 1.4628 1.46086 1.45635 1.45 1.44264 1.43506 1.42787 1.42146 1.41603 1.41163 1.40818 1.40557 1.40367 1.40231 1.40138 1.40076 1.40036 1.40012 1.39999 1.39992 1.3999 1.39989 1.3999 1.39992 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.46 1.46194 1.46106 1.45752 1.4517 1.44408 1.4352 1.42555 1.41558 1.40564 1.396 1.38687 1.37837 1.3706 1.36364 1.35756 1.35242 1.34827 1.34519 1.34322 1.34241 1.34277 1.34433 1.34709 1.35104 1.35617 1.36249 1.36998 1.3786 1.38828 1.39889 1.4102 1.42186 1.43333 1.44391 1.45276 1.45909 1.46231 1.46224 1.45914 1.45365 1.44664 1.43897 1.43141 1.42448 1.41849 1.41354 1.40962 1.40662 1.40441 1.40282 1.40171 1.40097 1.4005 1.4002 1.40003 1.39994 1.3999 1.39989 1.3999 1.39991 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.46142 1.46154 1.45872 1.4533 1.44575 1.43665 1.42653 1.4159 1.40515 1.3946 1.38446 1.37488 1.36596 1.35777 1.35037 1.34385 1.3383 1.33381 1.33045 1.32832 1.32745 1.32788 1.3296 1.3326 1.33685 1.3423 1.34894 1.35675 1.36572 1.3758 1.38691 1.39888 1.4114 1.42402 1.43609 1.44677 1.45518 1.46056 1.4625 1.46104 1.45669 1.45027 1.44274 1.43496 1.42759 1.42107 1.41559 1.41118 1.40778 1.40523 1.40339 1.4021 1.40122 1.40065 1.4003 1.40009 1.39997 1.39992 1.3999 1.3999 1.39991 1.39993 1.39994 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.46172 1.45997 1.45528 1.44811 1.43904 1.42865 1.41751 1.40607 1.39468 1.38361 1.373 1.36294 1.35349 1.34473 1.33672 1.32958 1.32344 1.31843 1.31469 1.31233 1.31143 1.312 1.31402 1.31745 1.32218 1.32815 1.33528 1.34354 1.35291 1.36339 1.37493 1.38743 1.40067 1.41424 1.42758 1.43987 1.4502 1.45768 1.46168 1.46202 1.45903 1.45346 1.44626 1.43842 1.43072 1.42373 1.41774 1.41285 1.40902 1.40613 1.40401 1.40252 1.4015 1.40083 1.40041 1.40015 1.40001 1.39993 1.39991 1.3999 1.39991 1.39993 1.39994 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.46098 1.45739 1.45094 1.4422 1.4318 1.42034 1.40835 1.39625 1.38432 1.37274 1.36161 1.35096 1.34082 1.33125 1.32236 1.31432 1.30732 1.30157 1.29728 1.2946 1.29365 1.29446 1.29698 1.30109 1.30663 1.31342 1.32133 1.33026 1.34019 1.35113 1.3631 1.37606 1.38987 1.40423 1.41862 1.43231 1.44437 1.45382 1.45986 1.4621 1.46064 1.45612 1.44947 1.44173 1.43382 1.42643 1.41996 1.4146 1.41034 1.40709 1.4047 1.40299 1.40182 1.40103 1.40053 1.40022 1.40005 1.39996 1.39992 1.39991 1.39991 1.39992 1.39994 1.39995 1.39997 1.39998 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.45933 1.45399 1.44594 1.43582 1.42429 1.41193 1.39924 1.38657 1.37413 1.36202 1.35025 1.3388 1.32769 1.31698 1.30684 1.29751 1.28928 1.28246 1.27736 1.27423 1.27322 1.27439 1.27764 1.28279 1.28955 1.29763 1.30674 1.31672 1.32748 1.33905 1.35152 1.36491 1.37921 1.39419 1.40945 1.42432 1.4379 1.44916 1.45717 1.46132 1.46151 1.45821 1.45229 1.44483 1.43684 1.42913 1.42223 1.41641 1.41173 1.40812 1.40543 1.4035 1.40216 1.40126 1.40067 1.40031 1.4001 1.39998 1.39993 1.39991 1.39991 1.39992 1.39994 1.39995 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.45692 1.44996 1.44049 1.42918 1.41669 1.40358 1.39029 1.3771 1.36414 1.35139 1.33879 1.32626 1.3138 1.30151 1.28962 1.27848 1.26851 1.26018 1.25393 1.25014 1.24905 1.25071 1.255 1.26163 1.27016 1.28011 1.29102 1.30257 1.31459 1.32709 1.34021 1.35409 1.36881 1.3843 1.40025 1.4161 1.43099 1.44388 1.45374 1.45977 1.46167 1.45972 1.45469 1.44766 1.43971 1.43178 1.42451 1.41826 1.41317 1.40919 1.40621 1.40404 1.40253 1.4015 1.40083 1.40041 1.40016 1.40002 1.39995 1.39992 1.39992 1.39993 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.45393 1.4455 1.43477 1.42244 1.40914 1.39541 1.3816 1.3679 1.35433 1.34077 1.32707 1.31308 1.2988 1.28435 1.27008 1.25645 1.2441 1.23371 1.22591 1.22123 1.22001 1.22232 1.228 1.23663 1.24758 1.26013 1.27358 1.28737 1.30122 1.31509 1.32915 1.34364 1.35881 1.37472 1.39121 1.40784 1.42383 1.43816 1.44972 1.45757 1.46118 1.46066 1.45665 1.45018 1.4424 1.43434 1.42676 1.42012 1.41464 1.4103 1.40702 1.40462 1.40292 1.40176 1.401 1.40052 1.40022 1.40006 1.39997 1.39993 1.39992 1.39993 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4505 1.44078 1.42895 1.41574 1.40178 1.3875 1.3732 1.35895 1.34465 1.33007 1.31492 1.29901 1.28231 1.26501 1.24756 1.23066 1.2152 1.20212 1.19233 1.18653 1.18514 1.18828 1.19573 1.20694 1.22104 1.23701 1.25382 1.27067 1.28704 1.30283 1.31821 1.33355 1.34925 1.36555 1.38248 1.39972 1.41662 1.43218 1.44527 1.45482 1.46012 1.46107 1.45817 1.45238 1.44488 1.43678 1.42895 1.42197 1.41611 1.41143 1.40785 1.40521 1.40333 1.40204 1.40118 1.40063 1.4003 1.4001 1.4 1.39995 1.39993 1.39993 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4468 1.43592 1.42315 1.40921 1.39467 1.37992 1.36513 1.35025 1.33505 1.31916 1.30217 1.28379 1.26399 1.24301 1.22152 1.20047 1.18112 1.16477 1.15257 1.14542 1.14384 1.14798 1.15759 1.17195 1.18993 1.21017 1.23127 1.25205 1.27174 1.29009 1.30727 1.32377 1.34015 1.35687 1.37416 1.39188 1.4095 1.4261 1.44054 1.45165 1.45857 1.46099 1.45925 1.45423 1.44711 1.43906 1.43107 1.42378 1.41758 1.41257 1.4087 1.40582 1.40376 1.40233 1.40137 1.40076 1.40037 1.40015 1.40003 1.39996 1.39994 1.39994 1.39994 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.44296 1.43107 1.4175 1.40293 1.38791 1.37271 1.35739 1.34177 1.32547 1.30796 1.28867 1.26723 1.24356 1.21804 1.19158 1.16554 1.14159 1.12142 1.10646 1.09777 1.09597 1.10127 1.11338 1.13142 1.15399 1.17933 1.2056 1.2312 1.25505 1.27667 1.2962 1.31423 1.3315 1.34872 1.36634 1.38443 1.4026 1.42006 1.43566 1.44818 1.45662 1.46048 1.45994 1.45576 1.44909 1.44118 1.43307 1.42553 1.41902 1.4137 1.40955 1.40644 1.40419 1.40263 1.40157 1.40089 1.40046 1.4002 1.40006 1.39999 1.39995 1.39994 1.39995 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.43909 1.42633 1.41206 1.39697 1.38151 1.36588 1.34998 1.33349 1.31587 1.2964 1.27436 1.24923 1.22093 1.19001 1.15773 1.12595 1.09682 1.07241 1.05442 1.04403 1.04197 1.04852 1.06338 1.08556 1.11334 1.14451 1.17674 1.208 1.2368 1.26242 1.28489 1.30487 1.32329 1.34112 1.35907 1.37745 1.39605 1.41419 1.43078 1.44455 1.45439 1.45963 1.46027 1.45696 1.45082 1.44309 1.43494 1.4272 1.42041 1.4148 1.41038 1.40705 1.40463 1.40293 1.40178 1.40102 1.40055 1.40026 1.40009 1.40001 1.39997 1.39995 1.39995 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.43529 1.42178 1.40692 1.39137 1.37553 1.35945 1.3429 1.3254 1.30623 1.2845 1.25925 1.22985 1.19622 1.15915 1.12037 1.08229 1.04758 1.01869 0.997483 0.985252 0.982842 0.990649 1.00844 1.03508 1.06853 1.10611 1.14496 1.18255 1.21699 1.24727 1.27326 1.29562 1.31549 1.33408 1.3524 1.371 1.38991 1.40858 1.42599 1.44086 1.45197 1.4585 1.46029 1.45787 1.45229 1.44481 1.43666 1.42876 1.42173 1.41586 1.4112 1.40765 1.40506 1.40323 1.40198 1.40116 1.40064 1.40032 1.40013 1.40003 1.39998 1.39996 1.39996 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.43165 1.41749 1.40213 1.38618 1.36997 1.35344 1.33616 1.31751 1.29659 1.27231 1.24351 1.20936 1.16985 1.12609 1.08034 1.03565 0.995212 0.961734 0.937221 0.923045 0.920182 0.929188 0.949924 0.98118 1.02059 1.06495 1.11086 1.15525 1.19584 1.23129 1.26129 1.28646 1.30807 1.32759 1.34633 1.36515 1.38428 1.40334 1.42141 1.43721 1.44945 1.45718 1.46007 1.45852 1.45351 1.44633 1.43822 1.43021 1.42298 1.41686 1.41197 1.40823 1.40548 1.40353 1.40219 1.4013 1.40073 1.40038 1.40017 1.40006 1.4 1.39997 1.39997 1.39997 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.42822 1.41352 1.39772 1.38142 1.36487 1.34786 1.3298 1.30987 1.28704 1.26002 1.2274 1.18821 1.14252 1.09179 1.03892 0.987601 0.941473 0.903489 0.875709 0.859573 0.856184 0.866282 0.889843 0.925618 0.97097 1.02222 1.07536 1.12679 1.17379 1.21473 1.24908 1.2774 1.30103 1.32165 1.34089 1.3599 1.37918 1.39852 1.41712 1.4337 1.44693 1.45573 1.45964 1.45894 1.45451 1.44764 1.43962 1.43153 1.42412 1.4178 1.41271 1.40878 1.40588 1.40381 1.40239 1.40143 1.40082 1.40044 1.40021 1.40008 1.40002 1.39999 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.42506 1.40991 1.39374 1.37711 1.36023 1.34274 1.32385 1.30256 1.27772 1.24785 1.21134 1.16707 1.11517 1.05754 0.997705 0.939991 0.888459 0.84623 0.815404 0.797455 0.793591 0.804679 0.830802 0.870721 0.921632 0.979471 1.03966 1.09805 1.15147 1.19798 1.23685 1.26853 1.29437 1.31625 1.33607 1.35528 1.37465 1.39419 1.41317 1.4304 1.44448 1.45424 1.45909 1.45917 1.45531 1.44876 1.44085 1.43271 1.42516 1.41866 1.41338 1.4093 1.40626 1.40408 1.40258 1.40157 1.40091 1.4005 1.40025 1.40011 1.40004 1.4 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.42222 1.40669 1.39021 1.37328 1.35606 1.3381 1.31838 1.29571 1.26881 1.23611 1.19584 1.14671 1.08892 1.02479 0.958466 0.894857 0.838412 0.792407 0.758971 0.739565 0.735417 0.747442 0.775762 0.819182 0.874881 0.938575 1.00523 1.07014 1.12967 1.18157 1.22491 1.25999 1.28816 1.3114 1.33186 1.35129 1.37072 1.39036 1.40963 1.42737 1.44217 1.45276 1.45844 1.45924 1.45592 1.44969 1.4419 1.43374 1.42608 1.41943 1.414 1.40976 1.40661 1.40433 1.40275 1.40169 1.401 1.40056 1.4003 1.40014 1.40006 1.40001 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41973 1.4039 1.38716 1.36994 1.35239 1.33397 1.31346 1.28944 1.26053 1.22515 1.18141 1.12792 1.06492 0.995049 0.922997 0.854221 0.793534 0.744399 0.708952 0.688583 0.684442 0.697373 0.727464 0.773578 0.833008 0.901465 0.97362 1.04426 1.10929 1.16613 1.21365 1.25201 1.28249 1.30713 1.32827 1.34792 1.36738 1.38707 1.40653 1.42467 1.44005 1.45136 1.45776 1.45921 1.45637 1.45045 1.44278 1.43462 1.42688 1.42011 1.41453 1.41018 1.40691 1.40456 1.40292 1.40181 1.40108 1.40062 1.40034 1.40017 1.40008 1.40003 1.4 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41762 1.40153 1.3846 1.36713 1.34924 1.33039 1.30918 1.28392 1.25314 1.21529 1.16855 1.11144 1.0442 0.969668 0.892926 0.819888 0.755757 0.704208 0.667375 0.646518 0.642633 0.656411 0.687844 0.735833 0.797861 0.869799 0.946227 1.02154 1.09121 1.15231 1.20351 1.24484 1.27748 1.30348 1.32531 1.34518 1.36465 1.38433 1.40391 1.42234 1.43819 1.45008 1.4571 1.4591 1.45669 1.45104 1.4435 1.43535 1.42755 1.42067 1.41499 1.41053 1.40718 1.40476 1.40306 1.40191 1.40115 1.40067 1.40037 1.4002 1.4001 1.40004 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41593 1.39962 1.38254 1.36486 1.34665 1.3274 1.30561 1.27933 1.24691 1.20691 1.15768 1.09783 1.02755 0.949686 0.869507 0.793261 0.726529 0.673221 0.635483 0.614432 0.610891 0.625392 0.657793 0.706978 0.770586 0.844747 0.924135 1.00293 1.0762 1.1407 1.19493 1.23876 1.27329 1.30052 1.32297 1.34305 1.36251 1.38214 1.40177 1.4204 1.43661 1.44897 1.45649 1.45895 1.4569 1.45148 1.44406 1.43593 1.42808 1.42113 1.41536 1.41083 1.40741 1.40492 1.40318 1.402 1.40122 1.40072 1.40041 1.40022 1.40012 1.40006 1.40002 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41468 1.39817 1.38098 1.36316 1.34466 1.32503 1.3028 1.27579 1.24209 1.20031 1.14915 1.08745 1.01539 0.935657 0.853448 0.775145 0.706639 0.652103 0.61374 0.592574 0.589291 0.604307 0.637364 0.687251 0.751661 0.826962 0.908054 0.989075 1.06483 1.13179 1.18826 1.23402 1.27005 1.29829 1.32128 1.34153 1.36095 1.38051 1.40013 1.41889 1.43535 1.44805 1.45596 1.45877 1.45701 1.45177 1.44445 1.43634 1.42847 1.42147 1.41564 1.41105 1.40758 1.40506 1.40328 1.40208 1.40128 1.40076 1.40044 1.40025 1.40013 1.40007 1.40003 1.40002 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4139 1.3972 1.37991 1.36204 1.34332 1.32334 1.30079 1.27338 1.23889 1.19584 1.14328 1.08048 1.00776 0.927579 0.844781 0.765632 0.696194 0.640891 0.602075 0.580758 0.577544 0.5928 0.626212 0.676424 0.741066 0.816649 0.89834 0.980397 1.05749 1.1259 1.18378 1.23082 1.2679 1.29688 1.32026 1.34061 1.35997 1.37943 1.399 1.41781 1.43443 1.44737 1.45554 1.4586 1.45704 1.45194 1.44469 1.43661 1.42872 1.42169 1.41583 1.4112 1.4077 1.40515 1.40336 1.40214 1.40132 1.4008 1.40047 1.40027 1.40015 1.40008 1.40004 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.41359 1.39676 1.37936 1.36148 1.34266 1.3224 1.29961 1.27213 1.23742 1.19377 1.14039 1.0771 1.00455 0.925049 0.842957 0.764152 0.694669 0.63914 0.600131 0.5787 0.575389 0.590581 0.623982 0.674137 0.738522 0.813688 0.895042 0.977055 1.05441 1.12326 1.18167 1.2293 1.26693 1.29632 1.31991 1.34029 1.35955 1.37889 1.39838 1.41718 1.43387 1.44693 1.45525 1.45845 1.457 1.45198 1.44478 1.43671 1.42883 1.42179 1.41592 1.41128 1.40777 1.40521 1.40341 1.40218 1.40136 1.40083 1.4005 1.40029 1.40017 1.4001 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.41374 1.39686 1.37934 1.36145 1.34268 1.32231 1.29936 1.272 1.23765 1.1942 1.14076 1.07755 1.00572 0.927631 0.847197 0.769795 0.701222 0.646207 0.607501 0.586193 0.582758 0.59761 0.63057 0.680172 0.743753 0.817839 0.898019 0.979007 1.05559 1.12392 1.18203 1.22954 1.26719 1.29664 1.32025 1.34056 1.35969 1.37888 1.39826 1.417 1.43368 1.44675 1.45509 1.45833 1.4569 1.4519 1.44471 1.43666 1.4288 1.42177 1.41592 1.41129 1.40779 1.40523 1.40344 1.40221 1.40139 1.40086 1.40052 1.40031 1.40018 1.40011 1.40006 1.40004 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.41432 1.39752 1.37991 1.36198 1.34334 1.32306 1.30012 1.27302 1.23944 1.19702 1.1445 1.08216 1.01154 0.935269 0.857073 0.781883 0.715161 0.66157 0.623898 0.603162 0.599723 0.614036 0.646097 0.694541 0.756654 0.828929 0.9071 0.986118 1.06096 1.12784 1.18483 1.23155 1.2687 1.29787 1.32128 1.34141 1.36037 1.3794 1.39865 1.41727 1.43385 1.44683 1.45508 1.45824 1.45674 1.4517 1.4445 1.43646 1.42862 1.42163 1.41581 1.41122 1.40775 1.40522 1.40344 1.40222 1.4014 1.40087 1.40054 1.40033 1.4002 1.40012 1.40007 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.41531 1.39869 1.3811 1.36311 1.3446 1.32462 1.30195 1.27526 1.24268 1.20192 1.15136 1.09096 1.02234 0.94835 0.872808 0.800422 0.736376 0.685123 0.649259 0.629582 0.626303 0.63992 0.670646 0.717297 0.777193 0.846835 0.922108 0.998215 1.07035 1.13489 1.18997 1.23527 1.27144 1.29998 1.32298 1.34284 1.36159 1.38045 1.39953 1.418 1.43439 1.44717 1.45521 1.45817 1.45652 1.45139 1.44414 1.43611 1.42831 1.42138 1.41562 1.41108 1.40765 1.40516 1.40341 1.40221 1.40141 1.40088 1.40055 1.40034 1.40021 1.40013 1.40008 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.41671 1.40034 1.3829 1.3649 1.34647 1.32688 1.30479 1.27879 1.24735 1.2086 1.16082 1.10352 1.03802 0.967171 0.894891 0.825915 0.765263 0.717076 0.683571 0.665244 0.662184 0.674947 0.703943 0.748207 0.805146 0.871312 0.942761 1.015 1.0835 1.14484 1.19729 1.24058 1.27533 1.30293 1.32535 1.34483 1.36334 1.38201 1.40091 1.41916 1.43528 1.44775 1.45547 1.45812 1.45624 1.45094 1.44363 1.4356 1.42785 1.421 1.41533 1.41087 1.40751 1.40507 1.40336 1.40218 1.4014 1.40089 1.40056 1.40035 1.40022 1.40014 1.40009 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.41853 1.40244 1.38527 1.36738 1.34902 1.32979 1.30848 1.28354 1.25352 1.21693 1.17232 1.11902 1.05784 0.991305 0.923269 0.85853 0.801987 0.757362 0.726413 0.709428 0.706491 0.718222 0.745171 0.786539 0.839866 0.901781 0.968537 1.03598 1.09998 1.15735 1.20654 1.24731 1.28028 1.30667 1.32834 1.34738 1.36562 1.38408 1.40277 1.42075 1.43652 1.44856 1.45583 1.45807 1.45586 1.45036 1.44296 1.43494 1.42726 1.42051 1.41495 1.41059 1.40732 1.40495 1.40328 1.40214 1.40138 1.40088 1.40056 1.40036 1.40023 1.40015 1.4001 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.42076 1.40498 1.38813 1.37051 1.35232 1.33339 1.31286 1.28925 1.26102 1.22684 1.18561 1.13671 1.08067 1.01953 0.956877 0.897404 0.8457 0.804921 0.776463 0.760658 0.75772 0.768294 0.792966 0.831056 0.880221 0.93723 0.998569 1.06046 1.1192 1.17198 1.21739 1.25526 1.28614 1.31114 1.33194 1.35048 1.36841 1.38666 1.40511 1.42275 1.43807 1.44957 1.45627 1.458 1.45539 1.44964 1.44214 1.43413 1.42654 1.41992 1.41449 1.41026 1.40709 1.40479 1.40319 1.40209 1.40135 1.40087 1.40056 1.40036 1.40023 1.40015 1.4001 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.42335 1.40795 1.39147 1.37421 1.35633 1.33776 1.31793 1.29568 1.26951 1.2381 1.20046 1.15614 1.10557 1.05045 0.99406 0.940749 0.894452 0.857633 0.831561 0.816861 0.813904 0.823274 0.845533 0.880077 0.92468 0.976281 1.03167 1.08748 1.14046 1.18818 1.22947 1.26417 1.29276 1.31624 1.3361 1.35409 1.37173 1.38974 1.40791 1.42514 1.43991 1.45075 1.45676 1.45788 1.4548 1.44877 1.44116 1.43318 1.4257 1.41923 1.41396 1.40986 1.40681 1.40461 1.40307 1.40202 1.40131 1.40085 1.40055 1.40036 1.40024 1.40016 1.40011 1.40007 1.40005 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.42627 1.41133 1.39527 1.37843 1.36097 1.34287 1.32374 1.30275 1.27866 1.2502 1.21641 1.17684 1.13186 1.083 1.03331 0.986598 0.945877 0.912976 0.889292 0.875794 0.872898 0.881065 0.900835 0.93168 0.97148 1.01738 1.06649 1.11593 1.1629 1.20537 1.24236 1.27378 1.3 1.32189 1.34077 1.35823 1.37555 1.39332 1.41116 1.42789 1.44199 1.45204 1.45725 1.45766 1.45407 1.44773 1.44001 1.43208 1.42474 1.41844 1.41335 1.40942 1.4065 1.4044 1.40294 1.40194 1.40127 1.40083 1.40054 1.40036 1.40024 1.40016 1.40011 1.40008 1.40005 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.42947 1.41504 1.39949 1.38313 1.36616 1.34863 1.33026 1.31046 1.2883 1.26273 1.23283 1.19809 1.15875 1.11624 1.07336 1.03318 0.997791 0.968674 0.947478 0.93535 0.932582 0.939551 0.956834 0.983942 1.01885 1.05895 1.10174 1.14477 1.18573 1.22296 1.25569 1.28384 1.30771 1.32802 1.34594 1.36286 1.37988 1.39738 1.41482 1.43096 1.44426 1.45339 1.45769 1.45732 1.45317 1.44652 1.43871 1.43084 1.42366 1.41757 1.41268 1.40893 1.40616 1.40417 1.40279 1.40185 1.40122 1.4008 1.40053 1.40035 1.40024 1.40016 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.43293 1.41906 1.40405 1.38825 1.37185 1.35495 1.33738 1.31875 1.29838 1.27547 1.24922 1.21912 1.18531 1.14908 1.11282 1.07875 1.04825 1.0228 1.00423 0.99356 0.990924 0.996741 1.01165 1.03513 1.06521 1.0996 1.13622 1.17306 1.20824 1.24044 1.26911 1.29414 1.31576 1.33456 1.35158 1.36799 1.38471 1.40189 1.41886 1.43429 1.44666 1.45475 1.45803 1.45682 1.45207 1.44512 1.43724 1.42947 1.42249 1.41663 1.41197 1.40841 1.4058 1.40393 1.40263 1.40175 1.40116 1.40077 1.40051 1.40034 1.40023 1.40016 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.43662 1.42337 1.40891 1.3937 1.37795 1.36174 1.34501 1.32751 1.3088 1.28827 1.2653 1.23944 1.2108 1.18048 1.15025 1.12161 1.09559 1.07377 1.0579 1.04868 1.04618 1.05098 1.06374 1.08379 1.10924 1.13818 1.16898 1.20004 1.22986 1.25744 1.28235 1.30451 1.32406 1.34147 1.35765 1.37361 1.39001 1.40683 1.42323 1.43781 1.44911 1.45602 1.4582 1.4561 1.45077 1.44352 1.43561 1.42798 1.42123 1.41563 1.41121 1.40786 1.40541 1.40367 1.40247 1.40164 1.4011 1.40073 1.40049 1.40034 1.40023 1.40016 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.44044 1.42793 1.41407 1.39944 1.38435 1.36889 1.35302 1.33663 1.31943 1.30102 1.28092 1.25882 1.2348 1.20965 1.18463 1.16071 1.13883 1.12055 1.10729 1.09945 1.09715 1.10116 1.11201 1.12884 1.14995 1.17385 1.19933 1.22518 1.25021 1.27366 1.29524 1.31484 1.33254 1.34872 1.36416 1.37969 1.39577 1.41215 1.42785 1.44144 1.45152 1.45714 1.45814 1.45513 1.44922 1.44173 1.43384 1.42639 1.4199 1.41458 1.41042 1.40729 1.40502 1.40341 1.40229 1.40154 1.40103 1.40069 1.40047 1.40032 1.40023 1.40016 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.44428 1.43266 1.41949 1.40545 1.39098 1.37626 1.36129 1.34597 1.33016 1.31361 1.29601 1.27714 1.25702 1.23622 1.21559 1.19578 1.17769 1.1627 1.15181 1.14519 1.14319 1.14663 1.15575 1.16957 1.18669 1.20608 1.2269 1.24819 1.26906 1.28898 1.30769 1.32508 1.34117 1.35629 1.37109 1.38623 1.40195 1.41779 1.43265 1.44508 1.45378 1.45801 1.45779 1.45386 1.44743 1.43975 1.43192 1.42471 1.41852 1.4135 1.40962 1.40672 1.40462 1.40314 1.40212 1.40143 1.40096 1.40065 1.40045 1.40031 1.40022 1.40016 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 ) ; boundaryField { emptyPatches_empt { type empty; } top_cyc { type cyclic; } bottom_cyc { type cyclic; } inlet_cyc { type cyclic; } outlet_cyc { type cyclic; } procBoundary3to1 { type processor; value nonuniform List<scalar> 75 ( 1.44803 1.43745 1.4251 1.41171 1.39785 1.38381 1.36966 1.35537 1.34085 1.32596 1.3105 1.29429 1.27738 1.26018 1.24323 1.22698 1.21225 1.20014 1.19124 1.18571 1.18409 1.18708 1.19458 1.20559 1.21915 1.23467 1.25155 1.26902 1.28641 1.30336 1.31968 1.33522 1.34995 1.36417 1.37842 1.39319 1.40848 1.42366 1.43751 1.44861 1.4558 1.45854 1.45708 1.45229 1.44538 1.43759 1.42989 1.42295 1.41709 1.4124 1.4088 1.40614 1.40422 1.40287 1.40194 1.40132 1.40089 1.40061 1.40042 1.4003 1.40021 1.40015 1.40011 1.40008 1.40006 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 ) ; } procBoundary3to1throughtop_cyc { type processorCyclic; value nonuniform List<scalar> 75 ( 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 ) ; } procBoundary3to2 { type processor; value nonuniform List<scalar> 75 ( 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39998 1.39998 1.39997 1.39997 1.39996 1.39996 1.39996 1.39996 1.39997 1.39998 1.40002 1.40007 1.40016 1.40028 1.40046 1.40072 1.40108 1.40157 1.40222 1.40308 1.40418 1.40558 1.40734 1.40949 1.41209 1.41518 1.41876 1.42284 1.42736 1.43222 1.43729 1.44237 1.44724 1.45165 1.4554 1.45831 1.46029 1.46131 1.46142 1.46072 1.45933 1.45739 1.45502 1.45238 1.44956 1.44668 1.44383 1.44109 1.43852 1.43618 1.43413 1.43239 1.431 1.42997 1.42933 1.42904 1.42912 1.42956 1.43037 1.43157 1.43313 1.435 1.43716 1.43956 1.44219 1.44499 1.44787 1.45073 1.45346 ) ; } procBoundary3to2throughoutlet_cyc { type processorCyclic; value nonuniform List<scalar> 75 ( 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 ) ; } } // ************************************************************************* //
[ "tdg@debian" ]
tdg@debian
a51d26e1f33d42fb04f82ccde5f4be74207c2d13
645d294391d20dd42326f52a96d39f34197f320c
/equations/Expo.h
549b8423019fecbf0a370afd7c270eb32cfa5b18
[ "Apache-2.0" ]
permissive
kleemedia/universal-tween-engine-cpp
554b495c36e081de0ed9a759ef6d309ae4950570
694cddbf2cd1f2b0ec3082a78177eb9aee98fe22
refs/heads/master
2022-08-22T01:39:47.381446
2022-07-30T21:10:22
2022-07-30T21:10:22
16,097,550
6
3
null
null
null
null
UTF-8
C++
false
false
704
h
// // Expo.h // // This code is derived from Universal Tween Engine // Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 // #ifndef __Expo__ #define __Expo__ #include "TweenEquation.h" namespace TweenEngine { class ExpoIn : public TweenEquation { ~ExpoIn(); float compute(float t); const char *toString(); }; class ExpoOut : public TweenEquation { ~ExpoOut(); float compute(float t); const char *toString(); }; class ExpoInOut : public TweenEquation { ~ExpoInOut(); float compute(float t); const char *toString(); }; } #endif /* defined(__Expo__) */
[ "kleemedia@gmail.com" ]
kleemedia@gmail.com
28017e29b818677e966097861108f82a2f2917e1
88732e8377449994037d68dccc07202ecd34a3f8
/cpp/src/processtracker.h
9a239614835d90ed13f0872cb788029647e69204
[ "MIT" ]
permissive
magland/mountainlab_devel
24ad490d67f6f846d36d566f7a0d6312a6103d30
8176e9b1cd3b7e1f71e2de60f2319f5030510636
refs/heads/master
2020-12-31T02:50:57.980689
2015-12-23T02:13:35
2015-12-23T02:13:35
45,925,372
0
0
null
null
null
null
UTF-8
C++
false
false
683
h
#ifndef PROCESSTRACKER_H #define PROCESSTRACKER_H #include "get_command_line_params.h" struct PTProcessor { QString command; QString version; QStringList input_file_pnames; QStringList output_file_pnames; }; class ProcessTrackerPrivate; class ProcessTracker { public: friend class ProcessTrackerPrivate; ProcessTracker(); virtual ~ProcessTracker(); void registerProcessor(const PTProcessor &P); bool processAlreadyCompleted(const CLParams &CLP); void reportProcessCompleted(const CLParams &CLP); int processorCount(); PTProcessor processor(int i); PTProcessor findProcessor(const QString &command); private: ProcessTrackerPrivate *d; }; #endif // PROCESSTRACKER_H
[ "magland@jm02.scdanet.org" ]
magland@jm02.scdanet.org
3713f996266c86cf02f39dc5f58fe418b69e2bb8
bc997f47b4cffef395f0ce85d72f113ceb1466e6
/JOI/camp23_passport.cpp
ba4837e8741407fc10025e1ada234cda5c475f0c
[ "LicenseRef-scancode-public-domain" ]
permissive
koosaga/olympiad
1f069dd480004c9df033b73d87004b765d77d622
fcb87b58dc8b5715b3ae2fac788bd1b7cac9bffe
refs/heads/master
2023-09-01T07:37:45.168803
2023-08-31T14:18:03
2023-08-31T14:18:03
45,691,895
246
49
null
2020-10-20T16:52:45
2015-11-06T16:01:57
C++
UTF-8
C++
false
false
2,468
cpp
#include <bits/stdc++.h> using namespace std; using lint = long long; using pi = array<int, 2>; #define sz(a) ((int)(a).size()) #define all(a) (a).begin(), (a).end() const int MAXT = 530000; struct passport { int l, r, idx; }; struct seg { pi tree[MAXT]; int lim; void init(int n, vector<passport> &a) { for (lim = 1; lim <= n; lim <<= 1) ; fill(tree, tree + MAXT, pi{int(-1e9), -1}); for (int i = 0; i < n; i++) { tree[i + lim] = {a[i].r, i}; } for (int i = lim - 1; i > 0; i--) { tree[i] = max(tree[2 * i], tree[2 * i + 1]); } } pi query(int s, int e) { s += lim; e += lim; pi ret{int(-1e9), -1}; while (s < e) { if (s % 2 == 1) ret = max(ret, tree[s++]); if (e % 2 == 0) ret = max(ret, tree[e--]); s >>= 1; e >>= 1; } if (s == e) ret = max(ret, tree[s]); return ret; } void remove(int p) { p += lim; tree[p] = pi{int(-1e9), -1}; while (p > 1) { p >>= 1; tree[p] = max(tree[2 * p], tree[2 * p + 1]); } } } seg; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; vector<passport> a(n); for (int i = 0; i < n; i++) { cin >> a[i].l >> a[i].r; a[i].idx = i; a[i].l--; a[i].r--; } auto dijkstra = [&](vector<int> dp) { seg.init(n, a); priority_queue<pi, vector<pi>, greater<pi>> pq; vector<int> cnt(n); for (int i = 0; i < n; i++) { pq.push({dp[i], i}); cnt[a[i].l]++; } for (int i = 1; i < n; i++) cnt[i] += cnt[i - 1]; while (sz(pq)) { auto [d, v] = pq.top(); pq.pop(); if (dp[v] != d) continue; while (true) { auto z = seg.query(0, cnt[v] - 1); int nvtx = a[z[1]].idx; if (z[0] >= v) { if (dp[nvtx] > d + 1) { dp[nvtx] = d + 1; pq.push({dp[nvtx], nvtx}); } } else break; seg.remove(z[1]); } } return dp; }; vector<int> toLeft(n), toRight(n); for (int i = 0; i < n; i++) { toLeft[i] = 1e9; if (a[i].l == 0) toLeft[i] = 0; } for (int i = n - 1; i >= 0; i--) { toRight[i] = 1e9; if (a[i].r == n - 1) toRight[i] = 0; } sort(all(a), [&](const passport &a, const passport &b) { return a.l < b.l; }); toLeft = dijkstra(toLeft); toRight = dijkstra(toRight); vector<int> dp(n, 1e9); for (int i = 0; i < n; i++) { int z = toLeft[i] + toRight[i]; dp[i] = z; } dp = dijkstra(dp); int q; cin >> q; while (q--) { int z; cin >> z; z--; if (dp[z] > 1e8) cout << "-1\n"; else cout << dp[z] + 1 << "\n"; } }
[ "koosaga@gmail.com" ]
koosaga@gmail.com
637ebcb67f8495e34526443c71cfb634caa9e8b4
52311878ec5b0cda1a54326e1cc0feff8dda1b17
/name.cpp
1de06bf74eb2c51263fea68d47d31f078bfb097c
[]
no_license
Miproyq/C-
257c290fb9e6985e489f25afd2d71fe19bfba2a7
95d096213bf13b733a33b4c5251732472749d513
refs/heads/master
2021-09-01T05:37:47.911007
2017-12-25T05:14:00
2017-12-25T05:14:00
115,240,088
0
0
null
null
null
null
UTF-8
C++
false
false
308
cpp
#include <iostream> #include <string.h> #include <cstdio> using namespace std; int main(){ char firstName[10]; char lastName[10]; cout<<"First Name:"; cin.getline(firstName,10); cout<<"Last Name:"; cin.getline(lastName,10); cout<<"Hi "<<firstName<<lastName<<"."; cin.get(); cin.get(); return 0; }
[ "iyanqin.liu@gmail.com" ]
iyanqin.liu@gmail.com
b6841060c2ceb176ed3b4fabfdd1fea14b37c583
f4bd16c7dcb7672c00e31c78d9216e7f3112fd6d
/hackerblocks/findunique.cpp
43e4be2495c487c6efaee0e304fbba458404c442
[]
no_license
namangoyal10/Android_handsOn
1d3528e9b1c0788502ed577fce665ff65a0578e3
ab628b9408a30420c776d4e3b98fa1aafe60df97
refs/heads/master
2020-07-23T06:10:47.298328
2019-09-11T17:58:14
2019-09-11T17:58:14
207,468,454
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
#include<iostream> using namespace std; int main(){ int n; cin>>n; int arr[n]; for(int i=0;i<n;i++){ cin>>arr[i]; } int x=0; for(int i=0;i<n;i++){ int temp=x; x=x^arr[i]; if(temp==x) cout<<x<<endl; } cout<<x; } //7 //1 3 4 3 2 1 4
[ "namangoyal105@gmail.com" ]
namangoyal105@gmail.com
cc63a443504826eb108bda07f01b391ed8304bbd
4e62733f42024b74809fe79d8e08110a5f001ec8
/SECONDO ANNO/II SEMESTRE/Calcolatori elettronici/Esami passati/Assembly/2018-07-04_22/cc.h
76af9b7e088d74c03d635ac6571c6f34ca79a75f
[]
no_license
Guray00/IngegneriaInformatica
f8f56a310ac7585f105cbf1635240df2d7a43095
752ac634bb7f03556fd8587bf5f5a295843a76b9
refs/heads/master
2023-08-31T12:23:44.354698
2023-08-28T15:19:22
2023-08-28T15:19:22
234,406,145
233
80
null
2023-07-04T14:02:14
2020-01-16T20:31:24
C++
UTF-8
C++
false
false
389
h
#include <iostream> using namespace std; struct st1 { char vi[4]; }; class cl { char v1[4]; char v2[4]; long v3[4]; public: cl(st1 ss); cl elab1(char ar1[], st1 s2); void stampa() { char i; for (i=0;i<4;i++) cout << (int)v1[i] << ' '; cout << endl; for (i=0;i<4;i++) cout << (int)v2[i] << ' '; cout << endl; for (i=0;i<4;i++) cout << v3[i] << ' '; cout << endl << endl; } };
[ "g.loni1@studenti.unipi.it" ]
g.loni1@studenti.unipi.it
b9d5de835d8ae18da4424c61e87b021d72e82a97
1003b415e50030887aaefd3d01f914ebec6cf69d
/src/currentia/query/cpl-parse.h
0acd60f12697e2b88b2bf3a19170b64073339474
[]
no_license
mooz/currentia
dd61872a53b51c9902fa08b601ed1b24af669891
5d52dcfc441340f149b591a377cb7be5d91d2b69
refs/heads/master
2016-09-06T17:52:54.737166
2014-11-20T14:06:16
2014-11-20T14:06:16
26,914,125
1
0
null
null
null
null
UTF-8
C++
false
false
1,661
h
// -*- c++ -*- #ifndef CURRENTIA_QUERY_CPL_PARSE_H_ #define CURRENTIA_QUERY_CPL_PARSE_H_ #include "currentia/query/cpl.h" #include "currentia/query/cpl-parser.c" namespace currentia { // TODO: This method should create `Stream` instances into // SchemaManager, not into CPLQueryContainer (current // implementation). CPLQueryContainer::ptr_t parse_cpl(CPLLexer* lexer) { lemon::yyParser* yy_parser = reinterpret_cast<lemon::yyParser*>(lemon::CPLParseAlloc(malloc)); CPLQueryContainer* query_container = new CPLQueryContainer(); int token; while ((token = lexer->get_next_token()) != CPLLexer::TOKEN_EOS) { lemon::CPLParse( yy_parser, token, new std::string(lexer->get_token_text()), query_container ); if (query_container->state == CPLQueryContainer::ERROR) { std::cerr << "Parse error at line " << lexer->get_current_line_number() << " near token '" << lexer->get_token_text() << "' (" << CPLLexer::token_to_string(token) << ")" << std::endl; break; } } if (query_container->state == CPLQueryContainer::NEUTRAL) lemon::CPLParse(yy_parser, CPLLexer::TOKEN_EOS, NULL, query_container); lemon::CPLParseFree(yy_parser, free); return CPLQueryContainer::ptr_t(query_container); } CPLQueryContainer::ptr_t parse_cpl(std::istream* ifs_ptr) { CPLLexer lexer(ifs_ptr); return parse_cpl(&lexer); } }; #endif /* ! CURRENTIA_QUERY_CPL_PARSE_H_ */
[ "stillpedant@gmail.com" ]
stillpedant@gmail.com
d08a4163ceb9709dc178223ca1516b5f90d515f8
e2230714ab6050a8ee18318aee5d6392bdd0bcab
/Source/WindowsUnified/Catrobat.8.1/Catrobat/Catrobat.Player/Catrobat.Player.Shared/CatrobatTexture.cpp
a06b75935a68ea4c82cbb7856b20b4f8e8ae9c25
[]
no_license
davpro90/CatrobatForWindows
e858d5a377df268679086928b1ad67be7f243421
edaedbb0302131daca6ac32f21061325fb4c4d7c
refs/heads/master
2020-04-06T06:45:27.487468
2016-05-13T14:42:13
2016-05-13T14:42:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
483
cpp
#include "pch.h" #include "CatrobatTexture.h" using namespace std; using namespace Microsoft::WRL; CatrobatTexture::CatrobatTexture(vector < vector<int> > alphaMap, ComPtr<ID2D1Bitmap> bitmap) : m_bitmap(move(bitmap)), m_alphaMap(alphaMap) { } CatrobatTexture::~CatrobatTexture() { m_bitmap.Reset(); } ComPtr<ID2D1Bitmap> CatrobatTexture::GetBitmap() { return m_bitmap; } vector < vector<int> > CatrobatTexture::GetAlphaMap() { return m_alphaMap; }
[ "CATROBAT\\hannes.hasenauer" ]
CATROBAT\hannes.hasenauer
37b977751a1d23ed6b317b8b191e2230addc126b
0b2d01f1c418aa2ef284ddd27b1397f0f2b4d1be
/zombie outbreak simulation v2.cpp
0dd4f5c029c8aa147c203dcad46956e8934bbb1a
[]
no_license
AdrianJCross/Zombie_simulation
346f438e726cdc3b7fb6169d0ac541227a7f4007
abef519c9918e642130000ef3e28e436c7fe8df4
refs/heads/master
2020-09-19T17:23:10.771740
2019-11-26T17:51:38
2019-11-26T17:51:38
224,252,234
0
0
null
null
null
null
UTF-8
C++
false
false
14,275
cpp
//NOT THE FINAL VERSION!!!!!! //Adrian Cross //year 3 intro to C++ project //zombie outbreak simulation v2 //This code simulates a zombie outbreak //this code has been written in quincy #include <iostream> #include <string> #include <algorithm> #include <vector> #include <windows.h> using namespace std; //global enum character {human, zombie, infected, dead}; //character class which contains the information for each character in the simulation (entity, zombie etc.) class entity { private: character state; bool checked; //temporary state to determine if the character has moved that turn int skill; //skill level of character int speed; //speed of character int x; int y; int turnsinfected; public: // Constructor, with defaults entity(character statein=dead, bool checkedin=false,int skillin=0, int speedin=0, int xin=0, int yin=0, int turnsinfectedin=0); // access functions character getstate(); bool getchecked(); int getskill(); int getspeed(); int getx(); int gety(); int getturnsinfected(); // member functions void charactergen(character, int, int, vector<entity>&); void characterchange(int, int, character); void checkedreset(); void turntozombie(int); void bordercheck(int,int, bool&, bool&, bool&, bool&); int action(vector<entity>&, character&, bool&, bool&, bool&, bool&, int); void simulateattack(vector<entity>&, int, int); void skillincrease(int); void adjacentcheck(bool&, bool&,bool&, bool&, vector<entity>&, int); void action(vector<entity>&, int, int, int); int directionreturn(bool, bool,bool, bool); void movement(int); void counter (int&, int&, int&, int&); }; //blank check cycles through the vector to check if anything occupies that point bool blankcheck(int x, int y, vector<entity> id){ for (int i=0; i<id.size(); i++){ if (id[i].getx()==x && id[i].gety()==y){ return false; } } return true; } //input initial into the class entity::entity(character statein, bool checkedin, int skillin, int speedin, int xin, int yin, int turnsinfectedin){ state=statein; checked=checkedin; skill=skillin; speed=speedin; x=xin; y=yin; turnsinfected=turnsinfectedin; } //access functions character entity::getstate() {return state;} bool entity::getchecked() {return checked;} int entity::getskill() {return skill;} int entity::getspeed() {return speed;} int entity::getx() {return x;} int entity::gety() {return y;} int entity::getturnsinfected() {return turnsinfected;} //member functions //Character gen function checks if a coordinate is empty and will run character change function if it is void entity::charactergen(character state, int gridsizex, int gridsizey,vector<entity>& id){ int w=0; while (w==0){ int xdummy=rand() % gridsizex; int ydummy=rand() % gridsizey; switch (blankcheck(xdummy, ydummy, id)){ case true: characterchange(xdummy, ydummy, state); return; break; case false: break; default: cout<<"error in characterchange function"<<endl; } } } //character change function will generate a character at an inputted coordinate and is used for when a human turns into a zombie etc. void entity::characterchange(int i, int j, character a){ state=a; x=i; y=j; switch (a){ case human: checked=true; skill=(rand() % 50)+1;//creates random number from 1 to 70 speed=1; break; case zombie: checked=true; speed=1; break; case infected: checked=true; speed=1; break; default: cout<<"error in characterchange function"<<endl; } } //resets the temporary grid but leaves dead true so that they no longer move void entity::checkedreset(){ if (state==dead){ checked=true; } else checked=false; } //turn infected into zombie void entity::turntozombie(int incubation){ if (state!=infected){ return; }else{ if (turnsinfected>=incubation-1){ characterchange(x, y, zombie); return; }else{ turnsinfected++; return; } } } //increases the skill of a character void entity::skillincrease(int skillrate){ if (skill+skillrate>=100){ skill=99;//skill is 99 so there is always a chance of being infected } else skill=skill+skillrate; } //will simulate the attack void entity::simulateattack(vector<entity>& id, int i, int skillrate){ int a=((rand() % 100)+1); //random number from 1-100 if (checked==true){//checks to see if the zombie has attacked already return; } if (a==id[i].skill){//both human and zombie die state=dead; id[i].state=dead; }else if (id[i].skill>a+10){//just zombie dies, skill of human increases state=dead; id[i].skillincrease(skillrate); }else if (id[i].skill<=a+10 && id[i].skill>=a-5){//zombie dies, human infected state=dead; id[i].state=infected; id[i].skillincrease(skillrate); }else if (id[i].skill<a-5 && id[i].skill>a-40){//human is infected, zombie lives id[i].state=infected; id[i].skillincrease(skillrate); }else if (id[i].skill<=a-40){//human dies, zombie lives id[i].state=dead; } else cout<<"error in simulateattack function"; } //sets directions to false if they are on a border void entity::bordercheck(int gridsizex,int gridsizey,bool &up, bool &right, bool &down, bool &left){ //checks the spaces around the character for sides if (y==0){ up=false; } if (x==0){ left=false; } if (x==gridsizex-1){ right=false; } if (y==gridsizey-1){ down=false; } } //checks adjacent spaces and will change directions accordingly void entity::adjacentcheck(bool &up, bool &right,bool &down, bool &left, vector<entity>& id, int skillrate){ for (int i=0; i<id.size(); i++){ int xdiff=x-id[i].x, ydiff=y-id[i].y; switch (state){ case zombie: if (xdiff<2 && xdiff>-2 && ydiff<2 && ydiff>-2 && id[i].state==human){//does a simulated attack if within 1 unit radius simulateattack(id, i, skillrate); checked=true; id[i].checked=true; return;//ends the loop if an attack has been simulated } break; case human:; break; } } for (int i=0; i<id.size(); i++){//needs to run as two different for loops as all positions need to be checked for attack first then the movement needs to be checked int xdiff=x-id[i].x, ydiff=y-id[i].y;//will run adjacent character check if an attack hasn't taken place if (xdiff==0 && ydiff==1){ up=false; } if (xdiff==-1 && ydiff==0){ right=false; } if (xdiff==0 && ydiff==-1){ down=false; } if (xdiff==1 && ydiff==0){ left=false; } } } // will return a random number based on the possible directions which can be moved to int entity::directionreturn(bool up, bool right,bool down, bool left){ if (up==true and right==true and down==true and left==true) { return ((rand() % 4)+1); }else if (up==false and right==false and down==false and left==false){ return 0; }else if (up==true and right==false and down==false and left==false){ return 1; }else if (up==false and right==true and down==false and left==false){ return 2; }else if (up==false and right==false and down==true and left==false){ return 3; }else if (up==false and right==false and down==false and left==true){ return 4; }else if (up==true and right==true and down==false and left==false) { return (rand() % 2)+1; }else if (up==true and right==false and down==true and left==false) { int a=(rand() % 2)+1; if (a==2){ return 3; }else return a; }else if (up==true and right==false and down==false and left==true) { int a=(rand() % 2)+1; if (a==2){ return 4; }else return a; }else if (up==false and right==true and down==true and left==false) { return (rand() % 2)+2; }else if (up==false and right==true and down==false and left==true) { int a=(rand() % 2)+1; if (a==1){ return 4; }else return a; }else if (up==false and right==false and down==true and left==true) { return (rand() % 2)+3; }else if (up==true and right==true and down==true and left==false) { return (rand() % 3)+1; }else if (up==false and right==true and down==true and left==true) { return (rand() % 3)+2; }else if (up==true and right==true and down==false and left==true) { int a=(rand() % 3)+1; if (a==3){ return 4; }else return a; }else if (up==true and right==false and down==true and left==true) { int a=(rand() % 3)+2; if (a==2){ return 1; }else return a; } else cout<<"error in direction return function"; } //will run through functions and will act depending on what surrounds the entity and what entity it is, // either returning 0 if an attack has taken place or 1,2,3,4 indicating a direction void entity::action(vector<entity>& id, int skillrate, int gridsizex, int gridsizey){ bool up=true, right=true, down=true, left=true; adjacentcheck(up, right, down, left, id, skillrate); if (checked==true){ return; //will end if this entity has already been checked (i.e. if an attack has taken place) } bordercheck(gridsizex,gridsizey,up,right,down,left); int a= directionreturn(up, right, down, left); movement(a); return; } //physically moves the entity depending on input void entity:: movement(int a){ checked=true; switch(a){ case 0: return; break; case 1://up y--; return; break; case 2://right x++; return; break; case 3://down y++; return; break; case 4://left x--; return; break; default: cout<<"error in movement function"<<endl; } } void entity::counter(int &hno, int &zno, int &Ino, int &dno){ switch(state){ case human: hno++; break; case zombie: zno++; break; case infected: Ino++; break; case dead: dno++; } } //normal functions-------------------------------------------------------------------------------------------------------------------------- //character gen loop loops the vector values and generates a character in each one void charactergenloop(int initialhno,int initialzno, vector<entity>& id, int gridsizex, int gridsizey){ for (int i=0; i<initialhno; i++){ id[i].charactergen(human, gridsizex, gridsizey, id); } for (int i=initialhno; i<initialhno+initialzno; i++){ id[i].charactergen(zombie, gridsizex, gridsizey, id); } } //entity display function will loop through the id vector until it finds the entity with the correct coords and then displays it void displayentity(vector<entity> id, int x, int y){ for (int i=0; i<id.size(); i++){ if(id[i].getx()==x && id[i].gety()==y){ switch(id[i].getstate()){ case human: cout<<"H"; return; case zombie: cout<<"Z"; return; case infected: cout<<"I"; return; case dead: cout<<" "; return; default: cout<<"error in displayentity function"; } } } } //grid display function will cycle through coordinates displaying a gap until it reaches an entity at which point the entity display function will show it void displaygrid(int gridsizex, int gridsizey, vector<entity> id){ for (int j=0; j<=gridsizey-1; j++){ for (int i=0; i<=gridsizex-1; i++){ switch(blankcheck(i, j, id)){ case true: cout<<" "; break; case false: displayentity(id,i, j); break; default: cout<<"error in displaygrid function"; } } cout<<endl; } } //will return the victor (if there isn't one will return dead) character endgame(int &hno, int &zno, int &Ino, int &dno){ if (hno!=0 and zno!=0 or Ino!=0){ //ends the loop (means all coords don't need to be checked) return dead; }else if (hno==0){//all humans dead return zombie; }else if (zno==0){ return human; } } //start of main ---------------------------------------------------------------------------------------------- int main(){ srand(time(0)); //Inputs int timedelay, skillrate, hno, zno, initialhno, initialzno,gridsizex, incubation, gridsizey; cout<<"starting number of humans: "; cin>>initialhno; cout<<"starting number of zombies: "; cin>>initialzno; cout<<"Time delay between movement: "; cin>>timedelay; cout<<"human skill increase rate: "; cin>>skillrate; cout<<"grid size in x direction: "; cin>>gridsizex; cout<<"grid size in y direction: "; cin>>gridsizey; cout<<"Incubation period: "; cin>>incubation; hno=initialhno; zno=initialzno; int Ino=0; //put this as a starting condition int dno=0; if (initialhno+initialzno>gridsizex*gridsizey) {cout<<"number of entities is too large for the grid!"; return 0; } vector<entity> id(initialhno+initialzno); charactergenloop(initialhno,initialzno, id,gridsizex,gridsizey); //main loop for the program for (int t=0; t<1; t){ displaygrid(gridsizex, gridsizey, id); Sleep(timedelay);//delays screen by time in brackets in milliseconds system("cls"); random_shuffle (id.begin(), id.end()); //randomly shuffles the i values for each person which allows the attacks to be randomised hno=0; zno=0; Ino=0; dno=0; for (int i=0; i<id.size(); i++){ //loop to run the movement and interaction of entities id[i].checkedreset(); id[i].counter(hno, zno, Ino, dno); if (id[i].getchecked()==false){ id[i].action(id,skillrate, gridsizex, gridsizey); id[i].turntozombie(incubation); } } switch (endgame(hno, zno, Ino, dno)){ case zombie: cout<<"all "<<initialhno<<" human(s) were killed or turned by " << initialzno<<" zombie(s) with "<<zno<<" zombie(s) left in ";//put in timer t=1; break; case human: cout<<"all "<<initialzno<<" starting zombie(s) were killed by " << initialhno<<" human(s) with "<<hno<<" human(s) left"; t=1; break; case dead:; } } return 0; }
[ "across@localhost.localdomain" ]
across@localhost.localdomain
362f43e0e69961730b14ce91bbe374e4357bbcbd
1bc9797c7f34ebdb4c91de1778292b84ba677813
/test/compiler/ssa.cpp
949699e3a5b4b09c33690d480d6b8632c7c8cb8c
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
synecdoche/basil
8efade7d95b64f67e0d74cb5b25954411224bce0
575b4590d45144f80d74ddc0bfc133cad4b7c04d
refs/heads/master
2023-09-04T04:07:40.508207
2021-11-07T19:16:01
2021-11-07T19:16:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,980
cpp
/* * Copyright (c) 2021, the Basil authors * All rights reserved. * * This source code is licensed under the 3-Clause BSD License, the full text * of which can be found in the LICENSE file in the root directory * of this project. */ #include "test.h" #include "ssa.h" #include "driver.h" using namespace basil; SETUP { init(); get_perf_info().set_max_count(1); // compile everything } TEST(simple_increment) { rc<IRFunction> inc = compile(R"( do: def inc x? = x + 1 inc 1 )", load_step, lex_step, parse_step, eval_step, ast_step, ssa_step)[symbol_from("inc")]; ASSERT_EQUAL(inc->blocks.size(), 2); // should have entry + exit } TEST(multiple_assignments) { rc<IRFunction> main = compile(R"( do: def x = 0 x = 1 x = 2 x = x + 1 + x )", load_step, lex_step, parse_step, eval_step, ast_step, ssa_step)[symbol_from("#main")]; auto i1 = main->entry->insns[0], i2 = main->entry->insns[1]; // the first and second assignments to x should be identical ASSERT_TRUE(i1->dest); ASSERT_TRUE(i2->dest); ASSERT_TRUE(i1->dest->kind == IK_VAR); ASSERT_TRUE(i2->dest->kind == IK_VAR); ASSERT_EQUAL(i1->dest->data.var, i2->dest->data.var); enforce_ssa(main); // println(""); // println(main); // after enforcing ssa, the two assignments to x should have different ids ASSERT_NOT_EQUAL(i1->dest->data.var, i2->dest->data.var); } TEST(simple_phi) { rc<IRFunction> main = compile(R"( do: def x = 0 def y = 0 x = 1 if x == 1 then x = 2 else x = 3 y = x + 1 )", load_step, lex_step, parse_step, eval_step, ast_step, ssa_step)[symbol_from("#main")]; enforce_ssa(main); } TEST(simple_loop) { rc<IRFunction> main = compile(R"( do: def x = 0 x = 1 while x < 10 do: x = x + 1 def y = x )", load_step, lex_step, parse_step, eval_step, ast_step, ssa_step)[symbol_from("#main")]; enforce_ssa(main); println(main); }
[ "9532786+elucent@users.noreply.github.com" ]
9532786+elucent@users.noreply.github.com
41b64236782c0bbf4bec1974b1dfc4184fc74bd9
01a42b69633daf62a2eb3bb70c5b1b6e2639aa5f
/SCUM_Zombie_Sweater_03_classes.hpp
1dc604b1d29975c53d915de15056c88a7e8bf306
[]
no_license
Kehczar/scum_sdk
45db80e46dac736cc7370912ed671fa77fcb95cf
8d1770b44321a9d0b277e4029551f39b11f15111
refs/heads/master
2022-07-25T10:06:20.892750
2020-05-21T11:45:36
2020-05-21T11:45:36
265,826,541
1
0
null
null
null
null
UTF-8
C++
false
false
811
hpp
#pragma once // Scum 3.79.22573 (UE 4.24) #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace Classes { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass Zombie_Sweater_03.Zombie_Sweater_03_C // 0x0000 (0x0730 - 0x0730) class AZombie_Sweater_03_C : public AClothesItem { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass Zombie_Sweater_03.Zombie_Sweater_03_C"); return ptr; } void UpdateMaterialParamsOnClients(); void SetDirtiness(float* dirtiness); void OnRep_MaterialParameters(); int GetWarmth(); int GetCapacityY(); int GetCapacityX(); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "65712402+Kehczar@users.noreply.github.com" ]
65712402+Kehczar@users.noreply.github.com
242d268a092b5651deb60fc155b831b91cd7302d
a06515f4697a3dbcbae4e3c05de2f8632f8d5f46
/corpus/taken_from_cppcheck_tests/stolen_1205.cpp
3f8c54df671eddff5ed8220426dddb8dff4879f5
[]
no_license
pauldreik/fuzzcppcheck
12d9c11bcc182cc1f1bb4893e0925dc05fcaf711
794ba352af45971ff1f76d665b52adeb42dcab5f
refs/heads/master
2020-05-01T01:55:04.280076
2019-03-22T21:05:28
2019-03-22T21:05:28
177,206,313
0
0
null
null
null
null
UTF-8
C++
false
false
67
cpp
struct s { int** v; void f() { v = 0; } };
[ "github@pauldreik.se" ]
github@pauldreik.se
a378de4d269d4ec809a27c38e7cd0e442135a267
5ade673a92c32440f95e75c57daf9611ac15c6d1
/algo_for_mg/5_17/tempCodeRunnerFile.cpp
9bd0dbd31a8a0647f624bb283fb69dd4a8c92972
[]
no_license
jin1xiao3long2/2020_02_Cpp
89511faad07b410d46785730b6e0f40728296c9b
128752ad0c2c75e3b6c2e41eb6b0f70630ab89b0
refs/heads/master
2023-01-02T14:46:57.637405
2020-10-31T06:03:55
2020-10-31T06:03:55
245,803,787
0
0
null
null
null
null
UTF-8
C++
false
false
1,941
cpp
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #include<queue> #include<stack> #include<map> #include<sstream> using namespace std; typedef long long ll; const int maxn = 2e3 + 10; const int INF = 1 << 30; int dir[4][2] = {1,0,0,1,-1,0,0,-1}; int T, n, m, x; int Map[maxn][maxn];//存图 int lowcost[maxn], mst[maxn]; void prim(int u)//最小生成树起点 { int sum_mst = 0;//最小生成树权值 for(int i = 1; i <= n; i++)//初始化两个数组 { lowcost[i] = Map[u][i]; mst[i] = u; } mst[u] = -1;//设置成-1表示已经加入mst for(int i = 1; i < n; i++)//此处只需要迭代n-1次即可 { int minn = INF; int v = -1; //在lowcost数组中寻找未加入mst的最小值 for(int j = 1; j <= n; j++) { if(mst[j] != -1 && lowcost[j] < minn) { v = j; minn = lowcost[j]; } } if(v != -1)//v=-1表示未找到最小的边, {//v表示当前距离mst最短的点 mst[v] = -1; sum_mst += lowcost[v]; for(int j = 1; j <= n; j++)//更新最短边 { if(mst[j] != -1 && lowcost[j] > Map[v][j]) { lowcost[j] = Map[v][j]; mst[j] = v; } } } } printf("%d", sum_mst); } int main() { cin >> n >> m; memset(Map, 0, sizeof(Map)); for(int i = 1; i <= m; i++) { int u, v, w; cin >> u >> v >> w; Map[u][v] = Map[v][u] = w; } for(int i = 1; i <= n; i++) { for(int j = 1; j <= n; j++) { if(i == j)Map[i][j] = 0; else if(!Map[i][j])Map[i][j] = INF; } } prim(1); return 0; }
[ "157027148@qq.com" ]
157027148@qq.com
05af22913e9d019ff4c4e74f00530126d035da12
069d4d60ed3bded70ad32e8b19371c453efb6655
/src/ppl/nn/engines/x86/kernels/onnx/range_kernel.h
a1075fc7b77676587027689edebc65bbcfabcce8
[ "Apache-2.0" ]
permissive
openppl-public/ppl.nn
5f3e4f0c1a10bd2ba267fdc27ff533fb9074f1ed
99a2fdf6e4879862da5cac0167af5ea968eaf039
refs/heads/master
2023-08-17T07:31:50.494617
2023-08-16T11:24:54
2023-08-16T15:05:11
381,712,622
1,143
224
Apache-2.0
2023-09-08T16:33:08
2021-06-30T13:32:17
C++
UTF-8
C++
false
false
1,242
h
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. #ifndef _ST_HPC_PPL_NN_ENGINES_X86_KERNELS_ONNX_RANGE_KERNEL_H_ #define _ST_HPC_PPL_NN_ENGINES_X86_KERNELS_ONNX_RANGE_KERNEL_H_ #include "ppl/nn/engines/x86/kernel.h" namespace ppl { namespace nn { namespace x86 { class RangeKernel : public X86Kernel { public: RangeKernel(const ir::Node* node) : X86Kernel(node) {} private: ppl::common::RetCode DoExecute(KernelExecContext*) override; }; }}} // namespace ppl::nn::x86 #endif
[ "openppl.ai@hotmail.com" ]
openppl.ai@hotmail.com
4160417626052386e2f90ea07034964136bb87da
829b3f2d0ae685d01fe097c03bf5c1976cbc4723
/deps/boost/include/boost/accumulators/statistics/extended_p_square.hpp
1b43539a59b88823f596c120a2955dc344ca780e
[ "Apache-2.0" ]
permissive
liyoung1992/mediasoup-sfu-cpp
f0f0321f8974beb1f4263c9e658402620d82385f
b76564e068626b0d675f5486e56da3d69151e287
refs/heads/main
2023-08-21T21:40:51.710022
2021-10-14T06:29:18
2021-10-14T06:29:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,942
hpp
/////////////////////////////////////////////////////////////////////////////// // extended_p_square.hpp // // Copyright 2005 Daniel Egloff. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_ACCUMULATORS_STATISTICS_EXTENDED_SINGLE_HPP_DE_01_01_2006 #define BOOST_ACCUMULATORS_STATISTICS_EXTENDED_SINGLE_HPP_DE_01_01_2006 #include <vector> #include <functional> #include <boost/range/begin.hpp> #include <boost/range/end.hpp> #include <boost/range/iterator_range.hpp> #include <boost/iterator/transform_iterator.hpp> #include <boost/iterator/counting_iterator.hpp> #include <boost/iterator/permutation_iterator.hpp> #include <boost/parameter/keyword.hpp> #include <boost/mpl/placeholders.hpp> #include <boost/accumulators/accumulators_fwd.hpp> #include <boost/accumulators/framework/extractor.hpp> #include <boost/accumulators/numeric/functional.hpp> #include <boost/accumulators/framework/parameters/sample.hpp> #include <boost/accumulators/framework/depends_on.hpp> #include <boost/accumulators/statistics_fwd.hpp> #include <boost/accumulators/statistics/count.hpp> #include <boost/accumulators/statistics/times2_iterator.hpp> #include <boost/serialization/vector.hpp> namespace boost { namespace accumulators { /////////////////////////////////////////////////////////////////////////////// // probabilities named parameter // BOOST_PARAMETER_NESTED_KEYWORD(tag, extended_p_square_probabilities, probabilities) BOOST_ACCUMULATORS_IGNORE_GLOBAL(extended_p_square_probabilities) namespace impl { /////////////////////////////////////////////////////////////////////////////// // extended_p_square_impl // multiple quantile estimation /** @brief Multiple quantile estimation with the extended \f$P^2\f$ algorithm Extended \f$P^2\f$ algorithm for estimation of several quantiles without storing samples. Assume that \f$m\f$ quantiles \f$\xi_{p_1}, \ldots, \xi_{p_m}\f$ are to be estimated. Instead of storing the whole sample cumulative distribution, the algorithm maintains only \f$m+2\f$ principal markers and \f$m+1\f$ middle markers, whose positions are updated with each sample and whose heights are adjusted (if necessary) using a piecewise-parablic formula. The heights of these central markers are the current estimates of the quantiles and returned as an iterator range. For further details, see K. E. E. Raatikainen, Simultaneous estimation of several quantiles, Simulation, Volume 49, Number 4 (October), 1986, p. 159-164. The extended \f$ P^2 \f$ algorithm generalizes the \f$ P^2 \f$ algorithm of R. Jain and I. Chlamtac, The P^2 algorithm for dynamic calculation of quantiles and histograms without storing observations, Communications of the ACM, Volume 28 (October), Number 10, 1985, p. 1076-1085. @param extended_p_square_probabilities A vector of quantile probabilities. */ template<typename Sample> struct extended_p_square_impl : accumulator_base { typedef typename numeric::functional::fdiv<Sample, std::size_t>::result_type float_type; typedef std::vector<float_type> array_type; // for boost::result_of typedef iterator_range< detail::lvalue_index_iterator< permutation_iterator< typename array_type::const_iterator , detail::times2_iterator > > > result_type; template<typename Args> extended_p_square_impl(Args const &args) : probabilities( boost::begin(args[extended_p_square_probabilities]) , boost::end(args[extended_p_square_probabilities]) ) , heights(2 * probabilities.size() + 3) , actual_positions(heights.size()) , desired_positions(heights.size()) , positions_increments(heights.size()) { std::size_t num_quantiles = this->probabilities.size(); std::size_t num_markers = this->heights.size(); for(std::size_t i = 0; i < num_markers; ++i) { this->actual_positions[i] = i + 1; } this->positions_increments[0] = 0.; this->positions_increments[num_markers - 1] = 1.; for(std::size_t i = 0; i < num_quantiles; ++i) { this->positions_increments[2 * i + 2] = probabilities[i]; } for(std::size_t i = 0; i <= num_quantiles; ++i) { this->positions_increments[2 * i + 1] = 0.5 * (this->positions_increments[2 * i] + this->positions_increments[2 * i + 2]); } for(std::size_t i = 0; i < num_markers; ++i) { this->desired_positions[i] = 1. + 2. * (num_quantiles + 1.) * this->positions_increments[i]; } } template<typename Args> void operator ()(Args const &args) { std::size_t cnt = count(args); // m+2 principal markers and m+1 middle markers std::size_t num_markers = 2 * this->probabilities.size() + 3; // first accumulate num_markers samples if(cnt <= num_markers) { this->heights[cnt - 1] = args[sample]; // complete the initialization of heights by sorting if(cnt == num_markers) { std::sort(this->heights.begin(), this->heights.end()); } } else { std::size_t sample_cell = 1; // find cell k = sample_cell such that heights[k-1] <= sample < heights[k] if(args[sample] < this->heights[0]) { this->heights[0] = args[sample]; sample_cell = 1; } else if(args[sample] >= this->heights[num_markers - 1]) { this->heights[num_markers - 1] = args[sample]; sample_cell = num_markers - 1; } else { typedef typename array_type::iterator iterator; iterator it = std::upper_bound( this->heights.begin() , this->heights.end() , args[sample] ); sample_cell = std::distance(this->heights.begin(), it); } // update actual positions of all markers above sample_cell index for(std::size_t i = sample_cell; i < num_markers; ++i) { ++this->actual_positions[i]; } // update desired positions of all markers for(std::size_t i = 0; i < num_markers; ++i) { this->desired_positions[i] += this->positions_increments[i]; } // adjust heights and actual positions of markers 1 to num_markers-2 if necessary for(std::size_t i = 1; i <= num_markers - 2; ++i) { // offset to desired position float_type d = this->desired_positions[i] - this->actual_positions[i]; // offset to next position float_type dp = this->actual_positions[i+1] - this->actual_positions[i]; // offset to previous position float_type dm = this->actual_positions[i-1] - this->actual_positions[i]; // height ds float_type hp = (this->heights[i+1] - this->heights[i]) / dp; float_type hm = (this->heights[i-1] - this->heights[i]) / dm; if((d >= 1 && dp > 1) || (d <= -1 && dm < -1)) { short sign_d = static_cast<short>(d / std::abs(d)); float_type h = this->heights[i] + sign_d / (dp - dm) * ((sign_d - dm)*hp + (dp - sign_d) * hm); // try adjusting heights[i] using p-squared formula if(this->heights[i - 1] < h && h < this->heights[i + 1]) { this->heights[i] = h; } else { // use linear formula if(d > 0) { this->heights[i] += hp; } if(d < 0) { this->heights[i] -= hm; } } this->actual_positions[i] += sign_d; } } } } result_type result(dont_care) const { // for i in [1,probabilities.size()], return heights[i * 2] detail::times2_iterator idx_begin = detail::make_times2_iterator(1); detail::times2_iterator idx_end = detail::make_times2_iterator(this->probabilities.size() + 1); return result_type( make_permutation_iterator(this->heights.begin(), idx_begin) , make_permutation_iterator(this->heights.begin(), idx_end) ); } public: // make this accumulator serializeable // TODO: do we need to split to load/save and verify that the parameters did not change? template<class Archive> void serialize(Archive & ar, const unsigned int file_version) { ar & probabilities; ar & heights; ar & actual_positions; ar & desired_positions; ar & positions_increments; } private: array_type probabilities; // the quantile probabilities array_type heights; // q_i array_type actual_positions; // n_i array_type desired_positions; // d_i array_type positions_increments; // f_i }; } // namespace impl /////////////////////////////////////////////////////////////////////////////// // tag::extended_p_square // namespace tag { struct extended_p_square : depends_on<count> , extended_p_square_probabilities { typedef accumulators::impl::extended_p_square_impl<mpl::_1> impl; #ifdef BOOST_ACCUMULATORS_DOXYGEN_INVOKED /// tag::extended_p_square::probabilities named parameter static boost::parameter::keyword<tag::probabilities> const probabilities; #endif }; } /////////////////////////////////////////////////////////////////////////////// // extract::extended_p_square // namespace extract { extractor<tag::extended_p_square> const extended_p_square = {}; BOOST_ACCUMULATORS_IGNORE_GLOBAL(extended_p_square) } using extract::extended_p_square; // So that extended_p_square can be automatically substituted with // weighted_extended_p_square when the weight parameter is non-void template<> struct as_weighted_feature<tag::extended_p_square> { typedef tag::weighted_extended_p_square type; }; template<> struct feature_of<tag::weighted_extended_p_square> : feature_of<tag::extended_p_square> { }; }} // namespace boost::accumulators #endif
[ "yanhua133@126.com" ]
yanhua133@126.com
069899b27dc14786dc3344378d24d380df550910
8292e1f6f3ff4fa0afd8aafe9aaaa5135d82d077
/OOP Homework/Thuc hanh/Week9/Exercise 5/Vuong.cpp
09dc136bab69a6e1e096ae20fb1c7bdd034c9506
[]
no_license
lkdn3t/First-Year-In-UIT
b03abcd18506d5916bac609d536bb333e7a4f03d
ca7a5f4c1ca81bd7898176d24fb027891303321e
refs/heads/master
2021-04-06T04:02:07.216858
2018-07-03T14:17:10
2018-07-03T14:17:10
123,702,504
0
0
null
null
null
null
UTF-8
C++
false
false
163
cpp
#include "Vuong.h" void Vuong::Nhap(ifstream & ifile) { ifile >> TraiTren.x >> TraiTren.y; ifile >> Dai; Rong = Dai; } char Vuong::getLoai() { return 'V'; }
[ "lkdn3t@gmail.com" ]
lkdn3t@gmail.com
9257849c82501b46b737e0ded24b0a4315aed731
10c97fdd74b921e5a05905ad52e52b2d1b24ee4d
/Miscellaneous.h
e6299f318d8f3cc1d5f3a795443492e5671d5af6
[]
no_license
weiweibrad/pd2_project1
78ab2201262b31393f50400e21fb97ab09901cc1
b51a7f50e97c8dca36227a9b054391f77aa20cb9
refs/heads/master
2021-01-22T21:38:10.148251
2017-03-19T06:16:29
2017-03-19T06:16:29
85,455,227
0
0
null
null
null
null
UTF-8
C++
false
false
369
h
#ifndef __MISCELLANEOUS_H__ #define __MISCELLANEOUS_H__ /* point is for representing characters on 2D plane, for computational geometry */ class Point { public: int X; int Y; // sorting rule bool operator<(const Point &b) const; }; /* return distance^2 , for better performance than distance^1 */ int distSqr(const Point &a, const Point &b); #endif
[ "E24056679@mail.ncku.edu.tw" ]
E24056679@mail.ncku.edu.tw
58d7c2d42cb1e26f4f2a30bb83b4eb03d5234957
ea12fed4c32e9c7992956419eb3e2bace91f063a
/zombie/code/zombie/nwaypoint/src/ncwaypoint/ncwaypoint_main.cc
e409630f5db02c346e20e6f98d7f39f32b78d540
[]
no_license
ugozapad/TheZombieEngine
832492930df28c28cd349673f79f3609b1fe7190
8e8c3e6225c2ed93e07287356def9fbdeacf3d6a
refs/heads/master
2020-04-30T11:35:36.258363
2011-02-24T14:18:43
2011-02-24T14:18:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,168
cc
//----------------------------------------------------------------------------- // ncwaypoint.cc // (C) 2005 Conjurer Services, S.A. //----------------------------------------------------------------------------- #include "precompiled/pchnwaypoint.h" #ifndef NGAME #include "ncwaypoint/ncwaypoint.h" #include "zombieentity/nctransform.h" #include "nwaypointserver/nwaypointserver.h" #include "ncwaypointpath/ncwaypointpath.h" #include "nspatial/ncspatial.h" //----------------------------------------------------------------------------- nNebulaComponentObject(ncWayPoint,ncPhyPickableObj); //----------------------------------------------------------------------------- NSCRIPT_INITCMDS_BEGIN(ncWayPoint) NSCRIPT_ADDCMD_COMPOBJECT('DGWI', int, GetWayPointId, 0, (), 0, ()); NSCRIPT_ADDCMD_COMPOBJECT('DGWP', const int, GetPathId, 0, (), 0, ()); NSCRIPT_INITCMDS_END() //----------------------------------------------------------------------------- /** Constructor history: - 06-Oct-2004 Zombie created */ ncWayPoint::ncWayPoint() : waypoint(0) { // Empty } //----------------------------------------------------------------------------- /** Destructor history: - 06-Oct-2004 Zombie created */ ncWayPoint::~ncWayPoint() { // Empty } //----------------------------------------------------------------------------- /** Sets the position of this object and the waypoint @param newposition world position history: - 06-Oct-2004 Zombie created */ void ncWayPoint::SetPosition( const vector3& newposition ) { if( !this->waypoint ) { return; } this->waypoint->SetNewPosition( newposition ); ncPhyPickableObj::SetPosition( newposition ); } //----------------------------------------------------------------------------- /** Sets the real waypoint @param realwaypoint a waypoint reference history: - 06-Oct-2004 Zombie created */ void ncWayPoint::SetWayPoint( WayPoint* realwaypoint ) { this->waypoint = realwaypoint; } //----------------------------------------------------------------------------- /** User init instance code. @param loaded indicates if the instance is bare new of loaded history: - 17-May-2005 Zombie created */ void ncWayPoint::InitInstance(nObject::InitInstanceMsg initType) { // update Spatial bb this->GetComponentSafe<ncSpatial>()->SetBBox(0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f); //ncPhyPickableObj::InitInstance(false); ncPhyPickableObj::InitInstance(nObject::NewInstance); #ifndef NGAME if (initType != nObject::ReloadedInstance) { if( !nWayPointServer::Instance()->IsLoading() ) { ncTransform* transform( this->GetComponent<ncTransform>() ); n_assert2( transform, "Missing component ncTransform." ); WayPoint::waypointid id(nWayPointServer::Instance()->CreateNewWayPoint( transform->GetPosition() ) ); this->SetWayPoint( nWayPointServer::Instance()->GetWayPoint( id ) ); nWayPointServer::Instance()->GetWayPoint( id )->SetComponent( this ); } } #endif } //----------------------------------------------------------------------------- /** Returns the id of the waypoint. @return waypoint id history: - 10-Oct-2005 Zombie created */ int ncWayPoint::GetWayPointId() const { return this->waypoint->GetId(); } //----------------------------------------------------------------------------- /** Moves the object to limbo. history: - 10-Oct-2005 Zombie created */ void ncWayPoint::YouShallDwellIntoTheLimbo() { ncPhysicsObj::YouShallDwellIntoTheLimbo(); if( this->waypoint->GetPath() ) { ncWayPointPath* path(nWayPointServer::Instance()->CheckPathExists( this->waypoint->GetPath() )); if( path ) { nWayPointServer::Instance()->RemoveWayPointFromItsPath( this->waypoint->GetId() ); } } nWayPointServer::Instance()->RemoveWayPointFromList( this->waypoint->GetId() ); } //----------------------------------------------------------------------------- /** Recovers an object from the limbo. history: - 10-Oct-2005 Zombie created */ void ncWayPoint::YourSoulMayComeBackFromLimbo() { ncPhysicsObj::YourSoulMayComeBackFromLimbo(); if( !this->waypoint->GetPath() ) { return; } ncWayPointPath* path(nWayPointServer::Instance()->CheckPathExists( this->waypoint->GetPath() )); if( !path ) { return; } int idForward(0); int idBackward(0); if( this->waypoint->GetForward() ) { idForward = this->waypoint->GetForward()->GetId(); } if( this->waypoint->GetBackward() ) { idBackward = this->waypoint->GetBackward()->GetId(); } nWayPointServer::Instance()->AddWayPointFromList( this->waypoint ); path->InsertWayPointInPath( this->waypoint->GetId(), idBackward, idForward ); if( this->waypoint->GetForward() ) { this->waypoint->GetForward()->SetBackward( this->waypoint ); } if( this->waypoint->GetBackward() ) { this->waypoint->GetBackward()->SetForward( this->waypoint ); } } //----------------------------------------------------------------------------- /** Returns the waypoint path. @return path id history: - 10-Jan-2005 Zombie created */ const int ncWayPoint::GetPathId() const { return this->waypoint->GetPath(); } #else class nClassComponentObject * n_init_ncWayPoint(char const *,class nComponentObjectServer *) { return 0; } #endif //----------------------------------------------------------------------------- // EOF //-----------------------------------------------------------------------------
[ "magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91" ]
magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91
0e4408633dceeffef6796354825e368f4f372b80
281dd0889d34cac51e0eeb11b5835d92a0563ba1
/Coursework2/src/display/two_dimensional_display.cc
77538551b5cae969d27a4e3be8866f58f1e1668f
[ "WTFPL" ]
permissive
stephenmcgruer/University-CAV
382bed1cca6cf2835967534c1c870b8cfc57efe9
b2ba8d8b02ff2735bdfa0eee1b1fbfea17252661
refs/heads/master
2021-03-12T19:42:01.856218
2013-05-21T19:14:06
2013-05-21T19:14:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,838
cc
//! \author Stephen McGruer #include "./two_dimensional_display.h" #include <algorithm> #include <cstdio> namespace computer_visualization { void TwoDimensionalDisplay::ExtraSetup() { // Set up an orthogonal projection to display the head on. gluOrtho2D(-kWindowWidth / 2, kWindowWidth / 2, -kWindowHeight / 2, kWindowHeight / 2); } void TwoDimensionalDisplay::Display() { // Clear the window. glClear(GL_COLOR_BUFFER_BIT); // Iterate over all of the head data, displaying the currently viewable // data. fprintf(stdout, "Rendering... (Transparency level %f)\n", transparency_level); for (int xi = 1 ; xi < vol.sizex()-1 ; xi++) { for (int yi = 1 ; yi < vol.sizey()-1 ; yi++) { for (int zi = vol.sizez()-1 ; zi > 0 ; zi--) { float tmpc = static_cast<float>(vol.volume(xi, yi, zi) / 255.f); float alpha = OpacityTransferFunction(tmpc); float color[3]; ColourTransferFunction(tmpc, color); glColor4f(color[0], color[1], color[2], alpha); // The data is compressed such that the y range is too small, so each // voxel defines a square box. glRecti(xi-vol.sizex()/2 , 2*yi -vol.sizey(), xi-vol.sizex()/2+1, 2*yi-vol.sizey()+2); } } } fprintf(stdout, "Rendered.\n"); glFlush(); } void TwoDimensionalDisplay::KeyPressed(unsigned char key, int x, int y) { // '=' is a common typo for '+'. if (key == '+' || key == '=') { transparency_level = std::min(0.95f, transparency_level + 0.05f); } else if (key == '-') { transparency_level = std::max(0.05f, transparency_level - 0.05f); } else if (key >= '0' && key <= '9') { transparency_level = (key - '0') / 10.0f; fprintf(stdout, "Set transparency level to %f\n", transparency_level); } else { return; } glutPostRedisplay(); } }
[ "stephen.mcgruer@gmail.com" ]
stephen.mcgruer@gmail.com
77ea5f59ffcfd81f17b6f71e49092db01fff16eb
fd0d9408ca29c9fc4f4216081a2402ac4cd56af7
/src/AStarSolver.cpp
f72d2f75834fd3c797de72223f479496fed7b39e
[]
no_license
Airscope/EightPuzzle
8c2827da6b912d1efb984121742f80e3fda47e03
47d69570bc603ddc1df9ae054e3cd6adc479d061
refs/heads/master
2020-08-28T22:47:20.072799
2019-11-05T12:59:12
2019-11-05T12:59:12
217,843,481
0
0
null
null
null
null
UTF-8
C++
false
false
1,245
cpp
#include "AStarSolver.h" #include "Board.h" namespace solver { bool AStarSolver::Solve(const Board& start) { if (!start.Solvable()) { std::cerr << "Unsolvable Board." << std::endl; return false; } openset_.clear(); camefrom_.clear(); closeset_.clear(); f_.clear(); g_.clear(); openset_.Initialize(GetComparator()); openset_.Push(start); g_[start] = 0; f_[start] = GetHeuristic(start); while (!openset_.empty()) { Board current = openset_.Top(); if (current.EqualsToGoal()) { ReconstructPath(current); return true; } openset_.Pop(); auto neighbors = current.Neighbors(); for (const auto& neighbor : neighbors) { if (g_.count(neighbor) == 0) g_[neighbor] = 9999999; // inf if (f_.count(neighbor) == 0) f_[neighbor] = 9999999; // inf } for (const auto& neighbor : neighbors) { int g = g_[current] + current.Dist(neighbor); if (g < g_[neighbor]) { g_[neighbor] = g; f_[neighbor] = g_[neighbor] + GetHeuristic(neighbor); // g + h } if (closeset_.count(neighbor) == 0) { camefrom_[neighbor] = current; openset_.Push(std::move(neighbor)); } } closeset_.insert(current); } return false; } } // namespace solver
[ "478499770@qq.com" ]
478499770@qq.com
5f5974d0121157fb74bb2713577418c9c640ef90
b8e6b1ec994c2b26d2c1bfe941d66edd3d7df8d7
/CartPoint.h
fdf1c9935944916ddc7472f95eccba70fcc2d0d7
[]
no_license
hhebert1/Sea-plus-plus
7216be02778329a67d0552a7e1c8273ad81623cc
1fc0ec514221fcfe80f86283d13a3cdce85a3ee4
refs/heads/master
2020-03-28T02:23:31.859352
2018-09-05T19:11:57
2018-09-05T19:11:57
147,567,077
0
0
null
null
null
null
UTF-8
C++
false
false
508
h
#ifndef CARTPOINT_H #define CARTPOINT_H #include "CartVector.h" //declare class CartPoint class CartPoint { public: //member variables double x; double y; //member functions CartPoint(); CartPoint(double x, double y); }; //Nonmember functions double cart_distance(CartPoint, CartPoint); std::ostream & operator<<(std::ostream & out, CartPoint & point); CartPoint operator+ (CartPoint p1, CartVector v1); CartVector operator- (CartPoint p1, CartPoint p2); #endif
[ "hhebert1@bu.edu" ]
hhebert1@bu.edu
f21b98ae8f51d3fd3259cb4926da22c3ad996611
0cf3480390764a5d0c6b91b27a94347136e1ccdf
/Unit1.h
69e68eb629e480fb1e25b1b116a67e01e8e0f1b8
[]
no_license
vilmarferreira/web
c3d58a60671f58d3ebec59d45063bd38fad5085c
d6c10d704ae781a1e0f96a2c8422fc7a37da57a2
refs/heads/master
2021-08-31T13:15:21.093251
2017-12-21T12:13:04
2017-12-21T12:13:04
115,002,284
0
0
null
null
null
null
UTF-8
C++
false
false
983
h
//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <FMX.Controls.hpp> #include <FMX.Forms.hpp> #include <FMX.Types.hpp> #include <FMX.WebBrowser.hpp> //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TWebBrowser *WebBrowser1; TWebBrowser *WebBrowser2; TWebBrowser *WebBrowser3; TWebBrowser *WebBrowser4; TWebBrowser *WebBrowser5; TWebBrowser *WebBrowser6; TWebBrowser *WebBrowser7; TWebBrowser *WebBrowser8; private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif
[ "ferreiragomes7792@gmail.com" ]
ferreiragomes7792@gmail.com
15c9f4d5d9b7bb4729291bca59006b74018e8dd2
19eb97436a3be9642517ea9c4095fe337fd58a00
/private/net/snmp/compiler/mibccv2/mibcc.cpp
da6b5cfdde6a2d94f5afa13b15bcc43fbc8d98a5
[]
no_license
oturan-boga/Windows2000
7d258fd0f42a225c2be72f2b762d799bd488de58
8b449d6659840b6ba19465100d21ca07a0e07236
refs/heads/main
2023-04-09T23:13:21.992398
2021-04-22T11:46:21
2021-04-22T11:46:21
360,495,781
2
0
null
null
null
null
UTF-8
C++
false
false
7,389
cpp
/*++ Copyright (c) 1998 Microsoft Corporation Module Name: mibcc.cpp Abstract: SMI compiler backend for MIB database. Author: Florin Teodorescu (florint) 26-Jan-1998 --*/ /////////////////////////////////////////////////////////////////////////////// // // // Include files // // // /////////////////////////////////////////////////////////////////////////////// #include <stdarg.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include <io.h> #include <iostream.h> #include <fstream.h> #include <afx.h> #include <afxtempl.h> #include <objbase.h> #include <afxwin.h> #include <afxole.h> #include <afxmt.h> #include <wchar.h> #include <process.h> #include <objbase.h> #include <initguid.h> #include <bool.hpp> #include <nString.hpp> #include <ui.hpp> #include <symbol.hpp> #include <type.hpp> #include <value.hpp> #include <valueRef.hpp> #include <typeRef.hpp> #include <oidValue.hpp> #include <objType.hpp> #include <objTypV1.hpp> #include <objTypV2.hpp> #include <objId.hpp> #include <trapType.hpp> #include <notType.hpp> #include <group.hpp> #include <notGroup.hpp> #include <module.hpp> #include <sValues.hpp> #include <lex_yy.hpp> #include <ytab.hpp> #include <errorMsg.hpp> #include <errorCon.hpp> #include <scanner.hpp> #include <parser.hpp> #include <apTree.hpp> #include <oidTree.hpp> #include <pTree.hpp> #include "Debug.hpp" #include "OidToF.hpp" #include "Configs.hpp" // error container defined in debug.cpp extern SIMCErrorContainer errorContainer; extern Configs theConfigs; int InitTree(SIMCParseTree &theTree, int argc, char *argv[]) { UINT uFileCount; UINT uFileNameLen; UINT uErrLevel; UINT uSMIVersion; /* process command line options */ --argc; ++argv; while ((argc > 0) && ((argv[0][0] == '-') || (argv[0][0] == '/'))) { switch (argv[0][1]) { case '?': case 'h': case 'H': cout << "usage: mibcc [-?] [-e] [-l] [-n] [-o] [-t] -[w] [files...]\n"; cout << " MibCC compiles the specified SNMP MIB files.\n"; cout << " -? usage.\n"; cout << " -eX stop after X Errors. (default = 10)\n"; cout << " -l do not print Logo.\n"; cout << " -n print each Node as it is added.\n"; cout << " -o[file] output file name. (no file by default)\n"; cout << " -t print the mib Tree when finished.\n"; cout << " -wX set Warning level.\n"; cout << " 0=silent; 1=errors only; 2=warnings only; 3=both\n"; cout << " (default = 0)\n"; exit (0); break; case 'e': case 'E': theConfigs.m_nMaxErrors = atoi(argv[0]+2); break; case 'l': case 'L': theConfigs.m_dwFlags &= ~CFG_PRINT_LOGO; break; case 'n': case 'N': theConfigs.m_dwFlags |= CFG_PRINT_NODE; break; case 'o': case 'O': uFileNameLen = strlen(argv[0]+2); if (uFileNameLen == 0) { if (theConfigs.m_pszOutputFilename != NULL) delete theConfigs.m_pszOutputFilename; theConfigs.m_pszOutputFilename = NULL; } else { if (theConfigs.m_pszOutputFilename != NULL) delete (theConfigs.m_pszOutputFilename); theConfigs.m_pszOutputFilename = new char[uFileNameLen+1]; _ASSERT(theConfigs.m_pszOutputFilename != NULL, "Memory Allocation error!", NULL); strcpy(theConfigs.m_pszOutputFilename, argv[0]+2); } break; case 't': case 'T': theConfigs.m_dwFlags |= CFG_PRINT_TREE; break; case 'w': case 'W': uErrLevel = atoi(argv[0]+2); theConfigs.m_dwFlags |= (uErrLevel == 1 || uErrLevel == 3 ? CFG_VERB_ERROR : 0) | (uErrLevel == 2 || uErrLevel == 3 ? CFG_VERB_WARNING : 0); break; case 'v': case 'V': uSMIVersion = atoi(argv[0]+2); if (uSMIVersion > 2) cout << "mibcc: wrong value for -v option; ignored\n"; else theTree.SetSnmpVersion(uSMIVersion); break; default: cout << "mibcc: unrecognized option '" << argv[0] << "'\n"; cout << "mibcc -? for usage\n"; exit (-1); break; } --argc; ++argv; } if (theConfigs.m_dwFlags & CFG_PRINT_LOGO) { cout << "Microsoft (R) SNMP MIB Compiler Version 2.00\n"; cout << "Copyright (c) Microsoft Corporation 1998. All rights reserved.\n"; } for(uFileCount = 0; argc>0; argc--, argv++) { struct _finddata_t findData; intptr_t handle; // check snmp syntax handle = _findfirst(argv[0], &findData); if (handle != -1) { do { if (theConfigs.m_dwFlags & CFG_PRINT_LOGO) { cout << "mibcc: parsing " << findData.name << "\n"; cout.flush(); } uFileCount++; _ASSERT(theTree.CheckSyntax(findData.name), "CheckSyntax() failed!", dumpOnBuild); }while(_findnext(handle, &findData) != -1); } } if (theConfigs.m_dwFlags & CFG_PRINT_LOGO) { // do not print anything further if no files processed if (uFileCount == 0) theConfigs.m_dwFlags &= ~CFG_PRINT_LOGO; cout << "mibcc: total files processed: " << uFileCount << "\n"; } cout.flush(); return 0; } /////////////////////////////////////////////////////////////////////////////// // // // Entry point // // // /////////////////////////////////////////////////////////////////////////////// INT __cdecl main( IN INT argc, IN LPSTR argv[] ) /*++ Routine Description: Program entry point. Arguments: argc - number of command line arguments. argv - pointer to array of command line arguments. Return Values: Returns 0 if successful. --*/ { SIMCParseTree theTree(&errorContainer); SIMCOidTree *pTheOidTree; OidToFile oidDumpTree; _ASSERT(InitTree(theTree, argc, argv)==0, "InitTree() failed!", dumpOnBuild); // resolve symbols _ASSERT(theTree.Resolve(FALSE), "Resolve() failed!", dumpOnBuild); // check semantics _ASSERT(theTree.CheckSemantics(), "CheckSemantics() failed!", dumpOnBuild); // retrieve the Oid Tree pTheOidTree = (SIMCOidTree *)theTree.GetOidTree(); _ASSERT(pTheOidTree != NULL, "Oid Tree is NULL", NULL); oidDumpTree.SetOidTree(pTheOidTree); _ASSERT(oidDumpTree.SetMibFilename(theConfigs.m_pszOutputFilename)==0, "SetMibFilename failed!", NULL); _ASSERT(oidDumpTree.MergeBuiltIn()==0, "MergeBuiltIn failed!", NULL); _ASSERT(oidDumpTree.Scan()==0, "Oid Scan() failed", NULL); if (theConfigs.m_dwFlags & CFG_PRINT_LOGO) { if (theConfigs.m_dwFlags & CFG_PRINT_NODE) cout << '\n'; if (theConfigs.m_pszOutputFilename != NULL) cout << "mibcc: writing compiled file '" << theConfigs.m_pszOutputFilename << "'\n"; else cout << "mibcc: no output file generated" << "\n"; } return 0; }
[ "mehmetyilmaz3371@gmail.com" ]
mehmetyilmaz3371@gmail.com
78446eee7ff290ff41cfee7206529590af6953bb
d1dff012eafc3ba8182869532de0aeb6ac0a74dd
/UVa/993 Product of digits.cpp
b69067359754233148d5fb206b582c36e8808566
[]
no_license
kashimmirza/Problem-Solving
2d9b92bb6800e35e1aaad392e65bb4c4d6c2a4ab
189f3101a1910408c0185270d676453bcf4670a8
refs/heads/master
2023-07-24T13:14:30.004271
2021-09-06T16:05:48
2021-09-06T16:05:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,783
cpp
/*######## IN THE NAME OF ALLHA ##########*/ #include<bits/stdc++.h> using namespace std; #define ll long long #define MAX 999999999999999999 #define nl cout<<endl #define r0 return 0 #define r1 return 1 #define sf1(x) scanf("%lld",&x) #define sf2(x,y) scanf("%lld %lld",&x,&y) #define sf3(x,y,z) scanf("%lld %lld %lld",&x,&y,&z) #define pf1(x) printf("%lld\n",x) #define pf2(x,y) printf("%lld %lld\n",x,y) #define pf3(x,y,z) printf("%lld %lld %lld\n",x,y,z) #define yes printf("YES\n") #define no printf("NO\n") #define pc(x) printf("Case %lld:",x) #define pb push_back #define mp make_pair #define pa pair<ll,ll> #define mem(a,b) memset(a,b,sizeof(a)) #define MIN -99999999999999999 #define READ(f) freopen(f,"r",stdin) #define WRITE(f) freopen(f,"w",stdout) #define pi 2.0*acos(0.0) #define sp printf(" ") #define vs(v) (v.begin(),v.end()) ll max(ll a,ll b) {if(a>b) return a; else return b;} ll min(ll a,ll b) {if(a<b) return a; else return b;} ll fx[]={1,-1,0,0}; ll fy[]={0,0,1,-1}; ll A[300005],B[300005],C[300005],visited[300005],level[300005]; char CH[1000][1000],ch; vector<ll>V; vector<ll>G; int main() { ll T,N,E,u,v,i,j,k,C=0,sum=0,ck=0,x,y; string S,S1; double d1,d2,d3; cin>>T; for(i=1;i<=T;i++) { cin>>N; S.clear(); if(N<10) {cout<<N<<endl;continue;} for(j=9;j>=2;j--) { while(N%j==0) { S+=j+48; N=N/j; } } if(N>9) {cout<<"-1"<<endl;continue;} sort(S.begin(),S.end()); cout<<S<<endl; S.clear(); } /************ALEYA YOUSUF ************/ /************ALLHA IS ALMIGHTY ************/ return 0; }
[ "noreply@github.com" ]
kashimmirza.noreply@github.com
2b074bbb0e1e760e065effa9aafc8c480e0a68f4
9a290ce55095c41df546ed1aab8eaddec153e6e5
/dockerfile/src/common/zeromq-4.1.0/src/tcp_address.cpp
53fbe0d98e6b9d2a0ab193b5f302c6232e245500
[ "LGPL-3.0-only", "LicenseRef-scancode-zeromq-exception-lgpl-3.0", "GPL-3.0-only", "BSD-2-Clause" ]
permissive
mushenghe/visual-pushing-grasping
3ee302ba07c7ebc252aaf498935957dbe3b9403a
53607c99c6016bdf041f10d886fa2c0ab583eecb
refs/heads/master
2020-12-14T15:52:27.062653
2020-03-10T02:56:45
2020-03-10T02:56:45
234,796,767
1
0
BSD-2-Clause
2020-01-18T20:57:01
2020-01-18T20:57:01
null
UTF-8
C++
false
false
19,634
cpp
/* Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file This file is part of 0MQ. 0MQ is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. 0MQ 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <string> #include <sstream> #include "tcp_address.hpp" #include "platform.hpp" #include "stdint.hpp" #include "err.hpp" #include "ip.hpp" #ifdef ZMQ_HAVE_WINDOWS #include "windows.hpp" #else #include <sys/types.h> #include <arpa/inet.h> #include <netinet/tcp.h> #include <netdb.h> #endif #ifdef ZMQ_HAVE_SOLARIS #include <sys/sockio.h> #include <net/if.h> #include <unistd.h> #include <stdlib.h> // On Solaris platform, network interface name can be queried by ioctl. int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_src_) { // TODO: Unused parameter, IPv6 support not implemented for Solaris. (void) ipv6_; // Create a socket. const int fd = open_socket (AF_INET, SOCK_DGRAM, 0); errno_assert (fd != -1); // Retrieve number of interfaces. lifnum ifn; ifn.lifn_family = AF_INET; ifn.lifn_flags = 0; int rc = ioctl (fd, SIOCGLIFNUM, (char*) &ifn); errno_assert (rc != -1); // Allocate memory to get interface names. const size_t ifr_size = sizeof (struct lifreq) * ifn.lifn_count; char *ifr = (char*) malloc (ifr_size); alloc_assert (ifr); // Retrieve interface names. lifconf ifc; ifc.lifc_family = AF_INET; ifc.lifc_flags = 0; ifc.lifc_len = ifr_size; ifc.lifc_buf = ifr; rc = ioctl (fd, SIOCGLIFCONF, (char*) &ifc); errno_assert (rc != -1); // Find the interface with the specified name and AF_INET family. bool found = false; lifreq *ifrp = ifc.lifc_req; for (int n = 0; n < (int) (ifc.lifc_len / sizeof lifreq); n ++, ifrp ++) { if (!strcmp (nic_, ifrp->lifr_name)) { rc = ioctl (fd, SIOCGLIFADDR, (char*) ifrp); errno_assert (rc != -1); if (ifrp->lifr_addr.ss_family == AF_INET) { if (is_src_) source_address.ipv4 = *(sockaddr_in*) &ifrp->lifr_addr; else address.ipv4 = *(sockaddr_in*) &ifrp->lifr_addr; found = true; break; } } } // Clean-up. free (ifr); close (fd); if (!found) { errno = ENODEV; return -1; } return 0; } #elif defined ZMQ_HAVE_AIX || defined ZMQ_HAVE_HPUX || defined ZMQ_HAVE_ANDROID #include <sys/types.h> #include <unistd.h> #include <sys/ioctl.h> #include <net/if.h> int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_src_) { // TODO: Unused parameter, IPv6 support not implemented for AIX or HP/UX. (void) ipv6_; // Create a socket. const int sd = open_socket (AF_INET, SOCK_DGRAM, 0); errno_assert (sd != -1); struct ifreq ifr; // Copy interface name for ioctl get. strncpy (ifr.ifr_name, nic_, sizeof ifr.ifr_name); // Fetch interface address. const int rc = ioctl (sd, SIOCGIFADDR, (caddr_t) &ifr, sizeof ifr); // Clean up. close (sd); if (rc == -1) { errno = ENODEV; return -1; } if (is_src_) memcpy (&source_address.ipv4.sin_addr, &((sockaddr_in*) &ifr.ifr_addr)->sin_addr, sizeof (struct in_addr)); else memcpy (&address.ipv4.sin_addr, &((sockaddr_in*) &ifr.ifr_addr)->sin_addr, sizeof (struct in_addr)); return 0; } #elif ((defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\ defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_OPENBSD ||\ defined ZMQ_HAVE_QNXNTO || defined ZMQ_HAVE_NETBSD)\ && defined ZMQ_HAVE_IFADDRS) #include <ifaddrs.h> // On these platforms, network interface name can be queried // using getifaddrs function. int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_src_) { // Get the addresses. ifaddrs *ifa = NULL; const int rc = getifaddrs (&ifa); errno_assert (rc == 0); zmq_assert (ifa != NULL); // Find the corresponding network interface. bool found = false; for (ifaddrs *ifp = ifa; ifp != NULL; ifp = ifp->ifa_next) { if (ifp->ifa_addr == NULL) continue; const int family = ifp->ifa_addr->sa_family; if ((family == AF_INET || (ipv6_ && family == AF_INET6)) && !strcmp (nic_, ifp->ifa_name)) { if (is_src_) memcpy (&source_address, ifp->ifa_addr, (family == AF_INET) ? sizeof (struct sockaddr_in) : sizeof (struct sockaddr_in6)); else memcpy (&address, ifp->ifa_addr, (family == AF_INET) ? sizeof (struct sockaddr_in) : sizeof (struct sockaddr_in6)); found = true; break; } } // Clean-up; freeifaddrs (ifa); if (!found) { errno = ENODEV; return -1; } return 0; } #else // On other platforms we assume there are no sane interface names. // This is true especially of Windows. int zmq::tcp_address_t::resolve_nic_name (const char *nic_, bool ipv6_, bool is_src_) { // All unused parameters. (void) nic_; (void) ipv6_; errno = ENODEV; return -1; } #endif int zmq::tcp_address_t::resolve_interface (const char *interface_, bool ipv6_, bool is_src_) { // Initialize temporary output pointers with storage address. sockaddr_storage ss; sockaddr *out_addr = (sockaddr*) &ss; size_t out_addrlen; // Initialise IP-format family/port and populate temporary output pointers // with the address. if (ipv6_) { sockaddr_in6 ip6_addr; memset (&ip6_addr, 0, sizeof ip6_addr); ip6_addr.sin6_family = AF_INET6; memcpy (&ip6_addr.sin6_addr, &in6addr_any, sizeof in6addr_any); out_addrlen = sizeof ip6_addr; memcpy (out_addr, &ip6_addr, out_addrlen); } else { sockaddr_in ip4_addr; memset (&ip4_addr, 0, sizeof ip4_addr); ip4_addr.sin_family = AF_INET; ip4_addr.sin_addr.s_addr = htonl (INADDR_ANY); out_addrlen = sizeof ip4_addr; memcpy (out_addr, &ip4_addr, out_addrlen); } // "*" resolves to INADDR_ANY or in6addr_any. if (strcmp (interface_, "*") == 0) { zmq_assert (out_addrlen <= sizeof address); if (is_src_) memcpy (&source_address, out_addr, out_addrlen); else memcpy (&address, out_addr, out_addrlen); return 0; } // Try to resolve the string as a NIC name. int rc = resolve_nic_name (interface_, ipv6_, is_src_); if (rc == 0 || errno != ENODEV) return rc; // There's no such interface name. Assume literal address. #if defined ZMQ_HAVE_OPENVMS && defined __ia64 __addrinfo64 *res = NULL; __addrinfo64 req; #else addrinfo *res = NULL; addrinfo req; #endif memset (&req, 0, sizeof req); // Choose IPv4 or IPv6 protocol family. Note that IPv6 allows for // IPv4-in-IPv6 addresses. req.ai_family = ipv6_? AF_INET6: AF_INET; // Arbitrary, not used in the output, but avoids duplicate results. req.ai_socktype = SOCK_STREAM; // Restrict hostname/service to literals to avoid any DNS lookups or // service-name irregularity due to indeterminate socktype. req.ai_flags = AI_PASSIVE | AI_NUMERICHOST; #if defined AI_V4MAPPED && !defined ZMQ_HAVE_FREEBSD // In this API we only require IPv4-mapped addresses when // no native IPv6 interfaces are available (~AI_ALL). // This saves an additional DNS roundtrip for IPv4 addresses. // Note: While the AI_V4MAPPED flag is defined on FreeBSD system, // it is not supported here. See libzmq issue #331. if (req.ai_family == AF_INET6) req.ai_flags |= AI_V4MAPPED; #endif // Resolve the literal address. Some of the error info is lost in case // of error, however, there's no way to report EAI errors via errno. rc = getaddrinfo (interface_, NULL, &req, &res); if (rc) { errno = ENODEV; return -1; } // Use the first result. zmq_assert (res != NULL); zmq_assert ((size_t) res->ai_addrlen <= sizeof address); if (is_src_) memcpy (&source_address, res->ai_addr, res->ai_addrlen); else memcpy (&address, res->ai_addr, res->ai_addrlen); // Cleanup getaddrinfo after copying the possibly referenced result. freeaddrinfo (res); return 0; } int zmq::tcp_address_t::resolve_hostname (const char *hostname_, bool ipv6_, bool is_src_) { // Set up the query. #if defined ZMQ_HAVE_OPENVMS && defined __ia64 && __INITIAL_POINTER_SIZE == 64 __addrinfo64 req; #else addrinfo req; #endif memset (&req, 0, sizeof req); // Choose IPv4 or IPv6 protocol family. Note that IPv6 allows for // IPv4-in-IPv6 addresses. req.ai_family = ipv6_? AF_INET6: AF_INET; // Need to choose one to avoid duplicate results from getaddrinfo() - this // doesn't really matter, since it's not included in the addr-output. req.ai_socktype = SOCK_STREAM; #if defined AI_V4MAPPED && !defined ZMQ_HAVE_FREEBSD // In this API we only require IPv4-mapped addresses when // no native IPv6 interfaces are available. // This saves an additional DNS roundtrip for IPv4 addresses. // Note: While the AI_V4MAPPED flag is defined on FreeBSD system, // it is not supported here. See libzmq issue #331. if (req.ai_family == AF_INET6) req.ai_flags |= AI_V4MAPPED; #endif // Resolve host name. Some of the error info is lost in case of error, // however, there's no way to report EAI errors via errno. #if defined ZMQ_HAVE_OPENVMS && defined __ia64 && __INITIAL_POINTER_SIZE == 64 __addrinfo64 *res; #else addrinfo *res; #endif const int rc = getaddrinfo (hostname_, NULL, &req, &res); if (rc) { switch (rc) { case EAI_MEMORY: errno = ENOMEM; break; default: errno = EINVAL; break; } return -1; } // Copy first result to output addr with hostname and service. zmq_assert ((size_t) res->ai_addrlen <= sizeof address); if (is_src_) memcpy (&source_address, res->ai_addr, res->ai_addrlen); else memcpy (&address, res->ai_addr, res->ai_addrlen); freeaddrinfo (res); return 0; } zmq::tcp_address_t::tcp_address_t () : _has_src_addr (false) { memset (&address, 0, sizeof address); memset (&source_address, 0, sizeof source_address); } zmq::tcp_address_t::tcp_address_t (const sockaddr *sa, socklen_t sa_len) : _has_src_addr (false) { zmq_assert (sa && sa_len > 0); memset (&address, 0, sizeof address); memset (&source_address, 0, sizeof source_address); if (sa->sa_family == AF_INET && sa_len >= (socklen_t) sizeof address.ipv4) memcpy (&address.ipv4, sa, sizeof address.ipv4); else if (sa->sa_family == AF_INET6 && sa_len >= (socklen_t) sizeof address.ipv6) memcpy (&address.ipv6, sa, sizeof address.ipv6); } zmq::tcp_address_t::~tcp_address_t () { } int zmq::tcp_address_t::resolve (const char *name_, bool local_, bool ipv6_, bool is_src_) { if (!is_src_) { // Test the ';' to know if we have a source address in name_ const char *src_delimiter = strrchr (name_, ';'); if (src_delimiter) { std::string src_name (name_, src_delimiter - name_); const int rc = resolve (src_name.c_str (), local_, ipv6_, true); if (rc != 0) return -1; name_ = src_delimiter + 1; _has_src_addr = true; } } // Find the ':' at end that separates address from the port number. const char *delimiter = strrchr (name_, ':'); if (!delimiter) { errno = EINVAL; return -1; } // Separate the address/port. std::string addr_str (name_, delimiter - name_); std::string port_str (delimiter + 1); // Remove square brackets around the address, if any, as used in IPv6 if (addr_str.size () >= 2 && addr_str [0] == '[' && addr_str [addr_str.size () - 1] == ']') addr_str = addr_str.substr (1, addr_str.size () - 2); // Allow 0 specifically, to detect invalid port error in atoi if not uint16_t port; if (port_str == "*" || port_str == "0") // Resolve wildcard to 0 to allow autoselection of port port = 0; else { // Parse the port number (0 is not a valid port). port = (uint16_t) atoi (port_str.c_str ()); if (port == 0) { errno = EINVAL; return -1; } } // Resolve the IP address. int rc; if (local_) rc = resolve_interface (addr_str.c_str (), ipv6_, is_src_); else rc = resolve_hostname (addr_str.c_str (), ipv6_, is_src_); if (rc != 0) return -1; // Set the port into the address structure. if (is_src_) { if (source_address.generic.sa_family == AF_INET6) source_address.ipv6.sin6_port = htons (port); else source_address.ipv4.sin_port = htons (port); } else { if (address.generic.sa_family == AF_INET6) address.ipv6.sin6_port = htons (port); else address.ipv4.sin_port = htons (port); } return 0; } int zmq::tcp_address_t::to_string (std::string &addr_) { if (address.generic.sa_family != AF_INET && address.generic.sa_family != AF_INET6) { addr_.clear (); return -1; } // Not using service resolv because of // https://github.com/zeromq/libzmq/commit/1824574f9b5a8ce786853320e3ea09fe1f822bc4 char hbuf [NI_MAXHOST]; int rc = getnameinfo (addr (), addrlen (), hbuf, sizeof hbuf, NULL, 0, NI_NUMERICHOST); if (rc != 0) { addr_.clear (); return rc; } if (address.generic.sa_family == AF_INET6) { std::stringstream s; s << "tcp://[" << hbuf << "]:" << ntohs (address.ipv6.sin6_port); addr_ = s.str (); } else { std::stringstream s; s << "tcp://" << hbuf << ":" << ntohs (address.ipv4.sin_port); addr_ = s.str (); } return 0; } const sockaddr *zmq::tcp_address_t::addr () const { return &address.generic; } socklen_t zmq::tcp_address_t::addrlen () const { if (address.generic.sa_family == AF_INET6) return (socklen_t) sizeof address.ipv6; else return (socklen_t) sizeof address.ipv4; } const sockaddr *zmq::tcp_address_t::src_addr () const { return &source_address.generic; } socklen_t zmq::tcp_address_t::src_addrlen () const { if (address.generic.sa_family == AF_INET6) return (socklen_t) sizeof source_address.ipv6; else return (socklen_t) sizeof source_address.ipv4; } bool zmq::tcp_address_t::has_src_addr () const { return _has_src_addr; } #if defined ZMQ_HAVE_WINDOWS unsigned short zmq::tcp_address_t::family () const #else sa_family_t zmq::tcp_address_t::family () const #endif { return address.generic.sa_family; } zmq::tcp_address_mask_t::tcp_address_mask_t () : tcp_address_t (), address_mask (-1) { } int zmq::tcp_address_mask_t::mask () const { return address_mask; } int zmq::tcp_address_mask_t::resolve (const char *name_, bool ipv6_) { // Find '/' at the end that separates address from the cidr mask number. // Allow empty mask clause and treat it like '/32' for ipv4 or '/128' for ipv6. std::string addr_str, mask_str; const char *delimiter = strrchr (name_, '/'); if (delimiter != NULL) { addr_str.assign (name_, delimiter - name_); mask_str.assign (delimiter + 1); if (mask_str.empty ()) { errno = EINVAL; return -1; } } else addr_str.assign (name_); // Parse address part using standard routines. const int rc = tcp_address_t::resolve_hostname (addr_str.c_str (), ipv6_); if (rc != 0) return rc; // Parse the cidr mask number. if (mask_str.empty ()) { if (address.generic.sa_family == AF_INET6) address_mask = 128; else address_mask = 32; } else if (mask_str == "0") address_mask = 0; else { const int mask = atoi (mask_str.c_str ()); if ( (mask < 1) || (address.generic.sa_family == AF_INET6 && mask > 128) || (address.generic.sa_family != AF_INET6 && mask > 32) ) { errno = EINVAL; return -1; } address_mask = mask; } return 0; } int zmq::tcp_address_mask_t::to_string (std::string &addr_) { if (address.generic.sa_family != AF_INET && address.generic.sa_family != AF_INET6) { addr_.clear (); return -1; } if (address_mask == -1) { addr_.clear (); return -1; } char hbuf [NI_MAXHOST]; int rc = getnameinfo (addr (), addrlen (), hbuf, sizeof hbuf, NULL, 0, NI_NUMERICHOST); if (rc != 0) { addr_.clear (); return rc; } if (address.generic.sa_family == AF_INET6) { std::stringstream s; s << "[" << hbuf << "]/" << address_mask; addr_ = s.str (); } else { std::stringstream s; s << hbuf << "/" << address_mask; addr_ = s.str (); } return 0; } bool zmq::tcp_address_mask_t::match_address (const struct sockaddr *ss, const socklen_t ss_len) const { zmq_assert (address_mask != -1 && ss != NULL && ss_len >= (socklen_t) sizeof (struct sockaddr)); if (ss->sa_family != address.generic.sa_family) return false; if (address_mask > 0) { int mask; const uint8_t *our_bytes, *their_bytes; if (ss->sa_family == AF_INET6) { zmq_assert (ss_len == sizeof (struct sockaddr_in6)); their_bytes = (const uint8_t *) &(((const struct sockaddr_in6 *) ss)->sin6_addr); our_bytes = (const uint8_t *) &address.ipv6.sin6_addr; mask = sizeof (struct in6_addr) * 8; } else { zmq_assert (ss_len == sizeof (struct sockaddr_in)); their_bytes = (const uint8_t *) &(((const struct sockaddr_in *) ss)->sin_addr); our_bytes = (const uint8_t *) &address.ipv4.sin_addr; mask = sizeof (struct in_addr) * 8; } if (address_mask < mask) mask = address_mask; const size_t full_bytes = mask / 8; if (memcmp (our_bytes, their_bytes, full_bytes)) return false; const uint8_t last_byte_bits = 0xffU << (8 - mask % 8); if (last_byte_bits) { if ((their_bytes [full_bytes] & last_byte_bits) != (our_bytes [full_bytes] & last_byte_bits)) return false; } } return true; }
[ "musheng.he@outlook.com" ]
musheng.he@outlook.com
d71dadb72c23992b0847f861e0e36ec886c2e75e
34ec508ee68186dc450a62f3eabe80d76f28f815
/src/utils/constants.h
ee70f31aeb93a1a58f98c24c8fcda313c28670d4
[]
no_license
mmou/mbm
abd0ab1f37a443b931989dd2cbdb54a5ed071e20
49493608e99cc158ca7b69280bb62ca32aa4ab38
refs/heads/master
2021-01-13T08:21:16.825256
2016-11-30T10:36:02
2016-11-30T10:36:02
71,765,159
0
0
null
null
null
null
UTF-8
C++
false
false
433
h
namespace mbm { #define NS_PER_SEC 1000000000 #define READY "READY" #define END "END" #define MIN_TARGET_WINDOW_SIZE 1 #define MAX_PACKETS_TEST 30000 #define MAX_PACKETS_CWND 30000 #define TEST_BASE_SEC 30 #define TEST_INCR_SEC_PER_MB 15 #define TEST_MAX_SEC 300 #define CWND_BASE_SEC 15 #define CWND_INCR_SEC_PER_MB 5 #define CWND_MAX_SEC 50 #define DEFAULT_TYPE_I_ERR 0.05 #define DEFAULT_TYPE_II_ERR 0.05 }
[ "moumerry@gmail.com" ]
moumerry@gmail.com
f901365ce8cd004d582ae988e90e77aad49db9b6
bf6246c732c4d05fbc747ffcaafd1fdda9ffea93
/src/Context.cpp
72ffdca3afc11fc04ee1e4c9a509fbea884184df
[]
no_license
Senryoku/SenOGL
cf36da3ecc799ded78ffbfbd242e84ea5516b214
7c10c2e08c4f3e1fa17071c7b63db1c5ff220a4f
refs/heads/master
2020-12-25T16:51:06.740100
2017-11-15T06:33:32
2017-11-15T06:33:32
28,991,908
0
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
#include <Context.hpp> namespace Context { bool init() { return gl3wInit() != -1; } void APIENTRY debugCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* userParam) { (void)source; (void)type; (void)id; (void)severity; (void)length; (void)userParam; std::cerr << message << std::endl; if(severity == GL_DEBUG_SEVERITY_HIGH) { std::cerr << "Severe OpenGL error, aborting..." << std::endl; abort(); } } }
[ "maretverdant@gmail.com" ]
maretverdant@gmail.com
db0194a49951301c97e4d59bd25e98945c117035
f840883edfd83577c170a9b3def6d3fb9556291e
/src/UnfoldJetpT.cxx
431c0db86de6226164c181b3275774778ba5ce3b
[]
no_license
yistand/ppjet
d1968028ff542d98762af062cde49b9d568da5a7
8cbfa2a61f0de352cc46fc1299207ec7702508e6
refs/heads/master
2021-01-19T01:51:42.434216
2019-05-16T12:44:14
2019-05-16T12:44:14
45,508,287
0
0
null
null
null
null
UTF-8
C++
false
false
14,648
cxx
//====================================================================================================================================================== // // 2016.07.25 Li YI // use RooUnfold to unfold leading jet pT using Mc - Rc from embedding // // To run this code: // root -l src/UnfoldJetpT.cxx // // // 2016.08.01 Li YI // Reconstruct responsive matrix with fine binning, so that we can correct change prior (weight within pT bins). // Unfold with wide binning to reduce the bin-to-bin migration due to statistics. // //====================================================================================================================================================== #if !(defined(__CINT__) || defined(__CLING__)) #include <iostream> using std::cout; using std::endl; #include "TRandom.h" #include "TH1D.h" #include "TFile.h" #include "TCanvas.h" #include "TLine.h" #include "TF1.h" #include "TLegend.h" #include "TLatex.h" #include "RooUnfoldResponse.h" #include "RooUnfoldBayes.h" //#include "RooUnfoldSvd.h" //#include "RooUnfoldTUnfold.h" //#include "RooUnfoldBinByBin.h" #endif void UseAnotherPrior(TH1D *truth, TH2D *cov, TH1D *measured, TH1D *modtruth, TH2D *modcov, TH1D *modmeasured, float par=0.01) { TF1 *f1 = new TF1("f1","exp(-[0]*x)",0,100); f1->SetParameter(0,par); int nbins=truth->GetNbinsX(); for(int i = 0; i<nbins; i++) { float iscale = f1->Eval(i); modtruth->SetBinContent(i+1,iscale*truth->GetBinContent(i+1)); modtruth->SetBinError(i+1,iscale*truth->GetBinError(i+1)); for(int j = 0; j<nbins; j++) { modcov->SetBinContent(j+1,i+1,iscale*cov->GetBinContent(j+1,i+1)); modcov->SetBinError(j+1,i+1,iscale*cov->GetBinError(j+1,i+1)); } } TH1D *modcov_px=(TH1D*)modcov->ProjectionX("modcov_px"); TH1D *cov_px=(TH1D*)cov->ProjectionX("cov_px"); for(int j=0; j<nbins; j++) { float jscale = cov_px->GetBinContent(j+1)>0?modcov_px->GetBinContent(j+1)/cov_px->GetBinContent(j+1):0; modmeasured->SetBinContent(j+1,jscale*measured->GetBinContent(j+1)); modmeasured->SetBinError(j+1,jscale*measured->GetBinError(j+1)); } } TH2D *Rebin2DHisto(TH2D *old, int Nx, double *xbins, int Ny, double *ybins){ TH2D *h = new TH2D(Form("Rebin%s",Form("Rebin%s",old->GetName())),old->GetTitle(),Nx,xbins,Ny,ybins); h->Sumw2(); TAxis *xaxis = old->GetXaxis(); TAxis *yaxis = old->GetYaxis(); for (int j=1; j<=yaxis->GetNbins();j++) { for (int i=1; i<=xaxis->GetNbins();i++) { h->Fill(xaxis->GetBinCenter(i),yaxis->GetBinCenter(j),old->GetBinContent(i,j)); } } return h; } //========================================= MAIN =========================================== void UnfoldJetpT(int par=4) { gStyle->SetOptStat(0); gStyle->SetOptTitle(0); cout << "==================================== TRAIN ====================================" << endl; TFile *fin = new TFile("UnfoldMatrxLead_Online_nobbc.root"); TH1D *measured = (TH1D*)fin->Get("Rc"); TH1D *truth = (TH1D*)fin->Get("Mc"); TH2D *cov = (TH2D*)fin->Get("CovMatrix"); measured->Sumw2(); truth->Sumw2(); cov->Sumw2(); TH1D *measured_save = (TH1D*)measured->Clone("Rc"); TH1D *truth_save = (TH1D*)truth->Clone("Mc"); TH2D *cov_save = (TH2D*)cov->Clone("CovMatrix"); RooUnfoldResponse response (measured, truth, cov); //RooUnfoldResponse response (measured, cov->ProjectionY(), cov); // test //RooUnfoldResponse response (cov->ProjectionX(),truth, cov); // test //RooUnfoldResponse response (cov->ProjectionX(), cov->ProjectionY(), cov); // test int iter = par; // for RooUnfoldBayes // default 4 int kterm = par; // for RooUnfoldSvd // default 4 cout << "==================================== self TEST =====================================" << endl; RooUnfoldBayes unfold (&response, measured, iter); //RooUnfoldSvd unfold (&response, measured, kterm); //RooUnfoldBinByBin unfold(&response, measured); TH1D* reco= (TH1D*) unfold.Hreco(); //#define CHANGE_PRIOR // if change the prior #ifdef CHANGE_PRIOR cout << "INFO: Use the modified prior " << endl; reco->Reset(); TH1D *modtruth = (TH1D*)truth->Clone("modtruth"); modtruth->Reset(); TH1D *modmeasured = (TH1D*)measured->Clone("modmeasured"); modmeasured->Reset(); TH2D *modcov = (TH2D*)cov->Clone("modcov"); modcov->Reset(); UseAnotherPrior(truth, cov, measured, modtruth, modcov, modmeasured, -0.1); RooUnfoldResponse modresponse (modmeasured, modtruth, modcov); RooUnfoldBayes modunfold (&modresponse, measured, iter); //RooUnfoldSvd modunfold (&modresponse, measured, kterm); //RooUnfoldBinByBin modunfold(&modresponse, measured); reco= (TH1D*) modunfold.Hreco(); #endif reco->SetName("unfold_train"); TCanvas *c1 = new TCanvas("ctest"); c1->SetLogy(); reco->SetLineColor(1); reco->GetXaxis()->SetTitle("Leading Jet p_{T}"); reco->GetYaxis()->SetTitle("d(Number of events)/dp_{T}"); reco->DrawClone("h"); measured->SetLineColor(kOrange); measured->SetLineWidth(2); measured->DrawClone("psame"); truth->SetLineColor(kRed); truth->DrawClone("psame"); #ifdef CHANGE_PRIOR modtruth->Draw("psame"); #endif TLegend *leg0 = new TLegend(0.6,0.7,0.85,0.86); leg0->SetFillColor(0); leg0->AddEntry(reco,"MC unfolded","pl"); leg0->AddEntry(truth,"MC particle-level truth","pl"); leg0->AddEntry(measured,"MC detector-level","pl"); leg0->DrawClone("same"); // plot ratio TH1D *hr = (TH1D*)reco->Clone("Ratio"); hr->Divide(truth); TCanvas *cr1 = new TCanvas("cmcratio"); hr->GetXaxis()->SetTitle("Leading Jet p_{T}"); hr->GetYaxis()->SetTitle("MC unfolded/particle-level truth Ratio"); hr->DrawClone(); TLine *line = new TLine(0,1,hr->GetBinLowEdge(hr->GetNbinsX()+1),1); line->SetLineWidth(2); line->DrawClone(); cout << "==================================== UNFOLDING =====================================" << endl; TFile *freal = new TFile("/home/fas/caines/ly247/Scratch/pp200Y12_jetunderlying/NoTofMatch_FullJet_TransCharged_MatchTrig_ppJP2_151030_P12id.root"); TH1D *LeadJetPt_data = (TH1D*)freal->Get("LeadingJetPt"); TH1D *LeadJetPt_data_save = (TH1D*)LeadJetPt_data->Clone("LeadJetPt_data"); //#define CUT_HIGH_PT //#define CUT_LOW_PT double cutoffhigh=50; double cutofflow=7; #ifdef CUT_HIGH_PT cout << "INFO: CUT off high pT in Rc jet " << endl; for(int i = 0; i<LeadJetPt_data->GetNbinsX(); i++) { if(LeadJetPt_data->GetBinCenter(i+1)>cutoffhigh) { LeadJetPt_data->SetBinContent(i+1,0); LeadJetPt_data->SetBinError(i+1,0); } } #endif #ifdef CUT_LOW_PT cout << "INFO: CUT off low pT in Rc jet " << endl; for(int i = 0; i<LeadJetPt_data->GetNbinsX(); i++) { if(LeadJetPt_data->GetBinCenter(i+1)<cutofflow) { LeadJetPt_data->SetBinContent(i+1,0); LeadJetPt_data->SetBinError(i+1,0); } } #endif #if defined(CUT_HIGH_PT) && defined(CUT_LOW_PT) for(int i = 0; i<measured->GetNbinsX(); i++) { if((measured->GetBinCenter(i+1)>cutoffhigh) || (measured->GetBinCenter(i+1)<cutofflow)) { measured->SetBinContent(i+1,0); measured->SetBinError(i+1,0); } } for(int i = 0; i<truth->GetNbinsX(); i++) { if((truth->GetBinCenter(i+1)>cutoffhigh) || (truth->GetBinCenter(i+1)<cutofflow)) { truth->SetBinContent(i+1,0); truth->SetBinError(i+1,0); } } for(int i = 0; i<cov->GetNbinsX(); i++) { for(int j = 0; j<cov->GetNbinsY(); j++) { if((cov->GetXaxis()->GetBinCenter(i+1)>cutoffhigh) || (cov->GetXaxis()->GetBinCenter(i+1)<cutofflow) || (cov->GetYaxis()->GetBinCenter(j+1)>cutoffhigh) || (cov->GetYaxis()->GetBinCenter(j+1)<cutofflow)) { cov->SetBinContent(i+1,j+1,0); cov->SetBinError(i+1,j+1,0); } } } #endif #define WIDEBIN #ifdef WIDEBIN // ====================== Use wide binning for actually unfolding ====================== const int WNbins = 15; // wide binning for unfolding procedure double Wptbins[WNbins+1] = {0,2,3,4,5,7,9,11,15,20,25,35,45,55,65,100}; TH2D *Wcov = Rebin2DHisto(cov,WNbins,Wptbins,WNbins,Wptbins); TH1D *Wmeasured = (TH1D*)measured->Rebin(WNbins,"Wmeasured",Wptbins); TH1D *Wtruth = (TH1D*)truth->Rebin(WNbins,"Wtruth",Wptbins); RooUnfoldResponse Wresponse (Wmeasured, Wtruth, Wcov); TH1D *WLeadJetPt_data = (TH1D*)LeadJetPt_data->Rebin(WNbins,"WLeadJetPt_data",Wptbins); TH1D *Wtruth_save = (TH1D*)Wtruth->Clone("Wtruth"); TH1D *Wmeasured_save = (TH1D*)Wmeasured->Clone("Wmeasured"); TH2D *Wcov_save = (TH2D*)Wcov->Clone("Wcov"); #endif #if !defined(CHANGE_PRIOR) && !defined(WIDEBIN) RooUnfoldBayes unfold_data (&response, LeadJetPt_data , iter); //RooUnfoldSvd unfold_data (&response, LeadJetPt_data , kterm); //RooUnfoldBinByBin unfold_data(&response, LeadJetPt_data); #elif !defined(CHANGE_PRIOR) && defined(WIDEBIN) RooUnfoldBayes unfold_data (&Wresponse, WLeadJetPt_data , iter); //RooUnfoldSvd unfold_data (&Wresponse, WLeadJetPt_data , kterm); //RooUnfoldBinByBin unfold_data(&Wresponse, WLeadJetPt_data); #elif defined(CHANGE_PRIOR) && !defined(WIDEBIN) cout << "INFO: Use the modified prior " << endl; RooUnfoldBayes unfold_data (&modresponse, LeadJetPt_data , iter); //RooUnfoldSvd unfold_data (&modresponse, LeadJetPt_data , kterm); //RooUnfoldBinByBin unfold_data(&modresponse, LeadJetPt_data); #elif defined(CHANGE_PRIOR) && defined(WIDEBIN) cout << "INFO: Use the modified prior " << endl; TH2D *Wmodcov = Rebin2DHisto(modcov,WNbins,Wptbins,WNbins,Wptbins); TH1D *Wmodmeasured = (TH1D*)modmeasured->Rebin(WNbins,"Wmodmeasured",Wptbins); TH1D *Wmodtruth = (TH1D*)modtruth->Rebin(WNbins,"Wmodtruth",Wptbins); RooUnfoldResponse Wmodresponse (Wmodmeasured, Wmodtruth, Wmodcov); RooUnfoldBayes unfold_data (&Wmodresponse, WLeadJetPt_data , iter); //RooUnfoldSvd unfold_data (&Wmodresponse, WLeadJetPt_data , kterm); //RooUnfoldBinByBin unfold_data(&Wmodresponse, WLeadJetPt_data); #endif TH1D *UnfoldedLeadJetPt_data = (TH1D*)unfold_data.Hreco(); UnfoldedLeadJetPt_data->SetName("UnfoldedLeadJetPt_data"); //unfold_data.Print(); // print detailed bin-to-bin information cout << "Get nFake = "<<unfold_data.GetMeasureFake()<< endl; TH1D *UnfoldedLeadJetPt_data_save = (TH1D*)UnfoldedLeadJetPt_data->Clone("unfold"); float ptmin = 15; // 12; 10; float ptmax = 40; // 40; 50; int ixmin=truth->FindBin(ptmin); int ixmax=truth->FindBin(ptmax); int Uxmin=UnfoldedLeadJetPt_data->FindBin(ptmin); int Uxmax=UnfoldedLeadJetPt_data->FindBin(ptmax); float truthscale = truth->Integral(ixmin,ixmax)>0?UnfoldedLeadJetPt_data->Integral(Uxmin,Uxmax)/truth->Integral(ixmin,ixmax):0; cout << " scale Mc by " << truthscale << endl; if(truthscale>0)truth->Scale(truthscale); #ifdef WIDEBIN float Wtruthscale = Wtruth->Integral(Uxmin,Uxmax)>0?UnfoldedLeadJetPt_data->Integral(Uxmin,Uxmax)/Wtruth->Integral(Uxmin,Uxmax):0; cout << " scale WMc by " << Wtruthscale << endl; if(Wtruthscale>0)Wtruth->Scale(Wtruthscale); #endif float measuredscale = measured->Integral(ixmin,ixmax)>0?LeadJetPt_data->Integral(ixmin,ixmax)/measured->Integral(ixmin,ixmax):0; cout << " scale Rc by " << measuredscale << endl; if(measuredscale>0)measured->Scale(measuredscale); // Normalized by bin width #ifdef WIDEBIN UnfoldedLeadJetPt_data->Scale(1,"width"); // wide bin, scale it by width (NEED TO CHECK, the fine bining uses 1 as bin width, (100,0,100) Wtruth->Scale(1,"width"); #endif TCanvas *c2 = new TCanvas("cunfold"); c2->SetLogy(); UnfoldedLeadJetPt_data->SetLineColor(1); UnfoldedLeadJetPt_data->SetMarkerStyle(8); LeadJetPt_data->SetLineColor(kBlue); LeadJetPt_data->SetMarkerColor(kBlue); LeadJetPt_data->SetMarkerStyle(8); truth->SetLineColor(kRed); truth->SetLineWidth(2); measured->SetLineColor(kOrange); measured->SetLineWidth(2); #if !defined(WIDEBIN) truth->GetXaxis()->SetTitle("Leading Jet p_{T}"); truth->GetYaxis()->SetTitle("d(Number of events)/dp_{T}"); truth->DrawClone("h"); #else Wtruth->GetXaxis()->SetTitle("Leading Jet p_{T}"); Wtruth->GetYaxis()->SetTitle("d(Number of events)/dp_{T}"); Wtruth->DrawClone("h"); #endif measured->DrawClone("hsame"); UnfoldedLeadJetPt_data->DrawClone("psame"); LeadJetPt_data->DrawClone("psame"); #if defined(CHANGE_PRIOR) && !defined(WIDEBIN) modtruth->Scale(truthscale); modtruth->SetLineColor(kGreen+1); modtruth->SetMarkerColor(kGreen+1); modtruth->Draw("csame"); #elif defined(CHANGE_PRIOR) && defined(WIDEBIN) Wmodtruth->Scale(Wtruthscale); Wmodtruth->SetLineColor(kGreen+1); Wmodtruth->SetMarkerColor(kGreen+1); Wmodtruth->Draw("csame"); #endif TLegend *leg1 = new TLegend(0.6,0.7,0.85,0.86); leg1->SetFillColor(0); leg1->AddEntry(LeadJetPt_data,"Measured data","pl"); leg1->AddEntry(UnfoldedLeadJetPt_data,"Unfolded data","pl"); leg1->AddEntry(measured,"MC detector-level (scaled)","pl"); leg1->AddEntry(truth,"MC particle-level (scaled)","pl"); #if defined(CHANGE_PRIOR) && !defined(WIDEBIN) leg1->AddEntry(modtruth,"prior for unfolding","l"); #elif defined(CHANGE_PRIOR) && defined(WIDEBIN) leg1->AddEntry(Wmodtruth,"prior for unfolding","l"); #endif leg1->DrawClone("same"); // plot ratio TH1D *hmcr = (TH1D*)UnfoldedLeadJetPt_data->Clone("ParticleLev_Ratio"); hmcr->Sumw2(); #if !defined(WIDEBIN) hmcr->Divide(truth); #else hmcr->Divide(Wtruth); #endif TH1D *hrcr = (TH1D*)LeadJetPt_data->Clone("DetectorLev_Ratio"); hrcr->Sumw2(); hrcr->Divide(measured); TCanvas *cr2 = new TCanvas("cratio"); hrcr->GetXaxis()->SetTitle("Leading Jet p_{T}"); hrcr->GetYaxis()->SetTitle("Ratio"); hmcr->SetMarkerSize(1.5); hrcr->SetMaximum(2); hrcr->SetMinimum(0); hrcr->DrawClone(); hmcr->DrawClone("same"); TLine *line = new TLine(0,1,hrcr->GetBinLowEdge(hrcr->GetNbinsX()+1),1); line->SetLineWidth(2); line->DrawClone(); TLegend *leg2 = new TLegend(0.6,0.7,0.85,0.86); leg2->SetFillColor(0); leg2->AddEntry(hrcr,"data/MC detector-level","pl"); leg2->AddEntry(hmcr,"data/MC particle-level","pl"); leg2->DrawClone("same"); if(0) { TFile *fout = new TFile(Form("testBayes%d_W.root",iter),"RECREATE"); //if(Wmodtruth) Wmodtruth->Write(); reco->Write(); hrcr->Write(); UnfoldedLeadJetPt_data_save->Write(); #ifdef WIDEBIN Wcov_save->Write(); Wmeasured_save->Write(); Wtruth_save->Write(); WLeadJetPt_data->Write(); #else cov_save->Write(); measured_save->Write(); truth_save->Write(); LeadJetPt_data_save->Write(); #endif fout->Close(); } } #ifndef __CINT__ int main () { UnfoldJetpT(); return 0; } // Main program when run stand-alone #endif
[ "yistand@gmail.com" ]
yistand@gmail.com
c6d6eb657c5180795d59466fc74e308bf94b411d
ef28b501f37a8bb6c62bd57deb9177c310b6476f
/hash/testhash.cpp
29159aead96c266a310b518cb0aba988ee69e1be
[]
no_license
serjiklobanov/c-practice
a68b930a1a94eaa419f2ab79a93005bf047692b3
2930499268173adaa274d535be84a6f3895516d3
refs/heads/master
2023-05-02T20:20:36.401635
2021-05-21T12:39:22
2021-05-21T12:39:22
339,868,384
0
0
null
null
null
null
UTF-8
C++
false
false
2,713
cpp
#include "hash.h" #include <iostream> #include <string> #include <vector> #include <algorithm> #include <cassert> struct TestStruct { std::string key; std::string value1; std::string value2; TestStruct() { } TestStruct(const TestStruct& struct_) { key = struct_.key; value1 = struct_.value1; value2 = struct_.value2; } bool operator==(const TestStruct& t) const { return (key == t.key) && (value1 == t.value1) && (value2 == t.value2); } }; static std::string makeRandomString(int minL = 7, int maxL = 14) { int length = rand() % maxL + minL; static const char alphanum[] = "0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"; std::string s; s.reserve(length); // сделать случайную строку for (int i = 0; i < length; ++i) { s += alphanum[rand() % (sizeof(alphanum) - 1)]; } s += "tmp"; return s; } static void generate(TestStruct *pts) { pts->key = makeRandomString(); pts->value1 = makeRandomString(); pts->value2 = makeRandomString(); } unsigned int hash(const TestStruct* pStruct ) { const int p = 15; unsigned int hash = 0; size_t pPow = 1; for (char c: pStruct->key) { std::srand(c - 'A'); hash += rand() * pPow; pPow *= p; } return hash; } int testComparator (const TestStruct* pStruct1, const TestStruct* pStruct2) { return pStruct1->key < pStruct2->key ? 1 : (pStruct1->key > pStruct2->key ? -1 : 0); } int main() { int N = 2000; TestStruct* data = new TestStruct[N]; lab618::CHash<TestStruct, hash, testComparator> Table(15, 5); for (int i = 0; i < N; ++i) { generate(&(data[i])); } for (int i = 0; i < N/2; ++i) { Table.add(&data[i]); } for (int i = 0; i < N/2; ++i) { TestStruct* pT = Table.find(data[i]); assert(*pT == data[i]); } for (int i = N/2; i < N; ++i) { TestStruct* pT = Table.find(data[i]); assert(pT == nullptr); } for (int i = 0; i < N/2; ++i) { data[i].value2 += "_updated"; Table.update(&data[i]); } for (int i = 0; i < N/2; ++i) { TestStruct* pT = Table.find(data[i]); assert(*pT == data[i]); } for (int i = 0; i< N/2; ++i) { TestStruct* pT = Table.find(data[i]); Table.remove(*pT); } for (int i = 0; i < N/2; ++i) { TestStruct* pT = Table.find(data[i]); assert(pT == nullptr); } delete[] data; return 0; }
[ "lobanov199969@gmail.com" ]
lobanov199969@gmail.com
d564c43f233148e96c681e55151210a3fd735a37
f1c01a3b5b35b59887bf326b0e2b317510deef83
/SDK/SoT_EmissaryDiscoveredLoot_OOS_PromptAccessKey_classes.hpp
1fb89bcc1630080856ee4f3bf283a9956878f81a
[]
no_license
codahq/SoT-SDK
0e4711e78a01f33144acf638202d63f573fa78eb
0e6054dddb01a83c0c1f3ed3e6cdad5b34b9f094
refs/heads/master
2023-03-02T05:00:26.296260
2021-01-29T13:03:35
2021-01-29T13:03:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
857
hpp
#pragma once // Sea of Thieves (2.0) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_EmissaryDiscoveredLoot_OOS_PromptAccessKey_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass EmissaryDiscoveredLoot_OOS_PromptAccessKey.EmissaryDiscoveredLoot_OOS_PromptAccessKey_C // 0x0000 (0x0038 - 0x0038) class UEmissaryDiscoveredLoot_OOS_PromptAccessKey_C : public UPromptCounterAccessKey { public: static UClass* StaticClass() { static auto ptr = UObject::FindObject<UClass>(_xor_("BlueprintGeneratedClass EmissaryDiscoveredLoot_OOS_PromptAccessKey.EmissaryDiscoveredLoot_OOS_PromptAccessKey_C")); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "igromanru@yahoo.de" ]
igromanru@yahoo.de
efb7cee47c189f2e6c609bacd5edb8a651e97651
e47a5b8b36761f288c5c7738bb5a1e820985230c
/Arya Chakraborty/Binary Search/Check If N and Its Double Exist.cpp
cbe3bf3464dac0e67d8efbcd719e42b56d5378b1
[]
no_license
codedazzlers/DSA-Bootcamps
3a03e64c2514a3c4183b1c57b301a0827e96301a
f5a47dca998449e075f37b8bb4d075f6660bb083
refs/heads/main
2023-08-28T09:52:09.732810
2021-11-06T11:52:47
2021-11-06T11:52:47
408,450,942
13
66
null
2021-11-06T11:52:48
2021-09-20T13:18:44
C++
UTF-8
C++
false
false
493
cpp
//https://leetcode.com/problems/check-if-n-and-its-double-exist/ //time complexity=O(n*n) class Solution { public: bool checkIfExist(vector<int> &arr) { for (int i = 0; i < arr.size(); i++) { for (int j = i + 1; j < arr.size(); j++) { if (arr[i] == arr[j] * 2) return true; else if (arr[i] * 2 == arr[j]) return true; } } return false; } };
[ "aryachakraborty2002@gmail.com" ]
aryachakraborty2002@gmail.com
50c65d144c9af44e2f9c3a04c3ca299111f736ed
72ae471d8fbc167ad60fdcb73f64456e372d2beb
/women.cpp
61d4986a0879a42d5e7f079717eb51ca53c231bb
[]
no_license
thanpuia7/stylePro
107d04fd59d3358a814b300706749d043488cbc6
f37708460706165d3b66320f6de42094d911a210
refs/heads/master
2021-08-15T14:47:53.138685
2017-11-17T21:28:34
2017-11-17T21:28:34
111,151,640
0
0
null
null
null
null
UTF-8
C++
false
false
2,188
cpp
#include "women.h" #include <stdio.h> #include <iostream> #include <string> #include <fstream> using namespace std; women::women() { gender=2; wshirtp=500.0; wpantp=1000.0; wshoep=4000.0; } void women::shirt() { cout<<"\nChoose your color"; cout<<"\n1.Black\n2.WHite\n3.Blue"; cin>>color; cout<<"\nEnter Your Size"; cout<<"\n1.Small\n2.Medium\n3.Large"; cin>>size; price=wshirtp; } void women::pant() { cout<<"\nChoose your color"; cout<<"\n1.Black\n2.WHite\n3.Blue"; cin>>color; cout<<"\nEnter Your Size"; cout<<"\n1.Small\n2.Medium\n3.Large"; cin>>size; price=wpantp; } void women::shoe() { cout<<"\nChoose your color"; cout<<"\n1.Black\n2.WHite\n3.Blue"; cin>>color; cout<<"\nEnter Your Size"; cout<<"\n1.Small\n2.Medium\n3.Large"; cin>>size; price=wshoep; } void women::putdata() { ofstream outf("REEBOK", ios::binary); outf.write((char*)&gender, sizeof(gender)); outf.write((char*)&color,sizeof(color)); outf.write((char*)&size,sizeof(size)); outf.write((char*)&price,sizeof(price)); outf.write((char*)&item,sizeof(item)); } void women :: womenitem() { cout<<"\nEnter the Item You want"; cout<<"\n1.Shirt\n2.Pants\n3.Shoe\n"; cin>>item; switch(item) { case 1: shirt(); break; case 2: pant(); break; case 3: shoe(); break; default: cout<<"\nWrong Entry"; } } void women::readprint1() { char gen[20],itm[20],clr[20],siz[20]; ifstream outf("REEBOK", ios::binary); outf.read((char*)&gender,sizeof(gender)); if(gender==1) strcpy_s(gen,"Mens"); else if(gender==2) strcpy_s(gen,"Womens"); outf.read((char*)item,sizeof(item)); if(item==1) strcpy_s(itm,"Shirt"); else if(item==2) strcpy_s(itm,"Pants"); else if(item==3) strcpy_s(itm,"Shoes"); outf.read((char*)&color,sizeof(color)); if(color==1) strcpy_s(clr,"Black"); else if(color==2) strcpy_s(clr,"White"); else if(color==3) strcpy_s(clr,"Blue"); outf>>size; if(size==1) strcpy_s(siz,"Small"); else if(size==2) strcpy_s(siz,"Medium"); else if(size==3) strcpy_s(siz,"Large"); cout<<"\nReceipt:"; cout<<"\nYou Bought "<<gen<<" "<<itm; cout<<"\nSize: "<<siz<<"\nColor: "<<clr; cout<<"\nTotal Amout: Rs "<<price; }
[ "noreply@github.com" ]
thanpuia7.noreply@github.com
a31825e3c0e4f94e575d735b09f254a47df32e1b
bc8e83e8f447e84cd5bb03e9872347e8893e1ead
/olympiads school/2021 Start of Summer Break Practice/vending-machine.cpp
ee1c17bdb4005a906c895bb07b4f4799d6e79f11
[]
no_license
plasmatic1/other-judge-solutions
c04861f843f9122b7b69f1bc00fd4a5a839c8473
4702e0ddaa9243acd71a1ac241fe8dd3e72ce06a
refs/heads/master
2022-09-30T08:39:54.284860
2022-08-29T03:41:32
2022-08-29T03:41:32
214,307,016
1
1
null
2021-04-06T16:56:43
2019-10-11T00:00:25
C++
UTF-8
C++
false
false
2,272
cpp
// ./vending-machine.yml #include "bits/stdc++.h" using namespace std; // Defines #define fs first #define sn second #define pb push_back #define eb emplace_back #define mpr make_pair #define mtp make_tuple #define all(x) (x).begin(), (x).end() // Basic type definitions using ll = long long; using ull = unsigned long long; using ld = long double; using pii = pair<int, int>; using pll = pair<long long, long long>; #ifdef __GNUG__ // PBDS order statistic tree #include <ext/pb_ds/assoc_container.hpp> // Common file #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template <typename T, class comp = less<T>> using os_tree = tree<T, null_type, comp, rb_tree_tag, tree_order_statistics_node_update>; template <typename K, typename V, class comp = less<K>> using treemap = tree<K, V, comp, rb_tree_tag, tree_order_statistics_node_update>; // HashSet #include <ext/pb_ds/assoc_container.hpp> template <typename T, class Hash> using hashset = gp_hash_table<T, null_type, Hash>; template <typename K, typename V, class Hash> using hashmap = gp_hash_table<K, V, Hash>; const ll RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count(); struct chash { ll operator()(ll x) const { return x ^ RANDOM; } }; #endif // More utilities int SZ(string &v) { return v.length(); } template <typename C> int SZ(C &v) { return v.size(); } template <typename C> void UNIQUE(vector<C> &v) { sort(v.begin(), v.end()); v.resize(unique(v.begin(), v.end()) - v.begin()); } template <typename T, typename U> void maxa(T &a, U b) { a = max(a, b); } template <typename T, typename U> void mina(T &a, U b) { a = min(a, b); } const ll INF = 0x3f3f3f3f, LLINF = 0x3f3f3f3f3f3f3f3f; const int MN = 101, MV = 1e5+1; int N, C; ll dp[MV]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> N >> C; for (auto i = 0; i < N; i++) { int a, b, c, d; cin >> a >> b >> c >> d; for (auto j = a+c; j <= C; j++) maxa(dp[j], dp[j-a-c]+b+d); ll nxt[MV]; copy(dp, dp+MV, nxt); for (auto j = a; j <= C; j++) maxa(nxt[j], dp[j-a]+b); for (auto j = c; j <= C; j++) maxa(nxt[j], dp[j-c]+d); copy(nxt, nxt+MV, dp); } cout << (dp[C]) << '\n'; return 0; }
[ "moses@mosesxu.net" ]
moses@mosesxu.net
6d5966ca4db8b21edd2674af44b3e073317cc8a2
39c806e8c6e684d6c43d21007b0eb2997184fc58
/ChatApplication-Group1/BlockingQueue.h
28d55bf301c03bf97cde0a7ff69f2da36ae529fb
[]
no_license
pepijndevos/ad-hoc-chat
20dae6af6a318b57441da0a7fa4899b1ef192f82
d950d42bf7cc3180d0a2beaab0128e3b798031e5
refs/heads/master
2021-01-19T09:03:40.716127
2017-04-20T11:39:35
2017-04-20T11:39:35
87,719,346
0
4
null
2017-04-18T08:15:29
2017-04-09T15:41:05
C++
UTF-8
C++
false
false
1,174
h
#ifndef __BLOCKING_QUEUE_H__ #define __BLOCKING_QUEUE_H__ #include <queue> #include <thread> #include <string> #include <list> #include <iostream> using namespace std; template<class T> class BlockingQueue { private: queue<T> theQueue; pthread_mutex_t mutex_queue; pthread_cond_t cond; public: BlockingQueue(){ pthread_mutex_init(&mutex_queue, NULL); pthread_cond_init(&cond, NULL); } T pop() { //cout << "POP - locking mutex" << endl; pthread_mutex_lock(&mutex_queue); if (theQueue.empty()) { //we need to wait if there is nothing in the queue! //cout << "POP - waiting..." << endl; pthread_cond_wait(&cond, &mutex_queue); } //cout << "POP - reading front" << endl; T ret = theQueue.front(); theQueue.pop(); //cout << "POP - unlocking mutex" << endl; pthread_mutex_unlock(&mutex_queue); return ret; } void push(T object) { pthread_mutex_lock(&mutex_queue); theQueue.push(object); //cout << "PUSH - Queue length: " << theQueue.size() << endl; //cout << "PUSH - unlocking mutex" << endl; pthread_mutex_unlock(&mutex_queue); //cout << "PUSH - signaling unlock" << endl; pthread_cond_signal(&cond); } }; #endif
[ "e.j.knol-1@student.utwente.nl" ]
e.j.knol-1@student.utwente.nl
27a80deebc19e3e805dc6ed2618fcf4d7726e13b
1c0d83de7383446eeec3e8b3fc14a6966702014f
/第七次/新建文件夹/server/03/tcp_server3-1.cpp
6d47396e56ebba9a5e51d502e6b8c51c472539c8
[]
no_license
Nevertorlate/shenjianhomework
fb27bb64e46087e8b7c4f213374366ca32eb8759
6e4dc5bb97c235638368d29d5e298b791df80af4
refs/heads/master
2020-03-30T00:10:32.906705
2018-11-26T08:24:33
2018-11-26T08:24:33
150,508,948
3
0
null
null
null
null
GB18030
C++
false
false
2,727
cpp
#include <iostream> #include <sys/types.h> #include <sys/socket.h> #include <stdio.h> #include <errno.h> #include <netinet/in.h> #include <arpa/inet.h> #include <unistd.h> #include <string.h> #include <stdlib.h> #include <fcntl.h> #include <sys/shm.h> #include <arpa/inet.h> #include <time.h> #include <signal.h> using namespace std; int counter; int return_connection; char buffer[100];//缓冲区内容 char buffer_temp[10];//发送字节存储 void SendLarge(int signo) { send(return_connection, buffer_temp, sizeof(buffer_temp), MSG_DONTWAIT); cout << "send内容为:"; int i; for (i = 0; i < sizeof(buffer_temp); i++) { cout << buffer_temp[i]; } cout << endl; alarm(1); } int main(int argc, char* argv[]) { int ip_sersock = socket(AF_INET, SOCK_STREAM, 0); int flg_async1; int flg_async2; int flg_en = 1; int linkplace = atoi(argv[1]); socklen_t recv_len; struct sockaddr_in ip_cli; struct sockaddr_in ip_ser; if (setsockopt(ip_sersock, SOL_SOCKET, SO_REUSEADDR, &flg_en, sizeof(int)) < 0) { perror("setsockopt(SO_REUSEADDR) failed"); } ip_ser.sin_family = AF_INET; ip_ser.sin_port = htons(linkplace); ip_ser.sin_addr.s_addr = htonl(INADDR_ANY); if (signal(SIGALRM, SendLarge) == SIG_ERR) { perror("signal"); return 0; } setbuf(stdout, NULL); flg_async1 = fcntl(ip_sersock, F_GETFL, 0); fcntl(ip_sersock, F_SETFL, flg_async1 | O_NONBLOCK); if (bind(ip_sersock, (struct sockaddr *)&ip_ser, sizeof(ip_ser)) == -1) { perror("bind"); exit(1); } printf("bind成功\n"); if (listen(ip_sersock, 20) == -1) { perror("listen"); exit(1); } printf("listen成功\n"); for (counter = 0; counter < 10; counter++) { buffer_temp[counter] = rand() % 25 + 'a'; } recv_len = sizeof(ip_cli); fd_set fdR; FD_ZERO(&fdR); FD_SET(ip_sersock, &fdR); switch (select(ip_sersock + 1, &fdR, NULL, NULL, NULL)) { case -1: perror("select"); break; case 0: sleep(1); printf("与服务端连接超时\n"); break; default: return_connection = accept(ip_sersock, (struct sockaddr*)&ip_cli, &recv_len); } cout << "与服务端连接成功!" << endl; flg_async2 = fcntl(return_connection, F_GETFL, 0); fcntl(return_connection, F_SETFL, flg_async2 | O_NONBLOCK); alarm(1); while (1) { FD_ZERO(&fdR); FD_SET(return_connection, &fdR); switch (select(return_connection + 1, &fdR, NULL, NULL, NULL)) { case 0: break; default: memset(buffer, 0, sizeof(buffer)); int len = recv(return_connection, buffer, sizeof(buffer), MSG_DONTWAIT); if (len > 0) { cout << "recv内容为:"; for (counter = 0; counter < len; counter++) { cout << buffer[counter]; } cout << endl; } } } close(return_connection); close(ip_sersock); return 0; }
[ "noreply@github.com" ]
Nevertorlate.noreply@github.com
e6b2bcab14e9260b560da987a9b0b5022d46f319
df9bafdd24baffb9b4772b22770859d4140ab0f6
/Source/Utility/ResourceManager.cpp
d61700cf88e2625909a8d7758c33f4c388b47648
[ "MIT" ]
permissive
marukrap/TinyRogue
7240838e5c0e6968fd28b7ab845d0b5fc1dbbf8d
0b20e82d9c4d15f7572515b80972eddf5a90a42b
refs/heads/master
2023-06-25T08:48:18.487741
2021-07-18T05:59:43
2021-07-18T05:59:43
112,774,709
14
1
null
null
null
null
UTF-8
C++
false
false
1,491
cpp
#include "ResourceManager.hpp" #include <stdexcept> // runtime_error #include <cassert> void ResourceManager::loadFont(FontID id, const std::string& filename) { auto font = std::make_unique<sf::Font>(); if (!font->loadFromFile(filename)) throw std::runtime_error("ResourceManager::loadFont - Failed to load " + filename); fonts[id] = std::move(font); } sf::Font& ResourceManager::getFont(FontID id) { auto found = fonts.find(id); assert(found != fonts.end()); return *found->second; } void ResourceManager::loadShader(ShaderID id, const std::string& vertexShader, const std::string& fragmentShader) { auto shader = std::make_unique<sf::Shader>(); if (!shader->loadFromFile(vertexShader, fragmentShader)) throw std::runtime_error("ResourceManager::loadShader - Failed to load " + vertexShader); shaders[id] = std::move(shader); } sf::Shader& ResourceManager::getShader(ShaderID id) { auto found = shaders.find(id); assert(found != shaders.end()); return *found->second; } void ResourceManager::loadSound(SoundID id, const std::string& filename) { auto sound = std::make_unique<sf::SoundBuffer>(); if (!sound->loadFromFile(filename)) throw std::runtime_error("ResourceManager::loadSound - Failed to load " + filename); sounds[id] = std::move(sound); } sf::SoundBuffer& ResourceManager::getSound(SoundID id) { auto found = sounds.find(id); assert(found != sounds.end()); return *found->second; }
[ "marukrap@gmail.com" ]
marukrap@gmail.com
ecd73cce3664a3e99a5a2bd9be8bb2bdf79f60c9
87aba51b1f708b47d78b5c4180baf731d752e26d
/Replication/DataFileSystem/PRODUCT_SOURCE_CODE/itk/Modules/Core/Common/test/itkQuadrilateralCellTest.cxx
b2aa166f6f4583efe653fdbb42d023de6daa0a87
[]
no_license
jstavr/Architecture-Relation-Evaluator
12c225941e9a4942e83eb6d78f778c3cf5275363
c63c056ee6737a3d90fac628f2bc50b85c6bd0dc
refs/heads/master
2020-12-31T05:10:08.774893
2016-05-14T16:09:40
2016-05-14T16:09:40
58,766,508
0
0
null
null
null
null
UTF-8
C++
false
false
11,870
cxx
/*========================================================================= * * Copyright Insight Software Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #include "itkMesh.h" #include "itkQuadrilateralCell.h" #include <iostream> int itkQuadrilateralCellTest(int, char* [] ) { /** * Define a mesh type that stores a PixelType of "int". Use the defaults for * the other template parameters. */ typedef itk::Mesh<int> MeshType; typedef MeshType::CellTraits CellTraits; /** * Define a few cell types which uses a PixelType of "int". Again, * use the defaults for the other parameters. Note that a cell's template * parameters must match those of the mesh into which it is inserted. */ typedef itk::CellInterface< int, CellTraits > CellInterfaceType; typedef itk::QuadrilateralCell<CellInterfaceType> QuadrilateralCellType; class QuadrilateralHelper : public QuadrilateralCellType { typedef QuadrilateralCellType Superclass; typedef Superclass::CoordRepType CoordRepType; typedef Superclass::PointsContainer PointsContainer; typedef Superclass::InterpolationWeightType InterpolationWeightType; public: bool EvaluatePosition(CoordRepType* inputPoint, PointsContainer* points, CoordRepType* closestPoint, CoordRepType pcoord [], double * distance, InterpolationWeightType* weights) { return this->Superclass::EvaluatePosition( inputPoint, points, closestPoint, pcoord, distance, weights ); } }; /** * Typedef the generic cell type for the mesh. It is an abstract class, * so we can only use information from it, like get its pointer type. */ typedef MeshType::CellType CellType; typedef CellType::CellAutoPointer CellAutoPointer; /** * The type of point stored in the mesh. Because mesh was instantiated * with defaults (itkDefaultStaticMeshTraits), the point dimension is 3 and * the coordinate representation is float. */ typedef MeshType::PointType PointType; /** * Create the mesh through its object factory. */ MeshType::Pointer mesh = MeshType::New(); mesh->DebugOn(); const unsigned int numberOfPoints = 6; /** * Define the 3D geometric positions for 6 points in two neighbouring squares. */ const unsigned int Dimension = 3; // Test points are on a plane at an angle (3^2 + 4^2 = 5^2) with xy plane MeshType::CoordRepType testPointCoords[numberOfPoints][Dimension] = { {0,0,0}, {10,0,0}, {0,8,6}, {10,8,6}, {0,16,12}, {10,16,12} }; /** * Add our test points to the mesh. * mesh->SetPoint(pointId, point) * Note that the constructor for Point is public, and takes an array * of coordinates for the point. */ for(unsigned int i=0; i < numberOfPoints; ++i) { mesh->SetPoint(i, PointType( testPointCoords[i] ) ); } /** * Specify the method used for allocating cells */ mesh->SetCellsAllocationMethod( MeshType::CellsAllocatedDynamicallyCellByCell ); /** * Create the test cell. Note that testCell is a generic auto * pointer to a cell; in this example it ends up pointing to * different types of cells. */ CellAutoPointer testCell1, testCell2; testCell1.TakeOwnership( new QuadrilateralHelper ); // polymorphism testCell2.TakeOwnership( new QuadrilateralHelper ); // polymorphism // List the points that the polygon will use from the mesh. MeshType::PointIdentifier polygon1Points1[4] = {1,3,2,0}; MeshType::PointIdentifier polygon2Points1[4] = {3,5,4,2}; // Assign the points to the tetrahedron through their identifiers. testCell1->SetPointIds(polygon1Points1); testCell2->SetPointIds(polygon2Points1); /** * Add the test cell to the mesh. * mesh->SetCell(cellId, cell) */ mesh->SetCell(0, testCell1 ); // Transfer ownership to the mesh mesh->SetCell(1, testCell2 ); // Transfer ownership to the mesh std::cout << "QuadrilateralCell pointer = " << (void const *)testCell1.GetPointer() << std::endl; std::cout << "QuadrilateralCell Owner = " << testCell1.IsOwner() << std::endl; { std::cout << "Test MakeCopy" << std::endl; CellAutoPointer anotherCell; testCell1->MakeCopy( anotherCell ); if( anotherCell->GetNumberOfPoints() != testCell1->GetNumberOfPoints() ) { std::cerr << "Make Copy failed !" << std::endl; return EXIT_FAILURE; } } // // Test the EvaluatePosition() method of the QuadrilateralCell // QuadrilateralCellType::CoordRepType inputPoint[3]; QuadrilateralCellType::PointsContainer * points = mesh->GetPoints(); QuadrilateralCellType::CoordRepType closestPoint[3]; QuadrilateralCellType::CoordRepType pcoords[2]; // Quadrilateral has 2 parametric coordinates double distance; QuadrilateralCellType::InterpolationWeightType weights[4]; const double toleance = 1e-5; bool isInside; // Test 1: point on quad1 inputPoint[0] = 4.0; inputPoint[1] = 4.0; inputPoint[2] = 3.0; // point on plane std::cout << "Calling EvaluatePosition for Quad1 with "; std::cout << inputPoint[0] << ", "; std::cout << inputPoint[1] << ", "; std::cout << inputPoint[2] << std::endl; isInside = testCell1->EvaluatePosition(inputPoint, points, closestPoint, pcoords , &distance, weights); if( !isInside ) { std::cerr << "Error: point should be reported as being inside" << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( pcoords[0] - 0.5 ) > toleance ) || ( vnl_math_abs( pcoords[1] - 0.6 ) > toleance ) ) { std::cerr << "Error: pcoords computed incorrectly" << std::endl; std::cerr << "pcoords[0] = " << pcoords[0] << std::endl; std::cerr << "pcoords[1] = " << pcoords[1] << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( weights[0] - 0.2 ) > toleance ) || ( vnl_math_abs( weights[1] - 0.2 ) > toleance ) || ( vnl_math_abs( weights[2] - 0.3 ) > toleance ) || ( vnl_math_abs( weights[3] - 0.3 ) > toleance ) ) { std::cerr << "Error: weights computed incorrectly" << std::endl; std::cerr << "weights[0] = " << weights[0] << std::endl; std::cerr << "weights[1] = " << weights[1] << std::endl; std::cerr << "weights[2] = " << weights[2] << std::endl; std::cerr << "weights[3] = " << weights[3] << std::endl; return EXIT_FAILURE; } // Test 2: point outside quad2 std::cout << "Calling EvaluatePosition for Quad2 with "; std::cout << inputPoint[0] << ", "; std::cout << inputPoint[1] << ", "; std::cout << inputPoint[2] << std::endl; isInside = testCell2->EvaluatePosition(inputPoint, points, closestPoint, pcoords, &distance, weights); if( isInside ) { std::cerr << "Error: point should be reported as being outside" << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( pcoords[0] + 0.5 ) > toleance ) || ( vnl_math_abs( pcoords[1] - 0.6 ) > toleance ) ) { std::cerr << "Error: pcoords computed incorrectly" << std::endl; std::cerr << "pcoords[0] = " << pcoords[0] << std::endl; std::cerr << "pcoords[1] = " << pcoords[1] << std::endl; return EXIT_FAILURE; } // Test 3: point outside quad1 inputPoint[0] = 4.0; inputPoint[1] = 12.0; inputPoint[2] = 9.0; // point on plane std::cout << "Calling EvaluatePosition for Quad1 with "; std::cout << inputPoint[0] << ", "; std::cout << inputPoint[1] << ", "; std::cout << inputPoint[2] << std::endl; isInside = testCell1->EvaluatePosition(inputPoint, points, closestPoint, pcoords, &distance, weights); if( isInside ) { std::cerr << "Error: point should be reported as being outside" << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( pcoords[0] - 1.5 ) > toleance ) || ( vnl_math_abs( pcoords[1] - 0.6 ) > toleance ) ) { std::cerr << "Error: pcoords computed incorrectly" << std::endl; std::cerr << "pcoords[0] = " << pcoords[0] << std::endl; std::cerr << "pcoords[1] = " << pcoords[1] << std::endl; return EXIT_FAILURE; } // // NOTE: Outside points don't get their weights computed. // // Test 4: point in quad2 std::cout << "Calling EvaluatePosition for Quad2 with "; std::cout << inputPoint[0] << ", "; std::cout << inputPoint[1] << ", "; std::cout << inputPoint[2] << std::endl; isInside = testCell2->EvaluatePosition(inputPoint, points, closestPoint, pcoords, &distance, weights); if( !isInside ) { std::cerr << "Error: point should be reported as being inside" << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( pcoords[0] - 0.5 ) > toleance ) || ( vnl_math_abs( pcoords[1] - 0.6 ) > toleance ) ) { std::cerr << "Error: pcoords computed incorrectly" << std::endl; std::cerr << "pcoords[0] = " << pcoords[0] << std::endl; std::cerr << "pcoords[1] = " << pcoords[1] << std::endl; return EXIT_FAILURE; } if( ( vnl_math_abs( weights[0] - 0.2 ) > toleance ) || ( vnl_math_abs( weights[1] - 0.2 ) > toleance ) || ( vnl_math_abs( weights[2] - 0.3 ) > toleance ) || ( vnl_math_abs( weights[3] - 0.3 ) > toleance ) ) { std::cerr << "Error: weights computed incorrectly" << std::endl; std::cerr << "weights[0] = " << weights[0] << std::endl; std::cerr << "weights[1] = " << weights[1] << std::endl; std::cerr << "weights[2] = " << weights[2] << std::endl; std::cerr << "weights[3] = " << weights[3] << std::endl; return EXIT_FAILURE; } // Test 5: point off of quad1 inputPoint[0] = 7.0; inputPoint[1] = 5.0; inputPoint[2] = 0.0; // point off the plane std::cout << "Calling EvaluatePosition for Quad1 with "; std::cout << inputPoint[0] << ", "; std::cout << inputPoint[1] << ", "; std::cout << inputPoint[2] << std::endl; isInside = testCell1->EvaluatePosition(inputPoint, points, closestPoint, pcoords, &distance, weights); if( !isInside ) // The projection of the point is inside { std::cerr << "Error: point should be reported as being inside" << std::endl; return EXIT_FAILURE; } // With planar assumption, this off-plane point should give: pcoords[0] = 0.625 // With proper projection on quad, it should give: pcoords[0] = 0.4 // FIXME when projection is implemented in itkQuadrilateralCell::EvaluatePosition if( ( vnl_math_abs( pcoords[0] - 0.625 ) > toleance ) || ( vnl_math_abs( pcoords[1] - 0.3 ) > toleance ) ) { std::cerr << "Error: pcoords computed incorrectly" << std::endl; std::cerr << "pcoords[0] = " << pcoords[0] << std::endl; std::cerr << "pcoords[1] = " << pcoords[1] << std::endl; return EXIT_FAILURE; } // TODO: test returned closestPoint and distance as well return EXIT_SUCCESS; }
[ "jstavr2@gmail.com" ]
jstavr2@gmail.com
b4a7251eda4de9c71d272808ec60b9602f21f410
dfc8edc3a1c832961bb9a7041bad55b25c5ea146
/games/spiders/impl/spiders.hpp
106cb7ebc5c5b447a3e6f027b7f070a3eaccdf3a
[ "MIT" ]
permissive
siggame/Joueur.cpp
5f7332e2d8bbd0daac078ed93ca697a74a847435
673fce574ca80fb8f02777e610884a1c9808501d
refs/heads/master
2022-06-05T16:32:09.667029
2022-05-04T15:43:48
2022-05-04T15:43:48
39,783,980
9
21
MIT
2020-11-08T17:06:08
2015-07-27T16:02:44
C++
UTF-8
C++
false
false
1,619
hpp
// DO NOT MODIFY THIS FILE // Never try to directly create an instance of this class, or modify its member variables. // This contains implementation details, written by code, and only useful to code #ifndef GAMES_SPIDERS_HPP #define GAMES_SPIDERS_HPP #include "../../../joueur/src/base_game.hpp" #include "../ai.hpp" #include "../../../joueur/src/any.hpp" // This feels bad, but it should work #include "../game.hpp" /// \cond FALSE namespace cpp_client { namespace spiders { class Spiders : public Game_ { public: Spiders() : Game_{} { instance(this); } virtual std::string get_game_name() const noexcept override { return "Spiders"; } virtual std::unique_ptr<Base_ai> generate_ai() override; virtual std::shared_ptr<Base_object> generate_object(const std::string& type) override; virtual std::unordered_map<std::string, std::shared_ptr<Base_object>>& get_objects() override { return variables_["gameObjects"].as<std::unordered_map<std::string, std::shared_ptr<Base_object>>>(); } //this is kind of a messy way of handling this - but it's probably the best that //can be done static Base_game* instance(Base_game* init = nullptr) { static Base_game* the_game = init; if(!the_game) { throw Unknown_error("Spiders instance is nullptr(??\?)"); } else if(the_game && init && the_game != init) { throw Unknown_error("Spiders created twice(??\?)"); } return the_game; } }; } // spiders } // cpp_client /// \endcond #endif // GAMES_SPIDERS_HPP
[ "jacob.t.fischer@gmail.com" ]
jacob.t.fischer@gmail.com
f0a461b4004474147f0b1aef0bf17f7e49a44314
da5f8e8c424a7846c9f271029eb22e31f8f70b11
/2DUi/VanillaSetupGL-Ground/Vanilla/ImageSprite.cpp
98499d89b1e4f079a47d8ac29cc2796ad20bd4a6
[]
no_license
ycb577114589/openGL_Basic
858ba1eb1049dc93feafb93aa9760f0a6dc71fe6
b761248776651865136d74d10bcc43e9043d3a47
refs/heads/master
2021-01-01T17:51:33.695894
2017-07-24T10:22:55
2017-07-24T10:22:55
98,169,513
0
0
null
null
null
null
UTF-8
C++
false
false
868
cpp
#include "ImageSprite.h" void ImageSprite::SetTexture(Texture *texture) { mTexture = texture; } void ImageSprite::SetRect(float x, float y, float width, float height) { float halfWidth = width / 2.0f; float halfHeight = height / 2.0f; mMesh[0].x = x - halfWidth; mMesh[0].y = y - halfHeight; mMesh[1].x = x + halfWidth; mMesh[1].y = y - halfHeight; mMesh[2].x = x + halfWidth; mMesh[2].y = y + halfHeight; mMesh[3].x = x - halfWidth; mMesh[3].y = y + halfHeight; } void ImageSprite::Draw() { glEnable(GL_TEXTURE_2D); glPushMatrix(); glBindTexture(GL_TEXTURE_2D, mTexture->mTextureID); glBegin(GL_QUADS); glTexCoord2f(0.0f, 0.0f); glVertex3fv(mMesh[0].v); glTexCoord2f(1.0f, 0.0f); glVertex3fv(mMesh[1].v); glTexCoord2f(1.0f, 1.0f); glVertex3fv(mMesh[2].v); glTexCoord2f(0.0f, 1.0f); glVertex3fv(mMesh[3].v); glEnd(); glPopMatrix(); }
[ "577114589@qq.com" ]
577114589@qq.com
c390233b1ee8f4d13770ca02d8e3469228bd4dc8
2c7187c6cdba4e467883571f13107695d69c149f
/include/server/RestMethods.h
5f20d2b5ec28dbb41fa48ff234045fe1a96af6b3
[]
no_license
redtail5144/IssueTracking
04fa895b2bec12802d1decb54519a78e0ed42048
296f3f8548b8ac1b583612e2ecb2356e2a190218
refs/heads/master
2020-09-23T13:29:14.749537
2019-12-03T02:23:46
2019-12-03T02:23:46
225,511,815
0
0
null
null
null
null
UTF-8
C++
false
false
4,239
h
/****************************** * @date 2019-10 * @author Matthew Wilbern * @author Kyler Fisher * @author Austin Campbell */ #ifndef RESTMETHODS_H #define RESTMETHODS_H #include <restbed> #include <nlohmann/json.hpp> #include <memory> #include <stdexcept> #include "RestMethods.h" using nlohmann::json; //*************************************************************** // // REST HELPER METHOD(S) // //*************************************************************** /** * Helper function that shifts values in json object. Called after removing * an item from json object to avoid empty records (gaps) in the structure. * @param json object and ID, the integer position of the deleted item. */ bool upShift(json* j, int ID); //*************************************************************** // // REST ERROR METHOD(S) // //*************************************************************** /** * The designated error handler for the service. * @param exc The exception raised * @param session The request session. */ void error_handler(const int a, const std::exception& exc, const std::shared_ptr<restbed::Session>& session); //*************************************************************** // // REST ISSUE METHOD(S) // //*************************************************************** /** * Handle a POST request to create a new issue. * @param session The request session. */ void issue_post_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a POST request to create a new issue. * @param session The request session. */ void issue_put_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a PUT request to update an issue. * @param session The request session. */ void issue_delete_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handles a OPTIONS request; used to enable PUT updates for issues. * @param session The request session. */ void issue_options_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a GET request to retrieve an existing issue. * @param session The request session. */ void issue_get_method_handler( const std::shared_ptr<restbed::Session>& session); //*************************************************************** // // REST USER METHOD(S) // //*************************************************************** /** * Handle a POST request to create a new user. * @param session The request session. */ void user_post_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a GET request to retrieve an existing user. * @param session The request session. */ void user_get_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a PUT request to update an existing user. * @param session The request session. */ void user_put_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a DELETE request to remove an existing user. * @param session The request session. */ void user_delete_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handles a OPTIONS request; used to enable PUT updates for users. * @param session The request session. */ void user_options_method_handler( const std::shared_ptr<restbed::Session>& session); //*************************************************************** // // REST COMMENT METHOD(S) // //*************************************************************** /** * Handle a POST request to add a comment. * @param session The request session. */ void comment_post_method_handler( const std::shared_ptr<restbed::Session>& session); /** * Handle a GET request to retrieve a comment. * @param session The request session. */ void comment_get_method_handler( const std::shared_ptr<restbed::Session>& session); //*************************************************************** // // OTHER REST SERVICE METHOD(S) // //*************************************************************** /** * Passed as the ready handler for the service; when the service is ready, * "Service started" is put to the console. */ void service_ready_handler(const restbed::Service& a); #endif // RESTMETHODS_H
[ "noreply@github.com" ]
redtail5144.noreply@github.com