blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
ed13f3f85efef0ecf023ee581c6ee1996ac4c689
ab02ffd659608be208d039d6aae47149520e9790
/node_modules/react-native-camera/windows/ReactNativeCameraCPP/ReactCameraViewManager.cpp
cd0c2ab3d78cbef4414a310eb43d0c0131f40826
[ "Apache-2.0", "MIT", "BSD-3-Clause" ]
permissive
shreya-sridhar/FreightAppFrontend
ac63c3ecdfc22672dc6e14cd4efb5e354f38dc90
61e0e21481813393b60014151f354e5a6c86f512
refs/heads/main
2023-06-09T20:59:59.191928
2021-07-05T21:37:47
2021-07-05T21:37:47
342,120,546
2
0
null
null
null
null
UTF-8
C++
false
false
8,508
cpp
#include "pch.h" #include "ReactCameraConstants.h" #include "ReactCameraViewManager.h" #include <iomanip> namespace winrt { using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Media; using namespace Windows::UI::Xaml::Controls; using namespace Windows::Devices::Enumeration; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::Media::MediaProperties; using namespace Windows::Storage; using namespace Windows::Storage::Streams; using namespace Microsoft::ReactNative; } // namespace winrt namespace winrt::ReactNativeCameraCPP::implementation { // static vector to contain all currently active camera view instances // This is a temporary workaround to map the view tag to view instance, since // Method call from ReactCameraModule constains view tag as parameter and we need // to forward the call to CameraView instance. std::vector<winrt::com_ptr<ReactNativeCameraCPP::ReactCameraView>> ReactCameraViewManager::m_cameraViewInstances; ReactCameraViewManager::ReactCameraViewManager() {} // IViewManager hstring ReactCameraViewManager::Name() noexcept { return L"RNCamera"; } FrameworkElement ReactCameraViewManager::CreateView() noexcept { auto const &view = ReactNativeCameraCPP::ReactCameraView::Create(); view->SetContext(m_reactContext); m_cameraViewInstances.emplace_back(view); return view.as<winrt::Grid>(); } // IViewManagerWithReactContext IReactContext ReactCameraViewManager::ReactContext() noexcept { return m_reactContext; } void ReactCameraViewManager::ReactContext(IReactContext reactContext) noexcept { m_reactContext = reactContext; } // IViewManagerWithNativeProperties IMapView<hstring, ViewManagerPropertyType> ReactCameraViewManager::NativeProps() noexcept { auto nativeProps = winrt::single_threaded_map<hstring, ViewManagerPropertyType>(); nativeProps.Insert(L"aspect", ViewManagerPropertyType::Number); nativeProps.Insert(L"type", ViewManagerPropertyType::Number); nativeProps.Insert(L"cameraId", ViewManagerPropertyType::String); nativeProps.Insert(L"autoFocus", ViewManagerPropertyType::Boolean); nativeProps.Insert(L"whiteBalance", ViewManagerPropertyType::Number); nativeProps.Insert(L"torchMode", ViewManagerPropertyType::Number); nativeProps.Insert(L"flashMode", ViewManagerPropertyType::Number); nativeProps.Insert(L"barCodeScannerEnabled", ViewManagerPropertyType::Boolean); nativeProps.Insert(L"barCodeTypes", ViewManagerPropertyType::Array); nativeProps.Insert(L"barCodeReadIntervalMS", ViewManagerPropertyType::Number); nativeProps.Insert(L"keepAwake", ViewManagerPropertyType::Boolean); nativeProps.Insert(L"mirrorVideo", ViewManagerPropertyType::Boolean); nativeProps.Insert(L"defaultVideoQuality", ViewManagerPropertyType::Number); return nativeProps.GetView(); } void ReactCameraViewManager::UpdateProperties( FrameworkElement const &view, IJSValueReader const &propertyMapReader) noexcept { if (auto reactCameraView = view.try_as<ReactNativeCameraCPP::ReactCameraView>()) { reactCameraView->UpdateProperties(propertyMapReader); } } // IViewManagerWithExportedEventTypeConstants ConstantProviderDelegate ReactCameraViewManager::ExportedCustomBubblingEventTypeConstants() noexcept { return nullptr; } ConstantProviderDelegate ReactCameraViewManager::ExportedCustomDirectEventTypeConstants() noexcept { return [](winrt::Microsoft::ReactNative::IJSValueWriter const &constantWriter) { constantWriter.WritePropertyName(BarcodeReadEvent); constantWriter.WriteObjectBegin(); WriteProperty(constantWriter, L"registrationName", BarcodeReadEvent); constantWriter.WriteObjectEnd(); }; } void ReactCameraViewManager::RemoveViewFromList(winrt::com_ptr<ReactNativeCameraCPP::ReactCameraView> view) { auto it = std::find(m_cameraViewInstances.begin(), m_cameraViewInstances.end(), view); if (it != m_cameraViewInstances.end()) m_cameraViewInstances.erase(it); } IAsyncAction ReactCameraViewManager::TakePictureAsync( JSValueObject const &options, int viewTag, ReactPromise<JSValueObject> const &result) noexcept { auto capturedPromise = result; auto capturedOptions = options.Copy(); auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->TakePictureAsync(capturedOptions, capturedPromise); } else { capturedPromise.Reject("No camera instance found."); } } IAsyncAction ReactCameraViewManager::RecordAsync( JSValueObject const &options, int viewTag, ReactPromise<JSValueObject> const &result) noexcept { auto capturedPromise = result; auto capturedOptions = options.Copy(); auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->RecordAsync(capturedOptions, capturedPromise); } else { capturedPromise.Reject("No camera instance found."); } } IAsyncAction ReactCameraViewManager::StopRecordAsync(int viewTag) noexcept { auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->StopRecordAsync(); } } IAsyncAction ReactCameraViewManager::IsRecordingAsync( int viewTag, winrt::Microsoft::ReactNative::ReactPromise<bool> const &result) noexcept { auto capturedPromise = result; auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->IsRecordingAsync(capturedPromise); } else { capturedPromise.Reject("No camera instance found."); } } IAsyncAction ReactCameraViewManager::PausePreviewAsync(int viewTag) noexcept { auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->PausePreviewAsync(); } } IAsyncAction ReactCameraViewManager::ResumePreviewAsync(int viewTag) noexcept { auto index = co_await FindCamera(viewTag); if (index != -1) { auto cameraView = m_cameraViewInstances.at(index); co_await cameraView->ResumePreviewAsync(); } } // Intialize MediaCapture and will bring up the constent dialog if this // is the first time. RNC will display a progress indicator while waiting // for user click. This method will resolve as no permission if user does // not grant the permission or App does not have the appx capabilities for // Microphone and WebCam specified in its Package.Appxmanifest. IAsyncAction ReactCameraViewManager::CheckMediaCapturePermissionAsync( winrt::Microsoft::ReactNative::ReactPromise<bool> const &result) noexcept { auto capturedPromise = result; auto mediaCapture = winrt::Windows::Media::Capture::MediaCapture(); bool hasPermission = true; try { co_await mediaCapture.InitializeAsync(); } catch (winrt::hresult_error const &) { hasPermission = false; } capturedPromise.Resolve(hasPermission); } winrt::IAsyncAction ReactCameraViewManager::GetCameraIdsAsync( winrt::ReactPromise<winrt::JSValueArray> const &result) noexcept { auto capturedPromise = result; auto allVideoDevices = co_await winrt::DeviceInformation::FindAllAsync(winrt::DeviceClass::VideoCapture); winrt::JSValueArray resultArray; for (auto cameraDeviceInfo : allVideoDevices) { if (cameraDeviceInfo.IsEnabled()) { resultArray.push_back(winrt::JSValueObject{ {"id", winrt::to_string(cameraDeviceInfo.Id())}, {"name", winrt::to_string(cameraDeviceInfo.Name())}, {"type", cameraDeviceInfo.EnclosureLocation() ? static_cast<int>(cameraDeviceInfo.EnclosureLocation().Panel()) : ReactCameraConstants::CameraTypeUnknown}, }); } } capturedPromise.Resolve(resultArray); co_return; } IAsyncOperation<int> ReactCameraViewManager::FindCamera(int viewTag) noexcept { int index = 0; for (const auto &cameraView : m_cameraViewInstances) { auto element = cameraView.as<winrt::Grid>(); auto dispatcher = element.Dispatcher(); co_await resume_foreground(dispatcher); int currentTag = static_cast<int>( element.GetValue(winrt::FrameworkElement::TagProperty()).as<winrt::IPropertyValue>().GetInt64()); if (currentTag == viewTag) { co_return index; } co_await resume_background(); index++; } co_return -1; } } // namespace winrt::ReactNativeCameraCPP::implementation
797444eb6418f29aca2773af354074975c1465c2
66788952e736d602d129362c0c87adf6f71c0100
/C++/reverseArray.cpp
00d3e0200575a1f11054a0b58e75cbf62117fee3
[]
no_license
kaushikboi/Hacktoberfest2021-1
8e9ad82d3ec31b92faafa55e22aa007941ae16c1
6f41600a1ce64ce4e5e05910ff40d3e15ee30dbb
refs/heads/main
2023-08-17T12:40:38.429380
2021-10-04T12:39:12
2021-10-04T12:39:12
413,414,040
1
0
null
2021-10-04T12:34:57
2021-10-04T12:34:56
null
UTF-8
C++
false
false
856
cpp
//Problem statement : Given an array of integers, for example [1,8,9,10,23,2,4,13,17], write a program to reverse the array i.e. o/p should be [17,13,4,2,23,10,9,8,1] // Time Complexity : O(n) (Iterative method) #include <bits/stdc++.h> using namespace std; void reverseArray(int arr[], int start, int end) //Function to reverse the array { while (start < end) { int temp = arr[start]; arr[start] = arr[end]; arr[end] = temp; start++; end--; } } void printArray(int arr[], int size) //Function to print the array { for (int i = 0; i < size; i++) cout << arr[i] << " "; cout << endl; } int main() //Driver code { int n; int arr[n]; cin>>n; for(int i=0;i<n;i++){ cin>>arr[i]; } printArray(arr, n); reverseArray(arr, 0, n-1); cout << "Reversed array is" << endl; printArray(arr, n); return 0; }
d90bb487cc0f6766c9cacbc62bfe00b9708f7e38
a91662f4845fa40a623033e4ad269918b1cdf189
/src_AutoPilotPlugins_PX4_SafetyComponentSummary_qml.cpp
efad1a027cdcfbfd214b3a5394f74da07f206790
[]
no_license
ximiheheda/qgroundcontrol_release
efc8047609861228dd7941708d61650486612b6b
0d46e6c47c14a04123fe1a86c2a0f9b42c740572
refs/heads/main
2023-02-07T04:37:33.802514
2020-12-16T03:36:19
2020-12-16T03:36:19
321,858,098
0
0
null
null
null
null
UTF-8
C++
false
false
43,826
cpp
// /qml/SafetyComponentSummary.qml namespace QmlCacheGeneratedCode { namespace _qml_SafetyComponentSummary_qml { extern const unsigned char qmlData alignas(16) [] = { 0x71,0x76,0x34,0x63,0x64,0x61,0x74,0x61, 0x20,0x0,0x0,0x0,0x6,0xc,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x88,0x26,0x0,0x0,0x31,0x37,0x39,0x63, 0x34,0x62,0x36,0x38,0x39,0x64,0x31,0x61, 0x37,0x62,0x39,0x65,0x39,0x65,0x64,0x62, 0x37,0x31,0x64,0x64,0x66,0x35,0x34,0x35, 0x64,0x63,0x32,0x33,0x37,0x62,0x63,0x61, 0x36,0x37,0x30,0x34,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0, 0x4c,0x0,0x0,0x0,0xf8,0x9,0x0,0x0, 0x18,0x0,0x0,0x0,0xf8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0, 0x39,0x0,0x0,0x0,0x58,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0, 0x1,0x0,0x0,0x0,0x40,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x2,0x0,0x0, 0x8,0x0,0x0,0x0,0x48,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0x1c,0x0,0x0, 0xc8,0x2,0x0,0x0,0x8,0x3,0x0,0x0, 0x58,0x3,0x0,0x0,0xa8,0x3,0x0,0x0, 0xf8,0x3,0x0,0x0,0x48,0x4,0x0,0x0, 0x98,0x4,0x0,0x0,0xe8,0x4,0x0,0x0, 0x38,0x5,0x0,0x0,0x88,0x5,0x0,0x0, 0xc8,0x5,0x0,0x0,0x8,0x6,0x0,0x0, 0x48,0x6,0x0,0x0,0x88,0x6,0x0,0x0, 0xc8,0x6,0x0,0x0,0x10,0x7,0x0,0x0, 0x58,0x7,0x0,0x0,0xb0,0x7,0x0,0x0, 0xf8,0x7,0x0,0x0,0x50,0x8,0x0,0x0, 0xc8,0x8,0x0,0x0,0x18,0x9,0x0,0x0, 0x60,0x9,0x0,0x0,0xb0,0x9,0x0,0x0, 0xf3,0x0,0x0,0x0,0x80,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x33,0x1,0x0,0x0,0x90,0x3,0x0,0x0, 0x53,0x2,0x0,0x0,0x10,0x4,0x0,0x0, 0x23,0x4,0x0,0x0,0x33,0x4,0x0,0x0, 0x83,0x0,0x0,0x0,0x23,0x4,0x0,0x0, 0xf3,0x1,0x0,0x0,0xf3,0x1,0x0,0x0, 0x40,0x4,0x0,0x0,0x13,0x2,0x0,0x0, 0x13,0x2,0x0,0x0,0x40,0x4,0x0,0x0, 0xd3,0x1,0x0,0x0,0xd3,0x1,0x0,0x0, 0x50,0x4,0x0,0x0,0xd3,0x1,0x0,0x0, 0x70,0x4,0x0,0x0,0x33,0x2,0x0,0x0, 0x33,0x2,0x0,0x0,0x40,0x4,0x0,0x0, 0x73,0x1,0x0,0x0,0x73,0x1,0x0,0x0, 0x50,0x4,0x0,0x0,0x73,0x1,0x0,0x0, 0x70,0x4,0x0,0x0,0x73,0x2,0x0,0x0, 0x93,0x4,0x0,0x0,0x73,0x2,0x0,0x0, 0x93,0x4,0x0,0x0,0x93,0x4,0x0,0x0, 0x93,0x1,0x0,0x0,0x50,0x4,0x0,0x0, 0x93,0x1,0x0,0x0,0x70,0x4,0x0,0x0, 0x73,0x2,0x0,0x0,0x73,0x2,0x0,0x0, 0x53,0x2,0x0,0x0,0x70,0x4,0x0,0x0, 0x73,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x80,0x3,0x0, 0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0xc,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0, 0x2e,0x0,0x3a,0x1,0x18,0x6,0x2,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x11,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0, 0x2e,0x2,0x18,0x7,0x14,0x0,0xa,0x12, 0x3a,0x18,0xb,0xa4,0x3,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x12,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0, 0x2e,0x4,0x18,0x7,0x14,0x0,0xa,0x12, 0x3b,0x18,0xb,0xa4,0x5,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x13,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x2e,0x6,0x18,0x7,0x14,0x0,0xa,0x12, 0x3c,0x18,0xb,0xa4,0x7,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x14,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0, 0x2e,0x8,0x18,0x7,0x14,0x0,0xa,0x12, 0x3d,0x18,0xb,0xa4,0x9,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x15,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0, 0x2e,0xa,0x18,0x7,0x14,0x0,0xa,0x12, 0x3e,0x18,0xb,0xa4,0xb,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x16,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x2e,0xc,0x18,0x7,0x14,0x0,0xa,0x12, 0x3f,0x18,0xb,0xa4,0xd,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x17,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0, 0x2e,0xe,0x18,0x7,0x14,0x0,0xa,0x12, 0x40,0x18,0xb,0xa4,0xf,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x18,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x2e,0x10,0x18,0x7,0x14,0x0,0xa,0x12, 0x3c,0x18,0xb,0xa4,0x11,0x7,0x2,0xa, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0x19,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0, 0x2e,0x12,0x3a,0x13,0x18,0x6,0x2,0x0, 0x38,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0xb,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0, 0x2e,0x14,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0xe,0x0,0xe0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0, 0x2e,0x15,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0xf,0x0,0xb0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0, 0x2e,0x16,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0x1c,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0, 0x2e,0x17,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0xf,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0x20,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0, 0x2e,0x18,0x4c,0x6,0x2e,0x19,0x3a,0x1a, 0x48,0x2,0x12,0x0,0x18,0x6,0x2,0x0, 0x38,0x0,0x0,0x0,0xf,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0x25,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0, 0x2e,0x1b,0x4c,0x6,0x2e,0x1c,0x3a,0x1d, 0x48,0x2,0x12,0x0,0x18,0x6,0x2,0x0, 0x38,0x0,0x0,0x0,0x1d,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0, 0x2a,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0, 0x2e,0x1e,0x4c,0x14,0x2e,0x1f,0x3a,0x20, 0x18,0x7,0x12,0x46,0x7a,0x7,0x18,0x8, 0x2e,0x21,0x3a,0x22,0x7a,0x8,0x48,0x2, 0x12,0x0,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0xf,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, 0x2f,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0, 0x2e,0x23,0x4c,0x6,0x2e,0x24,0x3a,0x25, 0x48,0x2,0x12,0x0,0x18,0x6,0x2,0x0, 0x38,0x0,0x0,0x0,0x1d,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0, 0x34,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0, 0x2e,0x26,0x4c,0x14,0x2e,0x27,0x3a,0x28, 0x18,0x7,0x12,0x46,0x7a,0x7,0x18,0x8, 0x2e,0x29,0x3a,0x2a,0x7a,0x8,0x48,0x2, 0x12,0x0,0x18,0x6,0x2,0x0,0x0,0x0, 0x40,0x0,0x0,0x0,0x31,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0, 0x39,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x3d,0x0,0x0,0x0, 0x2e,0x2b,0x18,0x7,0x6,0x66,0x7,0x4c, 0xa,0x12,0x48,0x18,0xa,0xae,0x2c,0x1, 0xa,0x48,0x1b,0x2e,0x2d,0x18,0x8,0x6, 0x62,0x8,0x4c,0xa,0x12,0x4a,0x18,0xb, 0xae,0x2e,0x1,0xb,0x48,0x8,0x12,0x4b, 0x18,0xb,0xae,0x2f,0x1,0xb,0x18,0x6, 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x15,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0, 0x43,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0, 0x2e,0x30,0x3a,0x31,0x18,0x7,0x12,0x46, 0x7a,0x7,0x18,0x8,0x2e,0x32,0x3a,0x33, 0x7a,0x8,0x18,0x6,0x2,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0xa,0x0,0x0,0x0, 0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0, 0x44,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x2e,0x34,0x18,0x7,0x6,0x68,0x7,0x18, 0x6,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0, 0x49,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0, 0x2e,0x35,0x18,0x7,0x12,0x46,0x7a,0x7, 0x18,0x8,0x2e,0x36,0x3a,0x37,0x7a,0x8, 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0, 0x38,0x0,0x0,0x0,0xa,0x0,0x0,0x0, 0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff, 0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0, 0x4a,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0, 0x2e,0x38,0x18,0x7,0x6,0x5e,0x7,0x18, 0x6,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x28,0xb,0x0,0x0,0x48,0xb,0x0,0x0, 0x70,0xb,0x0,0x0,0xb0,0xb,0x0,0x0, 0x0,0xc,0x0,0x0,0x50,0xc,0x0,0x0, 0x98,0xc,0x0,0x0,0xe0,0xc,0x0,0x0, 0x10,0xd,0x0,0x0,0x38,0xd,0x0,0x0, 0x60,0xd,0x0,0x0,0x88,0xd,0x0,0x0, 0xc8,0xd,0x0,0x0,0xf0,0xd,0x0,0x0, 0x38,0xe,0x0,0x0,0x68,0xe,0x0,0x0, 0x90,0xe,0x0,0x0,0xd0,0xe,0x0,0x0, 0x30,0xf,0x0,0x0,0x70,0xf,0x0,0x0, 0xa0,0xf,0x0,0x0,0xd0,0xf,0x0,0x0, 0x20,0x10,0x0,0x0,0x48,0x10,0x0,0x0, 0x80,0x10,0x0,0x0,0xd8,0x10,0x0,0x0, 0x10,0x11,0x0,0x0,0x68,0x11,0x0,0x0, 0xa0,0x11,0x0,0x0,0xf8,0x11,0x0,0x0, 0x30,0x12,0x0,0x0,0x88,0x12,0x0,0x0, 0xc0,0x12,0x0,0x0,0x18,0x13,0x0,0x0, 0x50,0x13,0x0,0x0,0xa0,0x13,0x0,0x0, 0xd8,0x13,0x0,0x0,0x30,0x14,0x0,0x0, 0x70,0x14,0x0,0x0,0xd0,0x14,0x0,0x0, 0x10,0x15,0x0,0x0,0x70,0x15,0x0,0x0, 0x98,0x15,0x0,0x0,0xd8,0x15,0x0,0x0, 0x8,0x16,0x0,0x0,0x50,0x16,0x0,0x0, 0x80,0x16,0x0,0x0,0xd0,0x16,0x0,0x0, 0x10,0x17,0x0,0x0,0x48,0x17,0x0,0x0, 0x90,0x17,0x0,0x0,0xc8,0x17,0x0,0x0, 0xf8,0x17,0x0,0x0,0x28,0x18,0x0,0x0, 0x50,0x18,0x0,0x0,0x98,0x18,0x0,0x0, 0xc8,0x18,0x0,0x0,0x0,0x19,0x0,0x0, 0x40,0x19,0x0,0x0,0x78,0x19,0x0,0x0, 0xb0,0x19,0x0,0x0,0xe8,0x19,0x0,0x0, 0x20,0x1a,0x0,0x0,0x58,0x1a,0x0,0x0, 0x88,0x1a,0x0,0x0,0xb8,0x1a,0x0,0x0, 0xe0,0x1a,0x0,0x0,0x8,0x1b,0x0,0x0, 0x30,0x1b,0x0,0x0,0x68,0x1b,0x0,0x0, 0x98,0x1b,0x0,0x0,0xb8,0x1b,0x0,0x0, 0xe0,0x1b,0x0,0x0,0x20,0x1c,0x0,0x0, 0x48,0x1c,0x0,0x0,0x90,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x74,0x0,0x51,0x0,0x75,0x0, 0x69,0x0,0x63,0x0,0x6b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x74,0x0,0x51,0x0,0x75,0x0, 0x69,0x0,0x63,0x0,0x6b,0x0,0x2e,0x0, 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, 0x72,0x0,0x6f,0x0,0x6c,0x0,0x73,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x47,0x0,0x72,0x0,0x6f,0x0, 0x75,0x0,0x6e,0x0,0x64,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x2e,0x0,0x46,0x0, 0x61,0x0,0x63,0x0,0x74,0x0,0x53,0x0, 0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0, 0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x47,0x0,0x72,0x0,0x6f,0x0, 0x75,0x0,0x6e,0x0,0x64,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x2e,0x0,0x46,0x0, 0x61,0x0,0x63,0x0,0x74,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x73,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x47,0x0,0x72,0x0,0x6f,0x0, 0x75,0x0,0x6e,0x0,0x64,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x2e,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x73,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x47,0x0,0x72,0x0,0x6f,0x0, 0x75,0x0,0x6e,0x0,0x64,0x0,0x43,0x0, 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, 0x6f,0x0,0x6c,0x0,0x2e,0x0,0x50,0x0, 0x61,0x0,0x6c,0x0,0x65,0x0,0x74,0x0, 0x74,0x0,0x65,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x50,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, 0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x70,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, 0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x61,0x0,0x6e,0x0,0x63,0x0,0x68,0x0, 0x6f,0x0,0x72,0x0,0x73,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x66,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0, 0x69,0x0,0x6c,0x0,0x6c,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, 0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0, 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0x0,0x47,0x0,0x43,0x0,0x50,0x0, 0x61,0x0,0x6c,0x0,0x65,0x0,0x74,0x0, 0x74,0x0,0x65,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x71,0x0,0x67,0x0,0x63,0x0,0x50,0x0, 0x61,0x0,0x6c,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, 0x72,0x0,0x47,0x0,0x72,0x0,0x6f,0x0, 0x75,0x0,0x70,0x0,0x45,0x0,0x6e,0x0, 0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x20,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0, 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0, 0x47,0x0,0x72,0x0,0x6f,0x0,0x75,0x0, 0x70,0x0,0x45,0x0,0x6e,0x0,0x61,0x0, 0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x50,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, 0x6c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, 0x6c,0x0,0x65,0x0,0x72,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, 0x65,0x0,0x72,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x50,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, 0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0, 0x61,0x0,0x63,0x0,0x74,0x0,0x50,0x0, 0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x72,0x0,0x65,0x0,0x74,0x0,0x75,0x0, 0x72,0x0,0x6e,0x0,0x41,0x0,0x6c,0x0, 0x74,0x0,0x46,0x0,0x61,0x0,0x63,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x72,0x0, 0x65,0x0,0x74,0x0,0x75,0x0,0x72,0x0, 0x6e,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5f,0x0,0x64,0x0,0x65,0x0,0x73,0x0, 0x63,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, 0x41,0x0,0x6c,0x0,0x74,0x0,0x46,0x0, 0x61,0x0,0x63,0x0,0x74,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x5f,0x0, 0x64,0x0,0x65,0x0,0x73,0x0,0x63,0x0, 0x65,0x0,0x6e,0x0,0x64,0x0,0x41,0x0, 0x6c,0x0,0x74,0x0,0x46,0x0,0x61,0x0, 0x63,0x0,0x74,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6c,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, 0x44,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, 0x79,0x0,0x46,0x0,0x61,0x0,0x63,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, 0x61,0x0,0x6e,0x0,0x64,0x0,0x44,0x0, 0x65,0x0,0x6c,0x0,0x61,0x0,0x79,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0, 0x52,0x0,0x43,0x0,0x4c,0x0,0x6f,0x0, 0x73,0x0,0x73,0x0,0x46,0x0,0x61,0x0, 0x63,0x0,0x74,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0, 0x6f,0x0,0x6d,0x0,0x6d,0x0,0x52,0x0, 0x43,0x0,0x4c,0x0,0x6f,0x0,0x73,0x0, 0x73,0x0,0x46,0x0,0x61,0x0,0x63,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6c,0x0,0x6f,0x0,0x77,0x0,0x42,0x0, 0x61,0x0,0x74,0x0,0x74,0x0,0x41,0x0, 0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, 0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, 0x6f,0x0,0x77,0x0,0x42,0x0,0x61,0x0, 0x74,0x0,0x74,0x0,0x41,0x0,0x63,0x0, 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x72,0x0,0x63,0x0,0x4c,0x0,0x6f,0x0, 0x73,0x0,0x73,0x0,0x41,0x0,0x63,0x0, 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x72,0x0, 0x63,0x0,0x4c,0x0,0x6f,0x0,0x73,0x0, 0x73,0x0,0x41,0x0,0x63,0x0,0x74,0x0, 0x69,0x0,0x6f,0x0,0x6e,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0, 0x4c,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, 0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0, 0x61,0x0,0x74,0x0,0x61,0x0,0x4c,0x0, 0x6f,0x0,0x73,0x0,0x73,0x0,0x41,0x0, 0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, 0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5f,0x0,0x72,0x0,0x74,0x0,0x6c,0x0, 0x4c,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, 0x44,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, 0x79,0x0,0x46,0x0,0x61,0x0,0x63,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x20,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x5f,0x0, 0x72,0x0,0x74,0x0,0x6c,0x0,0x4c,0x0, 0x61,0x0,0x6e,0x0,0x64,0x0,0x44,0x0, 0x65,0x0,0x6c,0x0,0x61,0x0,0x79,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5f,0x0,0x72,0x0,0x74,0x0,0x6c,0x0, 0x4c,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, 0x44,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, 0x79,0x0,0x56,0x0,0x61,0x0,0x6c,0x0, 0x75,0x0,0x65,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x21,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x5f,0x0, 0x72,0x0,0x74,0x0,0x6c,0x0,0x4c,0x0, 0x61,0x0,0x6e,0x0,0x64,0x0,0x44,0x0, 0x65,0x0,0x6c,0x0,0x61,0x0,0x79,0x0, 0x56,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0, 0x6d,0x0,0x6e,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x56,0x0,0x65,0x0,0x68,0x0,0x69,0x0, 0x63,0x0,0x6c,0x0,0x65,0x0,0x53,0x0, 0x75,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0, 0x72,0x0,0x79,0x0,0x52,0x0,0x6f,0x0, 0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6c,0x0,0x61,0x0,0x62,0x0,0x65,0x0, 0x6c,0x0,0x54,0x0,0x65,0x0,0x78,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0, 0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0, 0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0, 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0, 0x73,0x0,0x61,0x0,0x66,0x0,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, 0x65,0x0,0x54,0x0,0x65,0x0,0x78,0x0, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0, 0x61,0x0,0x6c,0x0,0x75,0x0,0x65,0x0, 0x54,0x0,0x65,0x0,0x78,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x43,0x0,0x20,0x0,0x4c,0x0, 0x6f,0x0,0x73,0x0,0x73,0x0,0x20,0x0, 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0, 0x73,0x0,0x61,0x0,0x66,0x0,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x43,0x0,0x20,0x0,0x4c,0x0, 0x6f,0x0,0x73,0x0,0x73,0x0,0x20,0x0, 0x54,0x0,0x69,0x0,0x6d,0x0,0x65,0x0, 0x6f,0x0,0x75,0x0,0x74,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x44,0x0,0x61,0x0,0x74,0x0,0x61,0x0, 0x20,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0, 0x6b,0x0,0x20,0x0,0x4c,0x0,0x6f,0x0, 0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0, 0x61,0x0,0x69,0x0,0x6c,0x0,0x73,0x0, 0x61,0x0,0x66,0x0,0x65,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x54,0x0,0x4c,0x0,0x20,0x0, 0x43,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0, 0x62,0x0,0x20,0x0,0x54,0x0,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x54,0x0,0x4c,0x0,0x2c,0x0, 0x20,0x0,0x54,0x0,0x68,0x0,0x65,0x0, 0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, 0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0, 0x6c,0x0,0x74,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x0,0x69,0x0,0x73,0x0,0x69,0x0, 0x62,0x0,0x6c,0x0,0x65,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x78,0x0,0x70,0x0,0x72,0x0, 0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0, 0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0, 0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0, 0x69,0x0,0x73,0x0,0x69,0x0,0x62,0x0, 0x6c,0x0,0x65,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, 0x20,0x0,0x44,0x0,0x65,0x0,0x6c,0x0, 0x61,0x0,0x79,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, 0x6f,0x0,0x77,0x0,0x53,0x0,0x68,0x0, 0x61,0x0,0x64,0x0,0x65,0x0,0x44,0x0, 0x61,0x0,0x72,0x0,0x6b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x67,0x0,0x65,0x0,0x74,0x0,0x50,0x0, 0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, 0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0, 0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x54,0x0,0x4c,0x0,0x5f,0x0, 0x52,0x0,0x45,0x0,0x54,0x0,0x55,0x0, 0x52,0x0,0x4e,0x0,0x5f,0x0,0x41,0x0, 0x4c,0x0,0x54,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x54,0x0,0x4c,0x0,0x5f,0x0, 0x44,0x0,0x45,0x0,0x53,0x0,0x43,0x0, 0x45,0x0,0x4e,0x0,0x44,0x0,0x5f,0x0, 0x41,0x0,0x4c,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x0,0x54,0x0,0x4c,0x0,0x5f,0x0, 0x4c,0x0,0x41,0x0,0x4e,0x0,0x44,0x0, 0x5f,0x0,0x44,0x0,0x45,0x0,0x4c,0x0, 0x41,0x0,0x59,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x0,0x4f,0x0,0x4d,0x0,0x5f,0x0, 0x52,0x0,0x43,0x0,0x5f,0x0,0x4c,0x0, 0x4f,0x0,0x53,0x0,0x53,0x0,0x5f,0x0, 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x0,0x4f,0x0,0x4d,0x0,0x5f,0x0, 0x4c,0x0,0x4f,0x0,0x57,0x0,0x5f,0x0, 0x42,0x0,0x41,0x0,0x54,0x0,0x5f,0x0, 0x41,0x0,0x43,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x0,0x41,0x0,0x56,0x0,0x5f,0x0, 0x52,0x0,0x43,0x0,0x4c,0x0,0x5f,0x0, 0x41,0x0,0x43,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x0,0x41,0x0,0x56,0x0,0x5f,0x0, 0x44,0x0,0x4c,0x0,0x4c,0x0,0x5f,0x0, 0x41,0x0,0x43,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, 0x6e,0x0,0x74,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, 0x6c,0x0,0x65,0x0,0x64,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0x0,0x6e,0x0,0x75,0x0,0x6d,0x0, 0x53,0x0,0x74,0x0,0x72,0x0,0x69,0x0, 0x6e,0x0,0x67,0x0,0x56,0x0,0x61,0x0, 0x6c,0x0,0x75,0x0,0x65,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, 0x65,0x0,0x53,0x0,0x74,0x0,0x72,0x0, 0x69,0x0,0x6e,0x0,0x67,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, 0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, 0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0, 0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0, 0x74,0x0,0x65,0x0,0x6c,0x0,0x79,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x71,0x0,0x73,0x0,0x54,0x0,0x72,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, 0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0, 0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0, 0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, 0x74,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, 0x6e,0x0,0x64,0x0,0x0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x24,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, 0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0, 0x6e,0x0,0x64,0x0,0x20,0x0,0x6c,0x0, 0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0, 0x61,0x0,0x66,0x0,0x74,0x0,0x65,0x0, 0x72,0x0,0x20,0x0,0x73,0x0,0x70,0x0, 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0, 0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0, 0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6,0x0,0x0,0x0,0x10,0x0,0x0,0x0, 0xe,0x0,0x0,0x0,0xa0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0x3,0x0,0x0,0x0,0x1,0x0,0x10,0x0, 0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2,0x0,0x0,0x0,0x2,0x0,0x10,0x0, 0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x10,0x0, 0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x10,0x0, 0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x10,0x0, 0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x10,0x0, 0xd8,0x0,0x0,0x0,0x0,0x3,0x0,0x0, 0x60,0x3,0x0,0x0,0xc0,0x3,0x0,0x0, 0x20,0x4,0x0,0x0,0x40,0x5,0x0,0x0, 0xa0,0x5,0x0,0x0,0x18,0x6,0x0,0x0, 0x90,0x6,0x0,0x0,0x8,0x7,0x0,0x0, 0x80,0x7,0x0,0x0,0xf8,0x7,0x0,0x0, 0x70,0x8,0x0,0x0,0x0,0x9,0x0,0x0, 0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x9,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x0,0x0,0x0, 0xd4,0x0,0x0,0x0,0x0,0x0,0xe,0x0, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0x2,0x0,0x0,0x9,0x0,0x10,0x0, 0xa,0x0,0x50,0x0,0x17,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x11,0x0,0x50,0x0,0x19,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x12,0x0,0x50,0x0,0x1b,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x13,0x0,0x50,0x0,0x1d,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x14,0x0,0x50,0x0,0x1f,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x15,0x0,0x50,0x0,0x21,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x16,0x0,0x50,0x0,0x23,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x17,0x0,0x50,0x0,0x25,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0, 0x18,0x0,0x50,0x0,0x27,0x0,0x0,0x0, 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x19,0x0,0x50,0x0,0x27,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x50,0x1, 0x19,0x0,0x90,0x2,0x25,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x50,0x1, 0x18,0x0,0x90,0x2,0x23,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x50,0x1, 0x17,0x0,0x90,0x2,0x21,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x50,0x1, 0x16,0x0,0x90,0x2,0x1f,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x50,0x1, 0x15,0x0,0x90,0x2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x50,0x1, 0x14,0x0,0x90,0x2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x50,0x1, 0x13,0x0,0x90,0x2,0x19,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x50,0x1, 0x12,0x0,0x90,0x2,0x17,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x50,0x1, 0x11,0x0,0x90,0x2,0xc,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x50,0x0, 0xc,0x0,0x50,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x50,0x0, 0xe,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x50,0x0, 0xf,0x0,0x50,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x50,0x0, 0x1b,0x0,0x50,0x0,0x9,0x0,0x0,0x0, 0x0,0x0,0x9,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x50,0x0, 0xb,0x0,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0xd0,0x0, 0xb,0x0,0x50,0x1,0x0,0x0,0x0,0x0, 0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xe,0x0,0x50,0x0, 0xe,0x0,0x20,0x1,0x10,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0xe0,0x1, 0xe,0x0,0x10,0x3,0x0,0x0,0x0,0x0, 0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xf,0x0,0x50,0x0, 0xf,0x0,0xb0,0x1,0x14,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0xb0,0x2, 0xf,0x0,0x60,0x3,0x0,0x0,0x0,0x0, 0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x9,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1c,0x1,0x0,0x0,0x1b,0x0,0x50,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x90,0x0, 0x1e,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x90,0x0, 0x23,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x90,0x0, 0x28,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x90,0x0, 0x2d,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x90,0x0, 0x32,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x90,0x0, 0x37,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x90,0x0, 0x41,0x0,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x90,0x0, 0x47,0x0,0x90,0x0,0x9,0x0,0x0,0x0, 0x0,0x0,0x9,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x90,0x0, 0x1c,0x0,0x10,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x10,0x1, 0x1c,0x0,0xd0,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x1e,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0xd0,0x0, 0x20,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0xd0,0x0, 0x1f,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x23,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0xd0,0x0, 0x25,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0xd0,0x0, 0x24,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x28,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0xd0,0x0, 0x2a,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0xd0,0x0, 0x29,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x2d,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0xd0,0x0, 0x2f,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0xd0,0x0, 0x2e,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x32,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0xd0,0x0, 0x34,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0xd0,0x0, 0x33,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x0,0x0,0x0,0x37,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0xd0,0x0, 0x39,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0xd0,0x0, 0x38,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8c,0x0,0x0,0x0,0x41,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x15,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0xd0,0x0, 0x44,0x0,0x90,0x1,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0xd0,0x0, 0x43,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0xd0,0x0, 0x42,0x0,0x80,0x1,0x0,0x0,0x0,0x0, 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8c,0x0,0x0,0x0,0x47,0x0,0x90,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0xd0,0x0, 0x4a,0x0,0x90,0x1,0x2d,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0xd0,0x0, 0x49,0x0,0x80,0x1,0x2b,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0xd0,0x0, 0x48,0x0,0x80,0x1,0x0,0x0,0x0,0x0 }; } }
c6ef5826a732ed1eac859348715c5c9d78c4a127
a7a890e753c6f69e8067d16a8cd94ce8327f80b7
/tserver/main.cpp
8d491b466ff7af8317672b4be1783dbcaddcbdc9
[]
no_license
jbreslin33/breslinservergame
684ca8b97f36e265f30ae65e1a65435b2e7a3d8b
292285f002661c3d9483fb080845564145d47999
refs/heads/master
2021-01-21T13:11:50.223394
2011-03-14T11:33:30
2011-03-14T11:33:30
37,391,245
0
0
null
null
null
null
UTF-8
C++
false
false
6,736
cpp
/******************************************/ /* MMOG programmer's guide */ /* Tutorial game server */ /* Programming: */ /* Teijo Hakala */ /******************************************/ #ifdef WIN32 #ifndef _WINSOCKAPI_ #define _WINSOCKAPI_ #endif #include <windows.h> #endif #include "server.h" #ifdef WIN32 #include <shellapi.h> #else #include <signal.h> #include <syslog.h> #include <errno.h> #include <unistd.h> #include <sys/time.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/wait.h> #include <fcntl.h> #endif #include <string.h> #include <stdlib.h> #include <stdio.h> // WIN32 only #ifdef WIN32 // UNIX only #else int runningDaemon; #endif CArmyWarServer* game; #ifdef WIN32 //----------------------------------------------------------------------------- // Name: empty() // Desc: //----------------------------------------------------------------------------- LRESULT CALLBACK WindowProc(HWND WindowhWnd, UINT Message, WPARAM wParam, LPARAM lParam) { // Process Messages switch(Message) { case WM_CREATE: break; case WM_DESTROY: PostQuitMessage(0); break; default: break; } return DefWindowProc(WindowhWnd, Message, wParam, lParam); } //----------------------------------------------------------------------------- // Name: WinMain() // Desc: Windows app start position //----------------------------------------------------------------------------- int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { WNDCLASS WinClass; WinClass.style = 0; WinClass.lpfnWndProc = WindowProc; WinClass.cbClsExtra = 0; WinClass.cbWndExtra = 0; WinClass.hInstance = hInstance; WinClass.hIcon = LoadIcon(NULL, IDI_APPLICATION); WinClass.hCursor = LoadCursor(NULL, IDC_ARROW); WinClass.hbrBackground = (HBRUSH) (COLOR_MENU); WinClass.lpszMenuName = 0; WinClass.lpszClassName = "WINCLASS1"; if(!RegisterClass(&WinClass)) return 0; HWND hwnd = CreateWindow(WinClass.lpszClassName, "dreamSock server", WS_OVERLAPPEDWINDOW | WS_VISIBLE, 320, 240, 320, 240, NULL, NULL, hInstance, NULL); ShowWindow(hwnd, SW_HIDE); StartLogConsole(); game = new CArmyWarServer; if(game->InitNetwork() != 0) { LogString("Could not create game server"); } MSG WinMsg; bool done = false; int time, oldTime, newTime; // first peek the message without removing it PeekMessage(&WinMsg, hwnd, 0, 0, PM_NOREMOVE); oldTime = dreamSock_GetCurrentSystemTime(); try { while(!done) { while (PeekMessage(&WinMsg, NULL, 0, 0, PM_NOREMOVE)) { if(!GetMessage(&WinMsg, NULL, 0, 0)) { dreamSock_Shutdown(); done = true; } TranslateMessage(&WinMsg); DispatchMessage(&WinMsg); } do { newTime = dreamSock_GetCurrentSystemTime(); time = newTime - oldTime; } while (time < 1); game->Frame(time); oldTime = newTime; } } catch(...) { LogString("Unknown Exception caught in main loop"); dreamSock_Shutdown(); MessageBox(NULL, "Unknown Exception caught in main loop", "Error", MB_OK | MB_TASKMODAL); return -1; } return WinMsg.wParam; } #else //----------------------------------------------------------------------------- // Name: daemonInit() // Desc: Initialize UNIX daemon //----------------------------------------------------------------------------- static int daemonInit(void) { printf("Running daemon...\n\n"); runningDaemon = 1; pid_t pid; if((pid = fork()) < 0) { return -1; } else if(pid != 0) { exit(0); } setsid(); umask(0); close(1); close(2); close(3); return 0; } //----------------------------------------------------------------------------- // Name: keyPress() // Desc: Check for a keypress //----------------------------------------------------------------------------- int keyPress(void) { static char keypressed; struct timeval waittime; int num_chars_read; fd_set mask; // struct fd_set mask; FD_SET(0, &mask); waittime.tv_sec = 0; waittime.tv_usec = 0; if(select(1, &mask, 0, 0, &waittime)) { num_chars_read = read(0, &keypressed, 1); if(num_chars_read == 1) return ((int) keypressed); } return (-1); } //----------------------------------------------------------------------------- // Name: main() // Desc: UNIX app start position //----------------------------------------------------------------------------- int main(int argc, char **argv) { LogString("Welcome to Army War Server v2.0"); LogString("-------------------------------\n"); if(argc > 1) { if(strcmp(argv[1], "-daemon") == 0) { daemonInit(); } } // Ignore the SIGPIPE signal, so the program does not terminate if the // pipe gets broken signal(SIGPIPE, SIG_IGN); //if(Lobby.InitNetwork() == 1) //{ // exit(0); // } //if(Signin.InitNetwork() == 1) //{ // exit(0); //} game = new CArmyWarServer; if(game->InitNetwork() != 0) { LogString("Could not create game server"); } LogString("Init successful"); int time, oldTime, newTime; oldTime = dreamSock_GetCurrentSystemTime(); // App main loop try { if(runningDaemon) { // Keep server alive while(1) { do { newTime = dreamSock_GetCurrentSystemTime(); time = newTime - oldTime; } while (time < 1); //Lobby.Frame(time); //Signin.Frame(time); //CArmyWarServer *list = Lobby.GetGameList(); //for( ; list != NULL; list = list->next) //{ // list->Frame(time); //} oldTime = newTime; } } else { // Keep server alive (wait for keypress to kill it) while(keyPress() == -1) { do { newTime = dreamSock_GetCurrentSystemTime(); time = newTime - oldTime; } while (time < 1); //Lobby.Frame(time); //Signin.Frame(time); //CArmyWarServer *list = Lobby.GetGameList(); //for( ; list != NULL; list = list->next) //{ // list->Frame(time); //} game->Frame(time); oldTime = newTime; oldTime = newTime; } } } catch(...) { //Lobby.ShutdownNetwork(); //Signin.ShutdownNetwork(); dreamSock_Shutdown(); LogString("Unknown Exception caught in main loop"); return -1; } LogString("Shutting down everything"); //Lobby.ShutdownNetwork(); //Signin.ShutdownNetwork(); dreamSock_Shutdown(); return 0; } #endif
[ "jbreslin33@localhost" ]
jbreslin33@localhost
e0fe9d4639f4d8bcd215a8fa4fb92c42e18f5850
7ef36e2bbdbd1053a3f108032564f2b8e7050c47
/16208_kutergina-master/16208_kutergina/Prisoners_dilemma/Strategy/Chikatilo.h
c33bf745d1c41877925fb5e49a7d8f1764f6e730
[]
no_license
16208kutergina/16208_kutergina
25fb740e84c04fb5f8a648a0468337ad0e520934
7080bc8df17cf7af11052ebbceaf9a50388c6948
refs/heads/master
2018-12-20T05:06:14.399224
2018-09-10T09:39:00
2018-09-10T09:39:00
148,132,964
0
0
null
null
null
null
UTF-8
C++
false
false
809
h
#ifndef CHIKATILO #define CHIKATILO #include "../strategy.h" #include "../factory.h" #include <vector> class Chikatilo : public Strategy{ std::vector <Steps> stepsOne; std::vector <Steps> stepsTwo; public: Chikatilo() : Strategy("Chikatilo") {} Steps Step(Steps stepOne, Steps stepTwo) override { stepsOne.push_back(stepOne); stepsTwo.push_back(stepTwo); for(int i = 0; i < stepsOne.size(); i++){ if(stepsOne.at(i) == D && stepsTwo.at(i) == D) return D; } return C; } Steps Step() override { return D; } }; Strategy * createCh() { return new Chikatilo; } namespace { bool chikatilo = Factory <Strategy, Strategy*(*)(), std::string>::get_instance()->registr("Chikatilo", createCh); } #endif
f7e6242a5ea948a7de3cb5cad8806869041a36e2
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/windows/oleacc/oleacc/outline.cpp
7968d991b73354b8e429ebdf28af737d752fbdab
[]
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
35,856
cpp
// -------------------------------------------------------------------------- // // OUTLINE.CPP // // Wrapper for COMCTL32's treeview control // // -------------------------------------------------------------------------- #include "oleacc_p.h" #include "default.h" #include "client.h" #include "RemoteProxy6432.h" #include "propmgr_util.h" #define NOSTATUSBAR #define NOUPDOWN #define NOMENUHELP #define NOTRACKBAR #define NODRAGLIST #define NOTOOLBAR #define NOHOTKEY #define NOPROGRESS //#define NOLISTVIEW // INDEXTOSTATEIMAGEMASK needs LISTVIEW #define NOANIMATE #include <commctrl.h> #include "Win64Helper.h" #include "w95trace.h" #include "outline.h" struct MSAASTATEIMAGEMAPENT { DWORD dwRole; DWORD dwState; }; enum { TV_IMGIDX_Image, TV_IMGIDX_State, TV_IMGIDX_Overlay, TV_IMGIDX_COUNT }; BOOL TVGetImageIndex( HWND hwnd, HTREEITEM id, int aKeys[ TV_IMGIDX_COUNT ] ); extern "C" { BOOL GetRoleFromStateImageMap( HWND hwnd, int iImage, DWORD * pdwRole ); BOOL GetStateFromStateImageMap( HWND hwnd, int iImage, DWORD * pdwState ); BOOL GetStateImageMapEnt_SameBitness( HWND hwnd, int iImage, DWORD * pdwState, DWORD * pdwRole ); } // These convert between the DWORD childIDs and HTREEITEMS. // // Pre-win64, HTREEITEMS were cast to DWORDs, but that doesn't work on // Win64 since HTREEITEMS are pointers, and no longer fit into a plain // DWORD. Instead, the treeview supplies messages to map between // an internal DWORD id and HTREEITEMS; these functions wrap that // functionality. HTREEITEM TVItemFromChildID( HWND hwnd, DWORD idChild ); DWORD ChildIDFromTVItem( HWND hwnd, HTREEITEM htvi ); // Template-based shared read/write/alloc // // Notes: // // Read/Write each have two versions; one reads/writes a single item, // the other allows a count to be specified. Count specifies number // of items, not the number of bytes (unless the type is actually byte!). // // Order or arguments is ( dest, souce ) - this is consistent with memcpy, // strcpy and regular assignments (dest = source). // // In TSharedWrite, the source arg is an actual value, not a pointer to one. // (This avoids having to use a dummy variable to contain the value you want // to use.) template< typename T > BOOL TSharedWrite( T * pRemote, const T & Local, HANDLE hProcess ) { return SharedWrite( const_cast< T * >( & Local ), pRemote, sizeof( T ), hProcess ); } template< typename T > BOOL TSharedRead( T * pLocal, const T * pRemote, HANDLE hProcess ) { return SharedRead( const_cast< T * >( pRemote ), pLocal, sizeof( T ), hProcess ); } template< typename T > BOOL TSharedRead( T * pLocal, const T * pRemote, int count, HANDLE hProcess ) { return SharedRead( const_cast< T * >( pRemote ), pLocal, sizeof( T ) * count, hProcess ); } template< typename T > T * TSharedAlloc( HWND hwnd, HANDLE * pProcessHandle ) { return (T *) SharedAlloc( sizeof( T ), hwnd, pProcessHandle ); } template< typename T > T * TSharedAllocExtra( HWND hwnd, HANDLE * pProcessHandle, UINT cbExtra ) { return (T *) SharedAlloc( sizeof( T ) + cbExtra, hwnd, pProcessHandle ); } #define MAX_NAME_SIZE 255 // these are in a newer version of comctl.h #ifndef TVM_GETITEMSTATE #define TVM_GETITEMSTATE (TV_FIRST + 39) #define TreeView_GetItemState(hwndTV, hti, mask) \ (UINT)SNDMSG((hwndTV), TVM_GETITEMSTATE, (WPARAM)hti, (LPARAM)mask) #define TreeView_GetCheckState(hwndTV, hti) \ ((((UINT)(SNDMSG((hwndTV), TVM_GETITEMSTATE, (WPARAM)hti, TVIS_STATEIMAGEMASK))) >> 12) -1) #endif // ifndef TVM_GETITEMSTATE // -------------------------------------------------------------------------- // // CreateTreeViewClient() // // -------------------------------------------------------------------------- HRESULT CreateTreeViewClient(HWND hwnd, long idChildCur, REFIID riid, void** ppvTreeView) { COutlineView32 * poutline; HRESULT hr; InitPv(ppvTreeView); poutline = new COutlineView32(hwnd, idChildCur); if (!poutline) return(E_OUTOFMEMORY); hr = poutline->QueryInterface(riid, ppvTreeView); if (!SUCCEEDED(hr)) delete poutline; return(hr); } // -------------------------------------------------------------------------- // // COutlineView32::COutlineView32() // // -------------------------------------------------------------------------- COutlineView32::COutlineView32(HWND hwnd, long idChildCur) : CClient( CLASS_TreeViewClient ) { m_fUseLabel = TRUE; Initialize(hwnd, idChildCur); } // -------------------------------------------------------------------------- // // COutlineView32::SetupChildren() // // -------------------------------------------------------------------------- void COutlineView32::SetupChildren(void) { m_cChildren = SendMessageINT(m_hwnd, TVM_GETCOUNT, 0, 0); } // -------------------------------------------------------------------------- // // COutlineView32::ValidateChild() // // We have no index-ID support in tree view. Hence, the HTREEITEM is the // child ID, only thing we can do. We don't bother validating it except // to make sure it is less than 0x80000000. // // -------------------------------------------------------------------------- BOOL COutlineView32::ValidateChild(VARIANT* pvar) { TryAgain: switch (pvar->vt) { case VT_VARIANT | VT_BYREF: VariantCopy(pvar, pvar->pvarVal); goto TryAgain; case VT_ERROR: if (pvar->scode != DISP_E_PARAMNOTFOUND) return(FALSE); // FALL THRU case VT_EMPTY: pvar->vt = VT_I4; pvar->lVal = 0; break; case VT_I4: //BRENDANM - high bit set is valid, on 3G systems plus this can also happen on w64? // if (pvar->lVal < 0) // return(FALSE); // // Assume it's a valid HTREEITEM! // break; default: return(FALSE); } return(TRUE); } // -------------------------------------------------------------------------- // // COutlineView32::NextLogicalItem() // // -------------------------------------------------------------------------- HTREEITEM COutlineView32::NextLogicalItem(HTREEITEM ht) { HTREEITEM htNext; // // We see if this item has a child. If so, we are done. If not, // we get the next sibling. If that fails, we move back to the parent, // and try the next sibling thing again. And so on until we reach the // root. // htNext = TreeView_GetChild(m_hwnd, ht); if (htNext) return(htNext); while (ht) { htNext = TreeView_GetNextSibling(m_hwnd, ht); if (htNext) return(htNext); ht = TreeView_GetParent(m_hwnd, ht); } return(NULL); } // -------------------------------------------------------------------------- // // COutlineView32::PrevLogicalItem() // // -------------------------------------------------------------------------- HTREEITEM COutlineView32::PrevLogicalItem(HTREEITEM ht) { HTREEITEM htPrev; // // If this item has no previous sibling return the parent. // Then if the so, see if run done the first children. // Then get the previous sibling has no children return that. // Otherwise march down the tre find the last sibling of the last child // htPrev = TreeView_GetPrevSibling(m_hwnd, ht); if ( !htPrev ) { return TreeView_GetParent(m_hwnd, ht); } else { HTREEITEM htTest = TreeView_GetChild(m_hwnd, htPrev); if ( !htTest ) { return htPrev; } else { htPrev = htTest; // We are at the first child of the previous sibling for ( ;; ) { htTest = TreeView_GetNextSibling(m_hwnd, htPrev); if ( !htTest ) { htTest = TreeView_GetChild(m_hwnd, htPrev); if ( !htTest ) break; } htPrev = htTest; } return htPrev; } } } // -------------------------------------------------------------------------- // // COutlineView32::get_accName() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accName(VARIANT varChild, BSTR* pszName) { TVITEM* lptvShared; LPTSTR lpszShared; HANDLE hProcess; LPTSTR lpszLocal; InitPv(pszName); if (!ValidateChild(&varChild)) return E_INVALIDARG; if (!varChild.lVal) return CClient::get_accName(varChild, pszName); HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( ! htItem ) { return E_INVALIDARG; } // // Try getting the item's text the easy way, by asking first. Since the // file system limits us to 255 character names, assume items aren't // bigger than that. // lptvShared = TSharedAllocExtra<TVITEM>( m_hwnd, & hProcess, (MAX_NAME_SIZE+2)*sizeof(TCHAR) ); if (!lptvShared) return(E_OUTOFMEMORY); lpszLocal = (LPTSTR)LocalAlloc(LPTR,((MAX_NAME_SIZE+2)*sizeof(TCHAR))); if (!lpszLocal) { SharedFree (lptvShared,hProcess); return(E_OUTOFMEMORY); } lpszShared = (LPTSTR)(lptvShared+1); // (UINT) cast converts plain int to same type as ->mask, which is UINT. TSharedWrite( & lptvShared->mask, (UINT)TVIF_TEXT, hProcess ); TSharedWrite( & lptvShared->hItem, htItem, hProcess ); TSharedWrite( & lptvShared->pszText, lpszShared, hProcess ); TSharedWrite( & lptvShared->cchTextMax, MAX_NAME_SIZE + 1, hProcess ); if (TreeView_GetItem(m_hwnd, lptvShared)) { TSharedRead( lpszLocal, lpszShared, MAX_NAME_SIZE + 2, hProcess ); if (*lpszLocal) *pszName = TCharSysAllocString(lpszLocal); } SharedFree(lptvShared,hProcess); LocalFree (lpszLocal); return(*pszName ? S_OK : S_FALSE); } // -------------------------------------------------------------------------- // // COutlineView32::get_accValue() // // This returns back the indent level for a child item. // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accValue(VARIANT varChild, BSTR* pszValue) { InitPv(pszValue); if (!ValidateChild(&varChild)) return E_INVALIDARG; if (!varChild.lVal) return E_NOT_APPLICABLE; HTREEITEM htParent = TVItemFromChildID( m_hwnd, varChild.lVal ); if( ! htParent ) { return E_INVALIDARG; } long lValue = 0; while( htParent = TreeView_GetParent( m_hwnd, htParent ) ) { lValue++; } return VarBstrFromI4( lValue, 0, 0, pszValue ); } // -------------------------------------------------------------------------- // // COutlineView32::get_accRole() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accRole(VARIANT varChild, VARIANT* pvarRole) { InitPvar(pvarRole); if (!ValidateChild(&varChild)) return E_INVALIDARG; pvarRole->vt = VT_I4; if (varChild.lVal) { HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( ! htItem ) { return E_INVALIDARG; } DWORD dwRole; BOOL fGotRole = FALSE; int aKeys[ TV_IMGIDX_COUNT ]; if( TVGetImageIndex( m_hwnd, htItem, aKeys ) ) { if( CheckDWORDMap( m_hwnd, OBJID_CLIENT, CHILDID_SELF, PROPINDEX_ROLEMAP, aKeys, ARRAYSIZE( aKeys ), & dwRole ) ) { pvarRole->lVal = dwRole; fGotRole = TRUE; } else if( GetRoleFromStateImageMap( m_hwnd, aKeys[ TV_IMGIDX_Image ], & dwRole ) ) { pvarRole->lVal = dwRole; fGotRole = TRUE; } } if( ! fGotRole ) { // // Note that just because the treeview has TVS_CHECKBOXES // doesn't mean that every item is itself a checkbox. We // need to sniff at the item, too, to see if it has a state // image. // if ((GetWindowLong (m_hwnd,GWL_STYLE) & TVS_CHECKBOXES) && TreeView_GetItemState(m_hwnd, htItem, TVIS_STATEIMAGEMASK)) { pvarRole->lVal = ROLE_SYSTEM_CHECKBUTTON; } else { pvarRole->lVal = ROLE_SYSTEM_OUTLINEITEM; } } } else { pvarRole->lVal = ROLE_SYSTEM_OUTLINE; } return S_OK; } // -------------------------------------------------------------------------- // // COutlineView32::get_accState() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accState(VARIANT varChild, VARIANT* pvarState) { LPTVITEM lptvShared; HANDLE hProcess; TVITEM tvLocal; DWORD dwStyle; InitPvar(pvarState); if (!ValidateChild(&varChild)) return(E_INVALIDARG); if (!varChild.lVal) return(CClient::get_accState(varChild, pvarState)); HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( htItem == NULL ) { return E_INVALIDARG; } pvarState->vt = VT_I4; pvarState->lVal = 0; if (MyGetFocus() == m_hwnd) pvarState->lVal |= STATE_SYSTEM_FOCUSABLE; if( IsClippedByWindow( this, varChild, m_hwnd ) ) { pvarState->lVal |= STATE_SYSTEM_INVISIBLE | STATE_SYSTEM_OFFSCREEN; } lptvShared = TSharedAlloc< TVITEM >( m_hwnd, & hProcess ); if (!lptvShared) return(E_OUTOFMEMORY); // (UINT) cast converts plain int to same type as ->mask, which is UINT. TSharedWrite( & lptvShared->mask, (UINT)(TVIF_STATE | TVIF_CHILDREN), hProcess ); TSharedWrite( & lptvShared->hItem, htItem, hProcess ); if (TreeView_GetItem(m_hwnd, lptvShared)) { TSharedRead( & tvLocal, lptvShared, hProcess ); if (tvLocal.state & TVIS_SELECTED) { pvarState->lVal |= STATE_SYSTEM_SELECTED; if (pvarState->lVal & STATE_SYSTEM_FOCUSABLE) pvarState->lVal |= STATE_SYSTEM_FOCUSED; } pvarState->lVal |= STATE_SYSTEM_SELECTABLE; if (tvLocal.state & TVIS_DROPHILITED) pvarState->lVal |= STATE_SYSTEM_HOTTRACKED; // // If it isn't expanded and it has children, then it must be // collapsed. // if (tvLocal.state & (TVIS_EXPANDED | TVIS_EXPANDPARTIAL)) pvarState->lVal |= STATE_SYSTEM_EXPANDED; else if (tvLocal.cChildren) pvarState->lVal |= STATE_SYSTEM_COLLAPSED; // If the treeview has checkboxes, then see if it's checked. // State 0 = no checkbox, State 1 = unchecked, State 2 = checked dwStyle = GetWindowLong (m_hwnd,GWL_STYLE); if ((dwStyle & TVS_CHECKBOXES) && (tvLocal.state & TVIS_STATEIMAGEMASK) == INDEXTOSTATEIMAGEMASK(2)) pvarState->lVal |= STATE_SYSTEM_CHECKED; int aKeys[ TV_IMGIDX_COUNT ]; if( TVGetImageIndex( m_hwnd, htItem, aKeys ) ) { DWORD dwState; if( CheckDWORDMap( m_hwnd, OBJID_CLIENT, CHILDID_SELF, PROPINDEX_STATEMAP, aKeys, ARRAYSIZE( aKeys ), & dwState ) ) { pvarState->lVal |= dwState; } else if( GetStateFromStateImageMap( m_hwnd, aKeys[ TV_IMGIDX_Image ], & dwState ) ) { pvarState->lVal |= dwState; } } } SharedFree(lptvShared,hProcess); return(S_OK); } // -------------------------------------------------------------------------- // // COutlineView32::get_accDescription() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accDescription(VARIANT varChild, BSTR* pszDesc) { InitPv(pszDesc); if (! ValidateChild(&varChild)) return E_INVALIDARG; if (varChild.lVal) { HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( ! htItem ) { return E_INVALIDARG; } int aKeys[ TV_IMGIDX_COUNT ]; if( TVGetImageIndex( m_hwnd, htItem, aKeys ) ) { if( CheckStringMap( m_hwnd, OBJID_CLIENT, CHILDID_SELF, PROPINDEX_DESCRIPTIONMAP, aKeys, ARRAYSIZE( aKeys ), pszDesc ) ) { return S_OK; } } } return S_FALSE; } // -------------------------------------------------------------------------- // // COutlineView32::get_accFocus() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accFocus(VARIANT* pvarFocus) { HRESULT hr; // // Do we have the focus? // hr = CClient::get_accFocus(pvarFocus); if (!SUCCEEDED(hr) || (pvarFocus->vt != VT_I4) || (pvarFocus->lVal != 0)) return hr; // // We do. What item is focused? // return COutlineView32::get_accSelection(pvarFocus); } // -------------------------------------------------------------------------- // // COutlineView32::get_accSelection() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accSelection(VARIANT* pvarSelection) { InitPvar(pvarSelection); HTREEITEM ht = TreeView_GetSelection(m_hwnd); if (ht) { pvarSelection->vt = VT_I4; pvarSelection->lVal = ChildIDFromTVItem( m_hwnd, ht ); if( pvarSelection->lVal == 0 ) return E_FAIL; return S_OK; } else { return S_FALSE; } } // -------------------------------------------------------------------------- // // COutlineView32::get_accDefaultAction() // // The default action of a node with children is: // * Expand one level if it is fully collapsed // * Collapse if it is partly or completely expanded // // The reason for not expanding fully is that it is slow and there is no // keyboard shortcut or mouse click that will do it. You can use a menu // command to do so if you want. // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::get_accDefaultAction(VARIANT varChild, BSTR* pszDefA) { VARIANT varState; HRESULT hr; InitPv(pszDefA); if (!ValidateChild(&varChild)) return(E_INVALIDARG); if (!varChild.lVal) return(CClient::get_accDefaultAction(varChild, pszDefA)); // // Get our state. NOTE that we will not get back STATE_SYSTEM_COLLAPSED // if the item doesn't have children. // VariantInit(&varState); hr = get_accState(varChild, &varState); if (!SUCCEEDED(hr)) return(hr); if (varState.lVal & STATE_SYSTEM_EXPANDED) return(HrCreateString(STR_TREE_COLLAPSE, pszDefA)); else if (varState.lVal & STATE_SYSTEM_COLLAPSED) return(HrCreateString(STR_TREE_EXPAND, pszDefA)); else return(E_NOT_APPLICABLE); } // -------------------------------------------------------------------------- // // COutlineView32::accSelect() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::accSelect(long selFlags, VARIANT varChild) { if (!ValidateChild(&varChild) || !ValidateSelFlags(selFlags)) return E_INVALIDARG; if (!varChild.lVal) return CClient::accSelect(selFlags, varChild); HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( htItem == NULL ) { return E_INVALIDARG; } if (selFlags & SELFLAG_TAKEFOCUS) { MySetFocus(m_hwnd); } if ((selFlags & SELFLAG_TAKEFOCUS) || (selFlags & SELFLAG_TAKESELECTION)) { TreeView_SelectItem(m_hwnd, htItem); return S_OK; } else { return E_NOT_APPLICABLE; } } // -------------------------------------------------------------------------- // // COutlineView32::accLocation() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::accLocation(long* pxLeft, long* pyTop, long* pcxWidth, long* pcyHeight, VARIANT varChild) { InitAccLocation(pxLeft, pyTop, pcxWidth, pcyHeight); if (!ValidateChild(&varChild)) return E_INVALIDARG; if (!varChild.lVal) return CClient::accLocation(pxLeft, pyTop, pcxWidth, pcyHeight, varChild); HTREEITEM htItem = TVItemFromChildID( m_hwnd, varChild.lVal ); if( htItem == NULL ) { return E_INVALIDARG; } // Get the listview item rect. HANDLE hProcess; LPRECT lprcShared = TSharedAlloc< RECT >( m_hwnd, & hProcess ); if (!lprcShared) return E_OUTOFMEMORY; // can't use the TreeView_GetItemRect macro, because it does a behind-the-scenes // assignment of the item id into the rect, which blows on shared memory. // TVM_GETITEMRECT is weird: it's a ptr to a RECT, which, on input, contains // the HTREEITEM of the item; on output it contains that item's rect. TSharedWrite( (HTREEITEM *)lprcShared, htItem, hProcess); if (SendMessage (m_hwnd, TVM_GETITEMRECT, TRUE, (LPARAM)lprcShared)) { RECT rcLocal; TSharedRead( & rcLocal, lprcShared, hProcess ); MapWindowPoints(m_hwnd, NULL, (LPPOINT)&rcLocal, 2); *pxLeft = rcLocal.left; *pyTop = rcLocal.top; *pcxWidth = rcLocal.right - rcLocal.left; *pcyHeight = rcLocal.bottom - rcLocal.top; } SharedFree(lprcShared,hProcess); return S_OK; } // -------------------------------------------------------------------------- // // COutlineView32::accNavigate() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::accNavigate(long dwNavDir, VARIANT varStart, VARIANT* pvarEnd) { HTREEITEM htItem; HTREEITEM htNewItem = 0; InitPvar(pvarEnd); if (!ValidateChild(&varStart) || !ValidateNavDir(dwNavDir, varStart.lVal)) return(E_INVALIDARG); if (dwNavDir >= NAVDIR_FIRSTCHILD) { htNewItem = TreeView_GetRoot(m_hwnd); if ((dwNavDir == NAVDIR_LASTCHILD) && htNewItem) { HTREEITEM htNext; // make sure we are at the last root sibling htNext = TreeView_GetNextSibling(m_hwnd, htNewItem); while (htNext) { htNewItem = htNext; htNext = TreeView_GetNextSibling(m_hwnd, htNewItem); } RecurseAgain: // // Keep recursing down all the way to the last ancestor of the // last item under the root. // htNext = TreeView_GetChild(m_hwnd, htNewItem); if (htNext) { while (htNext) { htNewItem = htNext; htNext = TreeView_GetNextSibling(m_hwnd, htNewItem); } goto RecurseAgain; } } goto AllDone; } else if (!varStart.lVal) { return CClient::accNavigate(dwNavDir, varStart, pvarEnd); } htItem = TVItemFromChildID( m_hwnd, varStart.lVal ); if( htItem == NULL ) { return E_INVALIDARG; } switch (dwNavDir) { case NAVDIR_NEXT: // Next logical item, peer or child htNewItem = NextLogicalItem(htItem); break; case NAVDIR_PREVIOUS: // Previous logical item, peer or parent htNewItem = PrevLogicalItem(htItem); break; case NAVDIR_UP: // Previous sibling! htNewItem = TreeView_GetPrevSibling(m_hwnd, htItem); break; case NAVDIR_DOWN: // Next sibling! htNewItem = TreeView_GetNextSibling(m_hwnd, htItem); break; case NAVDIR_LEFT: // Get parent! htNewItem = TreeView_GetParent(m_hwnd, htItem); break; case NAVDIR_RIGHT: // Get first child! htNewItem = TreeView_GetChild(m_hwnd, htItem); break; } AllDone: if (htNewItem) { pvarEnd->vt = VT_I4; pvarEnd->lVal = ChildIDFromTVItem( m_hwnd, htNewItem ); if( pvarEnd->lVal == 0 ) return E_FAIL; return S_OK; } else { return S_FALSE; } } // -------------------------------------------------------------------------- // // COutlineView32::accHitTest() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::accHitTest(long x, long y, VARIANT* pvarHit) { HRESULT hr; LPTVHITTESTINFO lptvhtShared; HANDLE hProcess; POINT ptLocal; SetupChildren(); // // Is the point in the listview at all? // hr = CClient::accHitTest(x, y, pvarHit); // #11150, CWO, 1/27/97, Replaced !SUCCEEDED with !S_OK if ((hr != S_OK) || (pvarHit->vt != VT_I4) || (pvarHit->lVal != 0)) return(hr); // // Now find out what item this point is on. // lptvhtShared = TSharedAlloc< TVHITTESTINFO >( m_hwnd, & hProcess ); if (!lptvhtShared) return(E_OUTOFMEMORY); // Cast keeps templates happy - NULL on its own is #define'd as 0 and has no type. TSharedWrite( & lptvhtShared->hItem, (HTREEITEM)NULL, hProcess ); ptLocal.x = x; ptLocal.y = y; ScreenToClient(m_hwnd, &ptLocal); TSharedWrite( & lptvhtShared->pt, ptLocal, hProcess ); SendMessage(m_hwnd, TVM_HITTEST, 0, (LPARAM)lptvhtShared); HTREEITEM hItem; TSharedRead( &hItem, & lptvhtShared->hItem, hProcess ); SharedFree(lptvhtShared,hProcess); if( hItem ) { pvarHit->lVal = ChildIDFromTVItem( m_hwnd, hItem ); if( pvarHit->lVal == 0 ) return E_FAIL; } else { // if hItem is NULL, then point is over the treeview itself pvarHit->lVal = CHILDID_SELF; } return S_OK; } // -------------------------------------------------------------------------- // // COutlineView32::accDoDefaultAction() // // This expands collapsed items and collapses expanded items. // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::accDoDefaultAction(VARIANT varChild) { VARIANT varState; HRESULT hr; UINT tve; if (!ValidateChild(&varChild)) return(E_INVALIDARG); if (!varChild.lVal) return(CClient::accDoDefaultAction(varChild)); // // Get the item's state. // VariantInit(&varState); hr = get_accState(varChild, &varState); if (!SUCCEEDED(hr)) return(hr); if (varState.lVal & STATE_SYSTEM_COLLAPSED) tve = TVE_EXPAND; else if (varState.lVal & STATE_SYSTEM_EXPANDED) tve = TVE_COLLAPSE; else return(E_NOT_APPLICABLE); PostMessage(m_hwnd, TVM_EXPAND, tve, (LPARAM)varChild.lVal); return(S_OK); } // -------------------------------------------------------------------------- // // COutlineView32::Reset() // // Sets the "current" HTREEITEM to NULL so we know we are at the beginning. // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::Reset() { m_idChildCur = 0; return S_OK; } // -------------------------------------------------------------------------- // // COutlineView32::Next() // // We descend into children, among siblings, and back up as necessary. // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::Next(ULONG celt, VARIANT* rgvarFetch, ULONG* pceltFetch) { SetupChildren(); if (pceltFetch) InitPv(pceltFetch); HTREEITEM htCur; HTREEITEM htNext; if( m_idChildCur == 0 ) { htCur = NULL; htNext = TreeView_GetRoot(m_hwnd); } else { htCur = TVItemFromChildID( m_hwnd, m_idChildCur ); if( ! htCur ) { return E_FAIL; } htNext = NextLogicalItem(htCur); } VARIANT * pvar = rgvarFetch; ULONG cFetched = 0; while( (cFetched < celt) && htNext ) { htCur = htNext; cFetched++; pvar->vt = VT_I4; pvar->lVal = ChildIDFromTVItem( m_hwnd, htCur ); if( pvar->lVal == 0 ) return E_FAIL; pvar++; htNext = NextLogicalItem(htCur); } // if htCur is still NULL, then the treeview has 0 items, and // m_idChildCur is still 0, at the start of the (empty) list. // - safe to leave as is. if( htCur ) { m_idChildCur = ChildIDFromTVItem( m_hwnd, htCur ); if( m_idChildCur == 0 ) return E_FAIL; } if (pceltFetch) *pceltFetch = cFetched; return (cFetched < celt) ? S_FALSE : S_OK; } // -------------------------------------------------------------------------- // // COutlineView32::Skip() // // -------------------------------------------------------------------------- STDMETHODIMP COutlineView32::Skip(ULONG celtSkip) { SetupChildren(); HTREEITEM htCur; HTREEITEM htNext; if( m_idChildCur == 0 ) { htCur = NULL; htNext = TreeView_GetRoot(m_hwnd); } else { htCur = TVItemFromChildID( m_hwnd, m_idChildCur ); if( ! htCur ) { return E_FAIL; } htNext = NextLogicalItem(htCur); } while ((celtSkip > 0) && htNext) { --celtSkip; htCur = htNext; htNext = NextLogicalItem(htCur); } // if htCur is still NULL, then the treeview has 0 items, and // m_idChildCur is still 0, at the start of the (empty) list. // - safe to leave as is. if( htCur ) { m_idChildCur = ChildIDFromTVItem( m_hwnd, htCur ); if( m_idChildCur == 0 ) return E_FAIL; } return htNext ? S_OK : S_FALSE; } BOOL TVGetImageIndex( HWND hwnd, HTREEITEM id, int aKeys[ TV_IMGIDX_COUNT ] ) { HANDLE hProcess; TVITEM * lptvShared = TSharedAlloc< TVITEM >( hwnd, & hProcess ); if (!lptvShared) return FALSE; // (UINT) cast converts plain int to same type as ->mask, which is UINT. TSharedWrite( &lptvShared->mask, (UINT)(TVIF_IMAGE | LVIF_STATE), hProcess ); TSharedWrite( &lptvShared->hItem, id, hProcess ); BOOL fRet; if (TreeView_GetItem(hwnd, lptvShared)) { INT iImage; UINT state; TSharedRead( & iImage, & lptvShared->iImage, hProcess ); TSharedRead( & state, & lptvShared->state, hProcess ); aKeys[ TV_IMGIDX_Image ] = iImage; aKeys[ TV_IMGIDX_Overlay ] = ( state >> 8 ) & 0x0F; aKeys[ TV_IMGIDX_State ] = ( state >> 12 ) & 0x0F; fRet = TRUE; } else { fRet = FALSE; } SharedFree( lptvShared, hProcess ); return fRet; } // This reads from the process associated with the given // hwnd, and does the necessary OpenProcess/CloseHandle // tidyup and checks.... BOOL ReadProcessMemoryHWND( HWND hwnd, void * pSrc, void * pDst, DWORD len ) { DWORD idProcess = 0; GetWindowThreadProcessId(hwnd, &idProcess); if( ! idProcess ) return FALSE; HANDLE hProcess = OpenProcess( PROCESS_VM_READ, FALSE, idProcess ); if( ! hProcess ) return FALSE; SIZE_T cbActual = 0; BOOL retval = ReadProcessMemory( hProcess, pSrc, pDst, len, & cbActual ) && len == cbActual; CloseHandle( hProcess ); return retval; } BOOL GetStateImageMapEnt_SameBitness( HWND hwnd, int iImage, DWORD * pdwState, DWORD * pdwRole ) { void * pAddress = (void *) GetProp( hwnd, TEXT("MSAAStateImageMapAddr") ); if( ! pAddress ) return FALSE; int NumStates = PtrToInt( GetProp( hwnd, TEXT("MSAAStateImageMapCount") ) ); if( NumStates == 0 ) return FALSE; // <= used since number is a 1-based count, iImage is a 0-based index. // If iImage is 0, should be at least one state. if( NumStates <= iImage ) return FALSE; // Adjust to iImage into array... pAddress = (void*)( (MSAASTATEIMAGEMAPENT*)pAddress + iImage ); MSAASTATEIMAGEMAPENT ent; if( ! ReadProcessMemoryHWND( hwnd, pAddress, & ent, sizeof(ent) ) ) return FALSE; *pdwState = ent.dwState; *pdwRole = ent.dwRole; return TRUE; } BOOL GetStateImageMapEnt( HWND hwnd, int iImage, DWORD * pdwState, DWORD * pdwRole ) { // Quick shortcut - if this property isn't present, then don't even bother // going further... if( ! GetProp( hwnd, TEXT("MSAAStateImageMapCount") ) ) return FALSE; // First determine if hwnd is a process with the same bitness as this DLL BOOL fIsSameBitness; if (FAILED(SameBitness(hwnd, &fIsSameBitness))) return FALSE; // this case should never happen if( fIsSameBitness ) { return GetStateImageMapEnt_SameBitness( hwnd, iImage, pdwState, pdwRole ); } else { // The server (hwnd) is not the same bitness so get a remote proxy // factory object and call GetRoleFromStateImageMap thru it. IRemoteProxyFactory *p; if (FAILED(GetRemoteProxyFactory(&p))) { return FALSE; } HRESULT hr = p->GetStateImageMapEnt( HandleToLong( hwnd ) , iImage , pdwState , pdwRole ); p->Release(); return hr == S_OK; } } BOOL GetRoleFromStateImageMap( HWND hwnd, int iImage, DWORD * pdwRole ) { DWORD dwState; return GetStateImageMapEnt( hwnd, iImage, & dwState, pdwRole ); } BOOL GetStateFromStateImageMap( HWND hwnd, int iImage, DWORD * pdwState ) { DWORD dwRole; return GetStateImageMapEnt( hwnd, iImage, pdwState, & dwRole ); } // These are defined in the latest commctrl.h... #ifndef TVM_MAPACCIDTOHTREEITEM #define TVM_MAPACCIDTOHTREEITEM (TV_FIRST + 42) #define TreeView_MapAccIDToHTREEITEM(hwnd, id) \ (HTREEITEM)SNDMSG((hwnd), TVM_MAPACCIDTOHTREEITEM, id, 0) #define TVM_MAPHTREEITEMTOACCID (TV_FIRST + 43) #define TreeView_MapHTREEITEMToAccID(hwnd, htreeitem) \ (UINT)SNDMSG((hwnd), TVM_MAPHTREEITEMTOACCID, (WPARAM)htreeitem, 0) #endif // TODO - need to handle the case where the treeview is 64-bit, the // client is 32. SendMessage will truncate the retuend HTREEITEM, // and the 32-bit client has no way of sending a 64-bit value to the // 64-bit tree anyhow. // Need to detect that case, and get the 64-bit helper server to help // out. // This should work tree-client 32t-32c, 64t-64c and 32t-64c. HTREEITEM TVItemFromChildID( HWND hwnd, DWORD idChild ) { Assert( idChild ); if( idChild == 0 ) return NULL; HTREEITEM hItem = TreeView_MapAccIDToHTREEITEM( hwnd, idChild ); if( hItem ) { return hItem; } #ifdef _WIN64 return NULL; #else // Fallback for older 32-bit comctls that don't implement the mapping // message return (HTREEITEM) idChild; #endif } DWORD ChildIDFromTVItem( HWND hwnd, HTREEITEM htvi ) { Assert( htvi != NULL ); if( htvi == NULL ) return 0; DWORD dwid = TreeView_MapHTREEITEMToAccID( hwnd, htvi ); if( dwid != 0 ) { return dwid; } #ifdef _WIN64 return 0; #else // Fallback for older 32-bit comctls that don't implement the mapping // message return (DWORD) htvi; #endif }
91a604d49507db8e9d10742d237c2cedfd80b06c
86568f60d188600bb6dbffdfdd26496cfc0750da
/sumar.cpp
f8dd3d62e9e764c9b1c1ebc7b6bd617f350ced3b
[]
no_license
UNI-FIIS-BIC01/introduccion-cpp
ce68036f482424781a3c1f4770c9c75146ecd075
77561f4a5d9e926eca2af85be15e2f59001da748
refs/heads/main
2023-06-25T12:33:38.570687
2021-07-12T18:52:29
2021-07-12T18:52:29
374,442,679
0
0
null
null
null
null
UTF-8
C++
false
false
81
cpp
int Sumar(int un_numero, int otro_numero) { return un_numero + otro_numero; }
99299b4cd27a03de8448010aada83812fc247b2d
d5b414bb922c20f171855c8ea8ee5f451d66287c
/src/cloudlistener_toMap.cpp
61cb3da529988a13b13db79d6586805a13e55d40
[ "Apache-2.0" ]
permissive
loulansuiye/depthcam_hector_slam
37451bc852f0d5c6bfee2870c341339e951373b3
ca1590d4d364b86164862f1efae91791219fb0b1
refs/heads/master
2022-02-25T22:47:01.337616
2019-04-04T09:13:37
2019-04-04T09:13:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,312
cpp
// some libs need to be removed** #include <ros/ros.h> #include <pcl_ros/point_cloud.h> #include <pcl/point_types.h> #include <pcl_ros/transforms.h> #include <boost/foreach.hpp> #include <pcl_ros/impl/transforms.hpp> #include <tf/transform_listener.h> #include <pcl_conversions/pcl_conversions.h> #include <pcl/PCLPointCloud2.h> #include <pcl/conversions.h> #include <stdlib.h> #include <pcl/io/pcd_io.h> #include <sensor_msgs/image_encodings.h> #include <pcl/visualization/cloud_viewer.h> #include "slammin/pointVector3d.h" #include "slammin/point3d.h" typedef pcl::PointCloud<pcl::PointXYZRGB> PointCloud; typedef pcl::PointCloud<pcl::PointXYZ> PointCloud_simpl; float min_scanned_height_; ros::Publisher pV_pub,dP_pub; ros::Subscriber sub,dub ; tf::TransformListener *tf_listener; void callback(const PointCloud::ConstPtr& pcl_in) { //this node gets camera's pointcloud, transforms it at global world parameters and publishes it to the slammin node.. PointCloud pcl_out,pca; tf::StampedTransform transform; try { tf_listener->lookupTransform ("/world", pcl_in->header.frame_id, fromPCL(pcl_in->header).stamp, transform); } catch (tf::LookupException &e) { return; } catch (tf::ExtrapolationException &e) { //ROS_ERROR ("%s", e.what ()); return; } pcl_ros::transformPointCloud("/world", *pcl_in, pcl_out, *tf_listener); // pcl_ros::transformPointCloud("/base_footprint", pcl_out, pca, *tf_listener); // tf_listener->lookupTransform ("/base_footprint", "/world", ros::Time(0), transform); // tf::Vector3 acet(transform * tf::Vector3(pcl_out.points[1440].x, pcl_out.points[1440].y, pcl_out.points[1440].z)); // ROS_INFO("whazaaa2 %f %f %f %d",pca.points[1440].x,pca.points[1440].y,pca.points[1440].z,pca.points.size()); // ROS_INFO("whazaaup %f %f %f %d",acet.getX(),acet.getY(),acet.getZ(),pca.points.size()); //tf_pub.publish(pcl_out); //printf("fetched %d points\n",pcl_out.points.size() ); slammin::pointVector3d v_; slammin::point3d p_; int howmanynan=0; for (int i = 0; i < pcl_out.points.size(); ++i) { //locates pointcloud points above the ground level.. if(!isnan(pcl_out.points[i].z)&&pcl_out.points[i].z>min_scanned_height_){ //~~~>add launch parameter here for min height p_.x=pcl_out.points[i].x; p_.y=pcl_out.points[i].y; p_.z=pcl_out.points[i].z; p_.posIncloud=i; v_.vec3d.push_back(p_); //ROS_INFO("edw vrika ena %f %f %f",p_.x,p_.y,p_.z); }else if(isnan(pcl_out.points[i].z)) howmanynan++; } //ROS_INFO("tHA STEILEi nan %d kai to megethos einai %d",howmanynan,v_.vec3d.size()); // for (int i = 0; i < v_.vec3d.size(); ++i) // { // if(isnan(v_.vec3d[i].x)||isnan(v_.vec3d[i].y)||isnan(v_.vec3d[i].z)){ // printf("nan er\n"); // } // } pV_pub.publish(v_); } void depthcam_scanCallback(const slammin::pointVector3d::ConstPtr& data){ //this node PointCloud_simpl depth_in,depth_out; //PointCloud::Ptr msg (new PointCloud); depth_in.header.frame_id="/world"; depth_in.height=data->vec3d.size(); depth_in.width=1; tf::Vector3 mapToglobal_coords; if(data->vec3d.size()>0){ for (int i = 0; i < depth_in.height; ++i) { /* mapToglobal_coords.setX(data->vec3d[i].x/2048*10); mapToglobal_coords.setY(data->vec3d[i].y/2048*10); mapToglobal_coords.setZ(data->vec3d[i].z/2048*10); depth_in.points.push_back (pcl::PointXYZ(mapToglobal_coords.getX(),mapToglobal_coords.getY(),mapToglobal_coords.getZ()));*/ depth_in.points.push_back (pcl::PointXYZ(data->vec3d[i].x,data->vec3d[i].y,data->vec3d[i].z)); } //ROS_INFO("received %d",data->vec3d.size()); tf::StampedTransform transform; try { tf_listener->lookupTransform ("/base_link", depth_in.header.frame_id, fromPCL(depth_in.header).stamp, transform); } catch (tf::LookupException &e) { return; } catch (tf::ExtrapolationException &e) { //ROS_ERROR ("%s", e.what ()); return; } pcl_ros::transformPointCloud("/base_link", depth_in, depth_out, *tf_listener); slammin::pointVector3d v_; slammin::point3d p_; for (int i = 0; i < depth_out.points.size(); ++i) { p_.x=depth_out.points[i].x; p_.y=depth_out.points[i].y; p_.z=depth_out.points[i].z; p_.posIncloud=i; v_.vec3d.push_back(p_); } dP_pub.publish(v_); } } int main(int argc, char** argv) { ros::init(argc, argv, "cloudlistener_toMap"); ros::NodeHandle nh("~"); nh.getParam("min_scanned_height", min_scanned_height_); tf_listener = new tf::TransformListener(); sub= nh.subscribe<PointCloud>("/camera/depth/points", 1, callback); dub= nh.subscribe<slammin::pointVector3d>("/depthcam_scan", 1, depthcam_scanCallback); pV_pub = nh.advertise<slammin::pointVector3d> ("/slammin_pointVector3d", 1); dP_pub = nh.advertise<slammin::pointVector3d> ("/depthcam_scan_coords", 1); // ros::Rate rate(10.0); // while (nh.ok()){ // tf::StampedTransform transform; // try { // tf_listener->waitForTransform("/world", "/camera_depth_frame", ros::Time(0), ros::Duration(1.0) ); // //tf_listener->lookupTransform("/world", "/camera_depth_frame", ros::Time(0), transform); // } catch (tf::TransformException ex) { // ROS_ERROR("%s",ex.what()); // continue; // } // sub= nh.subscribe<PointCloud>("/camera/depth/points", 1, callback); // rate.sleep(); // } ros::spin(); return 0; }
e14cfb1df2187beef939b349e0e3396b4b4966b5
5885fd1418db54cc4b699c809cd44e625f7e23fc
/codeforces/988/b.cpp
d98b39e6c20f9c06923bd1da2dd1be4c1460fa9c
[]
no_license
ehnryx/acm
c5f294a2e287a6d7003c61ee134696b2a11e9f3b
c706120236a3e55ba2aea10fb5c3daa5c1055118
refs/heads/master
2023-08-31T13:19:49.707328
2023-08-29T01:49:32
2023-08-29T01:49:32
131,941,068
2
0
null
null
null
null
UTF-8
C++
false
false
1,289
cpp
#include <bits/stdc++.h> using namespace std; #define _USE_MATH_DEFINES typedef long long ll; typedef long double ld; typedef pair<int,int> pii; typedef complex<ld> pt; typedef vector<pt> pol; const char nl = '\n'; const int INF = 0x3f3f3f3f; const ll INFLL = 0x3f3f3f3f3f3f3f3f; const ll MOD = 1e9+7; const ld EPS = 1e-10; mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count()); bool cmp(const string& a, const string& b) { return a.size() < b.size(); } bool issub(const string& a, const string& b) { if (a.size() > b.size()) return false; for (int i=0; i<=b.size()-a.size(); i++) { bool match = true; for (int j=0; j<a.size(); j++) { if (a[j] != b[i+j]) { match = false; break; } } if (match) return true; } return false; } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cout << fixed << setprecision(10); int n; cin >> n; string s; vector<string> arr; for (int i=0; i<n; i++) { cin >> s; arr.push_back(s); } sort(arr.begin(), arr.end(), cmp); for (int i=1; i<n; i++) { if (!issub(arr[i-1], arr[i])) { cout << "NO" << nl; return 0; } } cout << "YES" << nl; for (const string& it : arr) { cout << it << nl; } return 0; }
b274af4e3c62025550e4ad370f52e3973aa468f0
0d99bcb8b8717008c1ec9b080c6c86c2b1710eee
/날씨/build/Android/Preview2/app/src/main/include/Fuse.Resources.DisposalPolicy.h
49bd6b0677e18ee5e195127ddc2421cae4122e5e
[]
no_license
shj4849/Fuse
526d92bc49a0a2d8087beece987b1701dc35cccc
447f49f96f9dadf203f5f91e8a1d67f19d8ecc04
refs/heads/master
2021-05-15T23:08:09.523726
2017-12-21T05:28:53
2017-12-21T05:28:53
106,758,124
0
0
null
null
null
null
UTF-8
C++
false
false
1,258
h
// This file was generated based on C:/Users/t2/AppData/Local/Fusetools/Packages/Fuse.Common/1.4.0/Resources/DisposalPolicy.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Fuse{namespace Resources{struct DisposalPolicy;}}} namespace g{ namespace Fuse{ namespace Resources{ // internal abstract class DisposalPolicy :7 // { struct DisposalPolicy_type : uType { void(*fp_CanDispose)(::g::Fuse::Resources::DisposalPolicy*, int*, bool*, bool*); void(*fp_Clone)(::g::Fuse::Resources::DisposalPolicy*, ::g::Fuse::Resources::DisposalPolicy**); void(*fp_MarkUsed)(::g::Fuse::Resources::DisposalPolicy*); }; DisposalPolicy_type* DisposalPolicy_typeof(); void DisposalPolicy__ctor__fn(DisposalPolicy* __this); struct DisposalPolicy : uObject { void ctor_(); bool CanDispose(int dr, bool pinned) { bool __retval; return (((DisposalPolicy_type*)__type)->fp_CanDispose)(this, &dr, &pinned, &__retval), __retval; } DisposalPolicy* Clone() { DisposalPolicy* __retval; return (((DisposalPolicy_type*)__type)->fp_Clone)(this, &__retval), __retval; } void MarkUsed() { (((DisposalPolicy_type*)__type)->fp_MarkUsed)(this); } }; // } }}} // ::g::Fuse::Resources
e8443930b88573bbce7b7ad3bbfab54aa4b07454
4c2d1c669e16ba7c552d7ca30348b5d013a9fe51
/cmake-build-debug/vtkm/exec/arg/testing/UnitTests_vtkm_exec_arg_testing.cxx
f476758d0d3b89687166c421d61eff47059766e4
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
rushah05/VTKm_FP16
7423db6195d60974071565af9995905f45d7a6df
487819a1dbdd8dc3f95cca2942e3f2706a2514b5
refs/heads/main
2023-04-13T12:10:03.420232
2021-02-10T21:34:31
2021-02-10T21:34:31
308,658,384
0
0
NOASSERTION
2021-02-10T21:34:33
2020-10-30T14:43:03
C++
UTF-8
C++
false
false
4,699
cxx
#include <ctype.h> /* NOLINT */ #include <stdio.h> /* NOLINT */ #include <stdlib.h> /* NOLINT */ #include <string.h> /* NOLINT */ #if defined(_MSC_VER) #pragma warning(disable : 4996) /* deprecation */ #endif /* Forward declare test functions. */ int UnitTestExecutionSignatureTag(int, char*[]); int UnitTestFetchArrayDirectIn(int, char*[]); int UnitTestFetchArrayDirectIn3d(int, char*[]); int UnitTestFetchArrayDirectInOut(int, char*[]); int UnitTestFetchArrayDirectOut(int, char*[]); int UnitTestFetchArrayNeighborhoodIn(int, char*[]); int UnitTestFetchArrayTopologyMapIn(int, char*[]); int UnitTestFetchExecObject(int, char*[]); int UnitTestFetchWorkIndex(int, char*[]); #ifdef __cplusplus # define CM_CAST(TYPE, EXPR) static_cast<TYPE>(EXPR) # if __cplusplus >= 201103L # define CM_NULL nullptr # else # define CM_NULL NULL # endif #else # define CM_CAST(TYPE, EXPR) (TYPE)(EXPR) # define CM_NULL NULL #endif /* Create map. */ typedef int (*MainFuncPointer)(int, char* []); /* NOLINT */ typedef struct /* NOLINT */ { const char* name; MainFuncPointer func; } functionMapEntry; static functionMapEntry cmakeGeneratedFunctionMapEntries[] = { { "UnitTestExecutionSignatureTag", UnitTestExecutionSignatureTag }, { "UnitTestFetchArrayDirectIn", UnitTestFetchArrayDirectIn }, { "UnitTestFetchArrayDirectIn3d", UnitTestFetchArrayDirectIn3d }, { "UnitTestFetchArrayDirectInOut", UnitTestFetchArrayDirectInOut }, { "UnitTestFetchArrayDirectOut", UnitTestFetchArrayDirectOut }, { "UnitTestFetchArrayNeighborhoodIn", UnitTestFetchArrayNeighborhoodIn }, { "UnitTestFetchArrayTopologyMapIn", UnitTestFetchArrayTopologyMapIn }, { "UnitTestFetchExecObject", UnitTestFetchExecObject }, { "UnitTestFetchWorkIndex", UnitTestFetchWorkIndex }, { CM_NULL, CM_NULL } /* NOLINT */ }; static const int NumTests = CM_CAST(int, sizeof(cmakeGeneratedFunctionMapEntries) / sizeof(functionMapEntry)) - 1; /* Allocate and create a lowercased copy of string (note that it has to be free'd manually) */ static char* lowercase(const char* string) { char *new_string, *p; size_t stringSize; stringSize = CM_CAST(size_t, strlen(string) + 1); new_string = CM_CAST(char*, malloc(sizeof(char) * stringSize)); if (new_string == CM_NULL) { /* NOLINT */ return CM_NULL; /* NOLINT */ } strcpy(new_string, string); /* NOLINT */ for (p = new_string; *p != 0; ++p) { *p = CM_CAST(char, tolower(*p)); } return new_string; } int main(int ac, char* av[]) { int i, testNum = 0, partial_match; char *arg; int testToRun = -1; /* If no test name was given */ /* process command line with user function. */ if (ac < 2) { /* Ask for a test. */ printf("Available tests:\n"); for (i = 0; i < NumTests; ++i) { printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name); } printf("To run a test, enter the test number: "); fflush(stdout); if (scanf("%d", &testNum) != 1) { printf("Couldn't parse that input as a number\n"); return -1; } if (testNum >= NumTests) { printf("%3d is an invalid test number.\n", testNum); return -1; } testToRun = testNum; ac--; av++; } partial_match = 0; arg = CM_NULL; /* NOLINT */ /* If partial match is requested. */ if (testToRun == -1 && ac > 1) { partial_match = (strcmp(av[1], "-R") == 0) ? 1 : 0; } if (partial_match != 0 && ac < 3) { printf("-R needs an additional parameter.\n"); return -1; } if (testToRun == -1) { arg = lowercase(av[1 + partial_match]); } for (i = 0; i < NumTests && testToRun == -1; ++i) { char *test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name); if (partial_match != 0 && strstr(test_name, arg) != CM_NULL) { /* NOLINT */ testToRun = i; ac -= 2; av += 2; } else if (partial_match == 0 && strcmp(test_name, arg) == 0) { testToRun = i; ac--; av++; } free(test_name); } free(arg); if (testToRun != -1) { int result; if (testToRun < 0 || testToRun >= NumTests) { printf("testToRun was modified by TestDriver code to an invalid value: " "%3d.\n", testNum); return -1; } result = (*cmakeGeneratedFunctionMapEntries[testToRun].func)(ac, av); return result; } /* Nothing was run, display the test names. */ printf("Available tests:\n"); for (i = 0; i < NumTests; ++i) { printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name); } printf("Failed: %s is an invalid test name.\n", av[1]); return -1; }
8520336e993e1463567ce731727589fc6e3d4a26
7da629206444d0622d2842ca4d82b16a11172fd8
/ex00/Victim.cpp
a924b78e1f67aebea86cb7a635931d69050321fa
[]
no_license
Epitech-Tek2/CPPD10
94a36c7a3d95d783b23fe941b3eebb54a58fe94e
45c03eac7eb5752fe40edd3ea4961542a5424329
refs/heads/master
2023-08-20T17:22:46.358981
2021-10-17T12:11:23
2021-10-17T12:11:23
418,120,335
0
0
null
null
null
null
UTF-8
C++
false
false
692
cpp
/* ** EPITECH PROJECT, 2021 ** B-CPP-300-STG-3-1-CPPD10-clement.muth ** File description: ** Victim */ #include "Victim.hpp" Victim::Victim(std::string name) noexcept : _name(name) { cOut("Some random victim called " << _name << " just popped!"); } Victim::~Victim() { cOut("Victim " << _name << " just died for no apparent reason!"); } std::string Victim::getName() const noexcept { return _name; } void Victim::getPolymorphed() const noexcept { cOut(_name << " has been turned into a cute little sheep!"); } std::ostream& operator<<(std::ostream& stream, Victim& victim) noexcept { return stream << "I'm " + victim.getName() + " and I like otters!" << std::endl; }
e1c6f4637b973b85e2a9d05b8a2c4b62fefbb1df
04a6a7a883004e1ab0ee0799245a5603ebf13d21
/a17/maths/float_utils_test.cpp
ac0dd9bf3ac412e522e8eb77cdcb8273a9442023
[ "BSD-3-Clause" ]
permissive
SRI-IPS/general-tools
678d77c43a9f06ea3918a82beaeea762caeb51db
b3113cbcf83c3a430c630d050d1b96e722dfb043
refs/heads/master
2020-12-04T07:59:25.949919
2020-01-10T18:24:38
2020-01-10T18:24:38
231,687,030
0
0
null
null
null
null
UTF-8
C++
false
false
1,779
cpp
#include <catch.hpp> #include <iostream> #include <limits> #include "float_utils.h" namespace a17 { namespace maths { namespace test { TEST_CASE("Float Utils", "[float_utils]") { auto infinite = std::numeric_limits<float>::max(); SECTION("FloatEq Basic") { REQUIRE(FloatEq(0.0, 0.0)); REQUIRE(FloatEq(-1.0, -1.0)); REQUIRE(FloatEq(1.0, 1.0)); REQUIRE(FloatEq(-0.1, -0.1)); REQUIRE(FloatEq(0.1, 0.1)); REQUIRE(FloatEq(0.2, 1 / std::sqrt(5) / std::sqrt(5))); REQUIRE(!FloatEq(-0.1, -0.10001)); REQUIRE(FloatEq(-0.1, -0.100000001)); } SECTION("FloatEq 1 To Infinite") { for (double i = 1.223345; i < std::numeric_limits<float>::max(); i *= 2.01) { // Make these volatile to prevent the compiler from optimizing out the multiplication. volatile auto sqrt_i = std::sqrt(i); volatile auto i_with_error = sqrt_i * std::sqrt(i); REQUIRE(FloatEq(i, i_with_error)); } } SECTION("FloatEq -1 To -Infinite") { for (double i = -1.211345; i > std::numeric_limits<float>::max(); i *= 2.01) { // Make these volatile to prevent the compiler from optimizing out the multiplication. volatile auto sqrt_i = std::sqrt(i); volatile auto i_with_error = sqrt_i * std::sqrt(i); REQUIRE(FloatEq(i, i_with_error)); } } SECTION("FloatEq Near Infinite") { REQUIRE(FloatEq(infinite, infinite)); REQUIRE(FloatEq(-infinite, -infinite)); REQUIRE(FloatEq(infinite / 8 * 3 * 2, infinite / 4 * 3)); REQUIRE(FloatEq(-infinite / 4 * 3, -infinite / 8 * 3 * 2)); } SECTION("Overflow") { REQUIRE(!FloatEq(infinite / 4 * 3, -infinite / 4 * 3)); REQUIRE(!FloatEq(-infinite / 4 * 3, infinite / 4 * 3)); } } } // namespace test } // namespace maths } // namespace a17
87a34e7f7b8bca81c04a29ffae556048b96835f0
23b5dd9b19b8c027b9ef8240d3bb845d5492f654
/StRoot/StPicoCharmContainers/StPicoD0QaHists.h
c7e649ba15e9b067ca26bdbc9bfbd17ecb29be8b
[]
no_license
rnc-lbl/auau200GeVRun14
6fd9b224ece69ec2e83bd86c661a079e7de7eda9
7d61c56e77e2b2d8530eebe96b86d7616380fd14
refs/heads/master
2020-12-24T06:27:51.806468
2016-09-30T00:04:22
2016-09-30T00:04:22
32,545,525
3
17
null
2016-07-19T01:49:16
2015-03-19T20:51:27
C++
UTF-8
C++
false
false
1,285
h
#ifndef StPicoD0QaHists__h #define StPicoD0QaHists__h /* ************************************************** * A class to create and save D0 production QA * histograms. * * Authors: **Mustafa Mustafa ([email protected]) * * **Code Maintainer * * ************************************************** */ #include <string> class TH1F; class TH2F; class TFile; class TString; class StPicoPrescales; class StPicoEvent; class StPicoD0Event; class StKaonPion; class StPicoD0QaHists { public: StPicoD0QaHists(std::string fileBaseName, std::string prescalesDirectory); virtual ~StPicoD0QaHists(); void addEvent(StPicoEvent const &, StPicoD0Event const &,unsigned int const nHftTracks); void addKaonPion(StKaonPion const*, bool fillMass, bool unlike); void closeFile(); private: StPicoD0QaHists(){} StPicoPrescales* mPrescales; TFile* mOutFile; TH1F* mh1TotalEventsInRun; TH1F* mh1TotalHftTracksInRun; TH1F* mh1TotalGRefMultInRun; TH1F* mh1TotalKaonsInRun; TH1F* mh1TotalPionsInRun; TH1F* mh1TotalD0CandidatesInRun; TH2F* mh2NKaonsVsNPions; TH2F* mh2KaonDcaVsPt; TH2F* mh2PionDcaVsPt; TH2F* mh2CosThetaVsPt; TH2F* mh2DcaDaughtersVsPt; TH2F* mh2InvariantMassVsPtUnlike; TH2F* mh2InvariantMassVsPtLike; }; #endif
ff7d9cf685e79486a6d11ebeb97a1653c33313ef
6cc44d50c84a83bb6bdbb9994880551b3a0818b4
/LibraryManagement/conioLinux.cpp
1e0b9ef92203277d5a4032872d89a995478ff97e
[]
no_license
tronglocbrvt/LibraryManagement
69afdf73df08c737af190f23355c007a0ae57387
3b93132ade68f2d0ae7e675ae159ee967f06e7a7
refs/heads/master
2023-03-04T08:34:40.728628
2021-02-02T05:19:16
2021-02-02T05:19:16
184,001,620
1
0
null
null
null
null
UTF-8
C++
false
false
1,764
cpp
#if defined(_WIN32) || defined(_WIN64) void enable_raw_mode() { } void disable_raw_mode() { } #else #include <sys/ioctl.h> #include <termios.h> #include <stdio.h> void enable_raw_mode() { termios term; tcgetattr(0, &term); term.c_lflag &= ~(ICANON | ECHO); // Disable echo as well tcsetattr(0, TCSANOW, &term); } void disable_raw_mode() { termios term; tcgetattr(0, &term); term.c_lflag |= ICANON | ECHO; tcsetattr(0, TCSANOW, &term); } bool kbhit() { int byteswaiting; ioctl(0, FIONREAD, &byteswaiting); return byteswaiting > 0; } static struct termios old; static struct termios news; /* Initialize new terminal i/o settings */ void initTermios(int echo) { tcgetattr(0, &old); /* grab old terminal i/o settings */ news = old; /* make new settings same as old settings */ news.c_lflag &= ~ICANON; /* disable buffered i/o */ if (echo) { news.c_lflag |= ECHO; /* set echo mode */ } else { news.c_lflag &= ~ECHO; /* set no echo mode */ } tcsetattr(0, TCSANOW, &news); /* use these new terminal i/o settings now */ } /* Restore old terminal i/o settings */ void resetTermios(void) { tcsetattr(0, TCSANOW, &old); } /* Read 1 character - echo defines echo mode */ char getch_(int echo) { char ch; initTermios(echo); ch = getchar(); resetTermios(); return ch; } /* Read 1 character without echo */ char getch(void) { return getch_(0); } /* Read 1 character with echo */ char getche(void) { return getch_(1); } #endif // enable_raw_mode(); // if (kbhit()) // { // code // } // disable_raw_mode(); // tcflush(0, TCIFLUSH); // Clear stdin to prevent characters appearing on prompt
b19f2353f0a713efc99fe374309aee44f03b68b4
51ec89f91794682264e7eaa248e66af70659d616
/src/System.IO.Ports/sys_io_ser_native.cpp
60c1dc133f981ce0d69674f493f0d6306d962417
[ "MIT" ]
permissive
piwi1263/nf-interpreter
57092174d2f5b00afc503a6bb178f2e155d4f545
43fd2daa2649a74f5cfb26b9a91a48a0aaebb5ac
refs/heads/main
2022-06-16T00:23:09.368975
2022-05-13T15:59:47
2022-05-13T15:59:47
226,354,889
0
0
MIT
2022-04-07T17:09:50
2019-12-06T15:12:46
C
UTF-8
C++
false
false
2,329
cpp
// // Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // #include "sys_io_ser_native.h" // clang-format off static const CLR_RT_MethodHandler method_lookup[] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, Library_sys_io_ser_native_System_IO_Ports_SerialPort::get_BytesToRead___I4, Library_sys_io_ser_native_System_IO_Ports_SerialPort::get_InvertSignalLevels___BOOLEAN, Library_sys_io_ser_native_System_IO_Ports_SerialPort::set_InvertSignalLevels___VOID__BOOLEAN, NULL, NULL, NULL, NULL, NULL, NULL, NULL, Library_sys_io_ser_native_System_IO_Ports_SerialPort::Read___I4__SZARRAY_U1__I4__I4, NULL, Library_sys_io_ser_native_System_IO_Ports_SerialPort::ReadExisting___STRING, Library_sys_io_ser_native_System_IO_Ports_SerialPort::ReadLine___STRING, Library_sys_io_ser_native_System_IO_Ports_SerialPort::Write___VOID__SZARRAY_U1__I4__I4, NULL, NULL, NULL, Library_sys_io_ser_native_System_IO_Ports_SerialPort::NativeDispose___VOID, Library_sys_io_ser_native_System_IO_Ports_SerialPort::NativeInit___VOID, Library_sys_io_ser_native_System_IO_Ports_SerialPort::NativeConfig___VOID, Library_sys_io_ser_native_System_IO_Ports_SerialPort::NativeSetWatchChar___VOID, Library_sys_io_ser_native_System_IO_Ports_SerialPort::NativeWriteString___VOID__STRING__BOOLEAN, NULL, NULL, Library_sys_io_ser_native_System_IO_Ports_SerialPort::GetDeviceSelector___STATIC__STRING, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }; const CLR_RT_NativeAssemblyData g_CLR_AssemblyNative_System_IO_Ports = { "System.IO.Ports", 0xCB7C0ECA, method_lookup, { 100, 1, 4, 0 } }; // clang-format on
4992ff3dfd1ff934b35d24e32eb096e8afb252fa
03a47d14fc4c8ee461ba139fd22d2be589984ef0
/source/compiler_tests/test22.cpp
17bf0965aa1f7f438f95715fcbbb8e6225a47cc6
[ "Zlib" ]
permissive
brittonsmith/c10.00-b
b6cd0058e1f37cf6e53863206f7c2bd73d5970a7
e34b9a91941aab6eb2e5d4a6c76fa2d479f0abc7
refs/heads/master
2020-09-18T20:55:25.193631
2019-12-04T11:02:36
2019-12-04T11:02:36
224,183,983
0
1
NOASSERTION
2019-12-04T11:02:38
2019-11-26T12:10:06
C++
UTF-8
C++
false
false
150
cpp
#include "cddefines.h" struct k { long n; }; void test(multi_arr<k,3>& arr) { multi_arr<k,3>::const_iterator p = arr.ptr(0,0,0); (p++)->n = 1; }
[ "gary@e66ded4d-7403-0c46-9ef1-c4afbd745067" ]
gary@e66ded4d-7403-0c46-9ef1-c4afbd745067
9af6ab0fd4a56cd7c894de04cee25593ba2e11f4
e9b59282c28bba155a9846b670802d36a874605c
/IM-TCP-Client/encrypt.cpp
275334b50d1640defa3585cdba25579ff3bdc5e7
[]
no_license
aldoraul/IM-TCP-Client-Windows
d00b8b938ca8d5fdf77f3ef52fa5805020840390
d7e7511683815ef9daf9a657c05e5b31d2758a7e
refs/heads/master
2020-12-31T06:45:36.837589
2016-05-06T18:58:17
2016-05-06T18:58:17
57,352,982
0
0
null
2016-05-06T18:58:18
2016-04-29T03:49:57
C++
UTF-8
C++
false
false
732
cpp
#include <iostream> #include"cipher.h" using namespace std; char encr[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 'b', '.', 0, 'c', '[', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'R', 'u', ',', 'q', '\t', 'Y', '\n', '\'', 'n', 's', 'v', 'e', 'H', 'o', 'N', 'M', 'r', '=', '0', ';', 'z', '/', '`', 'E', '\"', 'k', '&', '5', '>', 'i', 'p', ')', '$', '!', '2', 'O', '(', 'I', 'J', '%', 'Z', 'g', '\\', '{', 'h', '7', 'S', 'P', 'a', ' ', 'W', 'x', 'y', 'T', '+', '8', '-', 'L', '9', 'f', '#', 'F', '\r', 'B', '3', 'D', ']', 'V', '?', '*', 'G', '6', 'w', '@', '}', '|', 'C', 'l', '_', 'j', 'K', '^', '1', 't', 'Q', '<', 'U', 'd', 'm', ':', 'A', 'X', '\f', '4', '~', 0, 0, 0 }; char encrypt(char a) { return encr[(int)a]; }
967333bab4b5df5ba732093e83b303a44696d55f
987b43cb95103fe3af35e8756c29aee7f3c7a07c
/include/RE/V/ValueAndConditionsEffect.h
86c3ce30839319649d69811de1f04ea6959213ca
[ "MIT" ]
permissive
powerof3/CommonLibSSE
29e6017c8bae90665db4d30318ee66fd19e6c139
ff2afeaf5d6f6cac4c5b7cb1caaa2e0d89713393
refs/heads/dev
2023-08-31T05:15:02.732037
2023-08-21T09:52:55
2023-08-21T09:52:55
374,565,412
38
26
MIT
2023-09-10T13:09:57
2021-06-07T06:55:35
C++
UTF-8
C++
false
false
805
h
#pragma once #include "RE/A/ActorValues.h" #include "RE/V/ValueModifierEffect.h" namespace RE { class ValueAndConditionsEffect : public ValueModifierEffect // 00 { public: inline static constexpr auto RTTI = RTTI_ValueAndConditionsEffect; inline static constexpr auto VTABLE = VTABLE_ValueAndConditionsEffect; // override (ActiveEffect) virtual void SaveGame(BGSSaveFormBuffer* a_buf) override; // 08 virtual void LoadGame(BGSLoadFormBuffer* a_buf) override; // 09 virtual ~ValueAndConditionsEffect(); // 13 // override (ValueModifierEffect) virtual void ModifyActorValue(Actor* a_actor, float a_value, ActorValue a_actorValue) override; // 20 // members ActorValue actorValue; // 98 }; static_assert(sizeof(ValueAndConditionsEffect) == 0xA0); }
945e2ff784449560f5da2b015e53f8cfdeeeab4c
0c0afb8897a8947ce9ff5956e00b03e865569160
/InClassLabs/Overloading/date.cpp
8d19c2d6f0aec6995e01ff5c48cea2d1786fdf78
[]
no_license
Nathan-Binkley/CSCI208
be241a002284e6729745fe07b675bd4c5b59879f
b95564e6d0689229e8501b593e304e83119fec5a
refs/heads/master
2020-03-14T08:03:30.807576
2018-10-29T17:26:49
2018-10-29T17:26:49
131,516,787
0
0
null
null
null
null
UTF-8
C++
false
false
7,068
cpp
#include <iostream> #include "date.h" using namespace std; // This program implements and tests a Date class that // stores dates and displays them in various formats. /********************************************************* * Date::Date * * This default constructor sets date to Jan. 1, 2001. * *********************************************************/ Date::Date() { month = day = 1; year = 2001; setName(); } /************************************************************** * Date::Date * * This overloaded constructor calls the class "set" function * * to set the date to the month/day/year passed to it. * **************************************************************/ Date::Date(int m, int d, int y) { setMonth(m); setDay(d); setYear(y); } /*************************************************************** * Date::setMonth * * This member function validates that the month number * * passed in is 1-12 and, if so, sets the month to that number.* * Otherwise a default value of 1 is used. * ***************************************************************/ void Date::setMonth(int m) { if (m >= 1 && m <= 12) month = m; else { cout << m << " is not a valid value for the month.\n" << "Using a default value of 1 (January). \n"; month = 1; } setName(); } /******************************************************** * Date::setDay * * This member function validates that the day number * * passed in is valid for the selected month. If so, * * it sets the day to that number. Otherwise, a default * * value of 1 is used. * ********************************************************/ void Date::setDay(int d) { int daysInMonth; switch (month) { case 4: case 6: case 9: case 11: // Apr., June, Sept. & Nov. daysInMonth = 30; break; case 2: // Feb. daysInMonth = 29; // Usually 28, but 29 is the max break; default: daysInMonth = 31; // The rest of the months } if (d >= 1 && d <= daysInMonth) day = d; else { cout << d << " is not a valid day in " << name <<". \n" << "Using a default value of 1). \n"; day = 1; } } /*************************************************************** * Date::setYear * * This member function validates that the year number passed * * in is valid, if so, it sets the year to that number. * * Otherwise, a default value of 2001 is used. * * NOTE: The programming specs did not specify which dates * * were valid. * ***************************************************************/ void Date::setYear(int y) { if (y >= -1900 && y <= 4000) year = y; else { cout << y << " is not a valid value for the year.\n" << "Using a default value of 2001. \n"; year = 2001; // Use default value } } /********************************************************* * Date::setName * * This member function sets the month name to match the * * month number. * *********************************************************/ void Date::setName() { switch (month) { case 1: name = "January"; break; case 2: name = "Febraury"; break; case 3: name = "March"; break; case 4: name = "April"; break; case 5: name = "May"; break; case 6: name = "June"; break; case 7: name = "July"; break; case 8: name = "August"; break; case 9: name = "September";break; case 10: name = "October"; break; case 11: name = "November"; break; case 12: name = "December"; } } /************************************************************* * Date::getYear * * This member function gets the year * *************************************************************/ int Date::getYear(){ return year; } /************************************************************* * Date::showDate1 * * This member function displays the date in 3/15/13 format. * *************************************************************/ void Date::showDate1() { int twoDigitYear; if (year >= 2000) twoDigitYear = year - 2000; else twoDigitYear = year - 1900; cout << month << '/' << day << '/' ; if (twoDigitYear < 10) cout << '0'; cout << twoDigitYear << endl; } /******************************************************************** * Date::showDate2 * * This member function displays the date in March 15, 2013 format. * ********************************************************************/ void Date::showDate2() { cout << name << " " << day << ", " << year << endl; } /******************************************************************** * Date::showDate3 * * This member function displays the date in 15 March 2013 format. * ********************************************************************/ void Date::showDate3() { cout << day << " " << name << " " << year << endl; } /******************************************************************** * ostream& operator<< * * Overloads print date operator * ********************************************************************/ ostream& operator<<(ostream& os, const Date& dat) { os << dat.month << '/' << dat.day << '/' << dat.year; return os; } Date operator+(int num, Date dt){ Date tempD = dt; tempD.setYear(tempD.getYear() + num); return tempD; } Date operator+(Date dt, int num){ Date tempD = dt; tempD.setYear(tempD.getYear() + num); return tempD; } Date& operator++(Date& dt){ Date& tempD = dt; tempD.setYear(dt.getYear() + 1); return tempD; } Date& operator++(Date& dt, int x){ Date& tempD = dt; x = dt.getYear(); tempD.setYear(x + 1); return tempD; } /******************************************************************** * Main * * Displays date * ********************************************************************/ int main() { Date date3, date4, date1, date2; date3=date1+82; cout << date3; cout << endl; date4=6+date2; cout << date4; cout << endl; cout << date3 << endl; //2083 date3++; cout << date3 << endl; //2084 ++date3; cout << date3 << endl; //2085 }
030f3e2eb06f385d44f9cef3813dc971d24b57fc
64bd56e46ae9b4288b8ed2550d2b88079e6d90f3
/Classes/LevelButton.cpp
a3e251a3c8a012fb99e6a53a212bf91999d40b52
[]
no_license
HolicXXX/FruitSquad
c24d06aba3d7ef260e3d12f044ed41751ecc5e36
918f68f908be01d7c86f76b8ef06357c0ca2c7e4
refs/heads/master
2020-06-30T15:33:25.339799
2018-01-31T03:51:04
2018-01-31T03:51:04
74,362,568
1
0
null
null
null
null
UTF-8
C++
false
false
1,814
cpp
#include "LevelButton.h" USING_NS_CC; LevelButton* LevelButton::create(int level) { auto lb = new LevelButton(); if (lb && lb->init(level)) { lb->autorelease(); return lb; } CC_SAFE_DELETE(lb); return nullptr; } bool LevelButton::init(int level) { if (!Node::init()) { return false; } m_level = level; m_star = nullptr; m_state = DISABLE; m_textureStr.push_back("disable"); m_textureStr.push_back("able"); m_textureStr.push_back("pass"); //base on level and data to create button and label { m_button = Sprite::create("levelselectscene/level_point_disable.png"); this->addChild(m_button); m_levelNum = Label::createWithBMFont("fonts/level_number.fnt", StringUtils::format("%02d", level)); m_levelNum->setPosition(Vec2(-5, 0)); this->addChild(m_levelNum); } return true; } Size LevelButton::getButtonSize() { if (m_button) return m_button->getContentSize(); return Size::ZERO; } void LevelButton::setNormal() { auto str = m_textureStr[int(m_state)]; m_button->setTexture(StringUtils::format("levelselectscene/level_point_%s_normal.png", str.c_str())); } void LevelButton::setSelected() { auto str = m_textureStr[int(m_state)]; m_button->setTexture(StringUtils::format("levelselectscene/level_point_%s_selected.png", str.c_str())); } void LevelButton::setState(PointState state) { m_state = state; if (m_state == DISABLE) { m_button->setTexture("levelselectscene/level_point_disable.png"); } else { setNormal(); } } void LevelButton::pass(int starNum) { if (m_star != nullptr) { if (starNum != m_star->getStarNum()) m_star->setStarNum(starNum); return; } setState(PointState::PASS); m_star = LevelStar::create(); m_star->setStarNum(starNum); m_star->setPosition(Vec2(0, -m_button->getContentSize().height / 2)); this->addChild(m_star); }
a8812de8e20dfb5b0bd452cd7002558cf6a7de6b
1bc712a595502731bebe11ca6b63e07184b66c66
/DSA CODES/lec 13 (BST)/1.1 binary search.cpp
5dc99516ba1f3b642e36c1fd75338b6e15b350f0
[]
no_license
abhay9013/DSA
30a55a7c5da61cfe2a198fcb78b9ba4ff9f8ce0a
5b90c29ec3a681f2e6ab63818e004986f687bd24
refs/heads/master
2023-08-28T07:23:25.870515
2021-10-05T20:26:53
2021-10-05T20:26:53
413,924,757
0
0
null
null
null
null
UTF-8
C++
false
false
3,742
cpp
#include<iostream> using namespace std; #include<queue> template <typename t> class binarytree{ public: t data; binarytree* left; binarytree* right; binarytree(t data) { this->data=data; left=NULL; right=NULL; } ~binarytree() { delete left; delete right; } }; binarytree<int>* input2() { queue<binarytree<int>*> q; int rdata; cout<<"Enter data"<<endl; cin>>rdata; binarytree<int>* root=new binarytree<int>(rdata); q.push(root); while(q.size()!=0) { binarytree<int>* front=q.front(); q.pop(); cout<<"Enter left child of "<<front->data<<endl; int leftchild; cin>>leftchild; if(leftchild!=-1) { binarytree<int>* n=new binarytree<int>(leftchild); front->left=n; q.push(n); } cout<<"Enter right child of "<<front->data<<endl; int rightchild; cin>>rightchild; if(rightchild!=-1) { binarytree<int>* n=new binarytree<int>(rightchild); front->right=n; q.push(n); } } return root; } void print(binarytree<int>* root) { queue<binarytree<int>*> q; q.push(root); while(q.size()!=0) { binarytree<int>* front=q.front(); q.pop(); cout<<front->data<<":"; if(front->left!=NULL) { cout<<"L"<<front->left->data; q.push(front->left); } if(front->right) { cout<<"R"<<front->right->data; q.push(front->right); } cout<<endl; } } binarytree<int>* bsearch(binarytree<int>* root,int data1) { if(root==NULL) { return NULL; } if(root->data==data1) { return root; } else if(data1<root->data) { bsearch(root->left,data1); } else { bsearch(root->right,data1); } } class isbstreturn{ public: int min; int max; bool isbst; }; isbstreturn Isbst(binarytree<int>* root) { if(root==NULL) { isbstreturn op; op.max=INT_MIN; op.min=INT_MAX; op.isbst=true; return op; } isbstreturn leftans = Isbst(root->left); isbstreturn rightans = Isbst(root->right); int mini=min(root->data,min(leftans.min,rightans.min)); int maxi=max(root->data,max(leftans.max,rightans.max)); bool isbstfinal=(root->data>leftans.max)&&(root->data<=rightans.max)&&leftans.isbst&&rightans.isbst; isbstreturn op2; op2.min=mini; op2.max=maxi; op2.isbst=isbstfinal; return op2; } bool isbst3(binarytree<int>* root,int min=INT_MIN,int max=INT_MAX) { if(root==NULL) { return true; } if(root->data<min||root->data>max) { return false; } bool left=isbst3(root->left,min,root->data-1); bool right=isbst3(root->right,root->data,max); return left&&right; } binarytree<int>* create(int *arr, int si , int ei) { int mid=(si+ei)/2; if(ei==-1||si>ei) { return NULL; } else if(arr[mid]==-1) { return NULL; } binarytree<int>* root=new binarytree<int>(arr[mid]); cout<<"!!!!!"<<arr[mid]<<endl; //arr[mid]=-1; binarytree<int>* left1=create(arr,si,mid-1); binarytree<int>* right1=create(arr,mid+1,ei); root->left=left1; root->right=right1; return root; } /*int maximum(binarytree<int>* root) { if(root==NULL) { return INT_MIN; } return max(root->data,max(maximum(root->left),maximum(root->right))); } int minimum(binarytree<int>* root) { if(root==NULL) { return INT_MAX; } return min(root->data,min(minimum(root->left),minimum(root->right))); } bool isbst(binarytree<int>* root) { if(root==NULL) { return true; } int leftmax=maximum(root->left); int rightmin=minimum(root->right); bool output=(root->data>leftmax)&&(root->data<=rightmin)&&isbst(root->left)&&isbst(root->right); return output; }*/ int main() { int arr[]={1,2,3,4,5,6,7}; int si=0; int ei=6; binarytree<int>* root2=create(arr,si,ei); cout<<"Created bst is "<<endl; print(root2); cout<<endl; // 4 2 6 1 3 5 7 -1 -1 -1 -1 -1 -1 -1 -1 /*binarytree<int>* root1=input2(); print(root1); cout<<isbst3(root1)<<endl;*/ }
[ "abhayporwal2303@@gmail.com" ]
abhayporwal2303@@gmail.com
6b4d9351a2a24e44505f638683e945e58a315144
9708a97766d560313a521dfb6caedfc4613301cd
/mainwindow.h
d7938813ec3f245c3cc283462eb7721fb3c767c9
[]
no_license
aspotashev/scoundown
1448ae3c2cc2752dedf8d0ec2feb3368e98a4e1d
647d92fb0c0d0e66c275741d5a50dceddd892891
refs/heads/master
2021-01-13T02:11:11.491923
2009-12-19T20:46:17
2009-12-19T20:46:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
382
h
#include <QMainWindow> #include <QLabel> #include <QObject> class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(int timeOut); ~MainWindow(); void startTimer(); void setTimeLabel(); void setTextColor(const QColor &c); void keyPressEvent(QKeyEvent *event); private slots: void tick(); private: QLabel *labelTime; QTimer *timerTick; int timeLeft; };
1a7a15d706551cdc0ede633804a2b4660961fda3
bdb1e38df8bf74ac0df4209a77ddea841045349e
/CapsuleSortor/青岛益青/CapsuleSorter/CamConfigSetting.cpp
9e334ee91ae831aa72af0830b44fe6c673e18273
[]
no_license
Strongc/my001project
e0754f23c7818df964289dc07890e29144393432
07d6e31b9d4708d2ef691d9bedccbb818ea6b121
refs/heads/master
2021-01-19T07:02:29.673281
2010-12-17T03:10:52
2010-12-17T03:10:52
49,062,858
0
1
null
2016-01-05T11:53:07
2016-01-05T11:53:07
null
GB18030
C++
false
false
12,772
cpp
// CamConfigSetting.cpp : implementation file // #include "stdafx.h" #include "CapsuleSorter.h" #include "CapsuleSorterDlg.h" #include "CamConfigSetting.h" #include "KeyBoardDlg.h" #include "configinfo.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CCamConfigSetting dialog CCamConfigSetting::CCamConfigSetting(CWnd* pParent /*=NULL*/) : CDialog(CCamConfigSetting::IDD, pParent), m_firstPlayer(TBmpInfo::e8Bit), m_secondPlayer(TBmpInfo::e8Bit), m_FirstCard(0), m_SecondCard(0) { //{{AFX_DATA_INIT(CCamConfigSetting) m_genieToGenie = 0.0f; m_genieToProci = 0.0f; m_prociToGenie = 0.0f; m_prociToProci = 0.0f; m_colorROIStartX = 0; m_colorROIStartY = 0; m_colorROIWidth = 0; m_colorROIHeight = 0; m_colorExpTime = 0; m_colorGain = 0; m_whiteRedVal = 0; m_whiteBlueVal = 0; m_monoROIWidth = 0; m_monoROIHeight = 0; m_monoROIStartY = 0; m_monoROIStartX = 0; m_monoGain = 0; m_monoExpTime = 0; m_maxValue = 0.0; //}}AFX_DATA_INIT } void CCamConfigSetting::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CCamConfigSetting) DDX_Control(pDX, IDC_CamSelect, m_camSelect); DDX_Text(pDX, IDC_GenieToGenie, m_genieToGenie); DDX_Text(pDX, IDC_GenieToProci, m_genieToProci); DDX_Text(pDX, IDC_ProciToGenie, m_prociToGenie); DDX_Text(pDX, IDC_ProciToProci, m_prociToProci); DDX_Text(pDX, IDC_ROIStartX, m_colorROIStartX); DDX_Text(pDX, IDC_ROIStartY, m_colorROIStartY); DDX_Text(pDX, IDC_ROIWidth, m_colorROIWidth); DDX_Text(pDX, IDC_ROIHeight, m_colorROIHeight); DDX_Text(pDX, IDC_ExpTime, m_colorExpTime); DDX_Text(pDX, IDC_Gain, m_colorGain); DDX_Text(pDX, IDC_WhiteRedVal, m_whiteRedVal); DDX_Text(pDX, IDC_WhiteBlueVal, m_whiteBlueVal); DDX_Text(pDX, IDC_MONO_ROI_WIDTH, m_monoROIWidth); DDX_Text(pDX, IDC_MONO_ROI_HEIGHT, m_monoROIHeight); DDX_Text(pDX, IDC_MONO_ROI_STARTY, m_monoROIStartY); DDX_Text(pDX, IDC_MONO_ROI_STARTX, m_monoROIStartX); DDX_Text(pDX, IDC_MONO_GAIN, m_monoGain); DDX_Text(pDX, IDC_MONO_EXPTIME, m_monoExpTime); DDX_Text(pDX, IDC_RECORD, m_maxValue); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CCamConfigSetting, CDialog) //{{AFX_MSG_MAP(CCamConfigSetting) ON_WM_PAINT() ON_BN_CLICKED(IDC_CAMCAPTURE, OnCamcapture) ON_BN_CLICKED(IDC_CAMFREEZE, OnCamfreeze) ON_BN_CLICKED(IDC_SET_COLORCAM, OnSetColorcam) ON_BN_CLICKED(IDC_SET_MONOCAM, OnSetMonocam) ON_BN_CLICKED(IDC_GET_COLORCAM, OnGetColorcam) ON_BN_CLICKED(IDC_GET_MONOCAM, OnGetMonocam) ON_BN_CLICKED(IDC_CamSoftKeyBD, OnCamSoftKeyBD) ON_BN_CLICKED(IDC_BUTTON2, OnButton2) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CCamConfigSetting message handlers void CCamConfigSetting::ProciProcess(void *param) { CCamConfigSetting* pThis = (CCamConfigSetting*)(param); { //pThis->UpdateData(); //Calculate time difference //Image processing while (1) { pThis->m_genieToProci = pThis->m_imgTimeDiff.msec(); pThis->m_prociToProci = (reinterpret_cast<SVSGigECard *>(pThis->m_FirstCard))->FrameInterval(); pThis->m_FirstCard->Wait(); void *pMemBase = pThis->m_FirstCard->GetPixelMemBase(); if(pMemBase) { if(pThis->m_FirstCard->BytesPerPixel() == 1) { PelGray8 *pGrayNew = (PelGray8*)pThis->m_firstImg.Base(); memcpy(pGrayNew, pMemBase, pThis->m_firstImg.Size()); } else if(pThis->m_FirstCard->BytesPerPixel() == 3) { PelRGB24 *pRGBOld = (PelRGB24*)(pMemBase); PelRGB24 *pRGBNew = (PelRGB24*)pThis->m_firstImg.Base(); size_t pixelCount = pThis->m_FirstCard->Width() * pThis->m_FirstCard->Height(); for(size_t index = 0; index < pixelCount; ++index) { pRGBNew->V[0] = pRGBOld->B; pRGBNew->V[1] = pRGBOld->G; pRGBNew->V[2] = pRGBOld->R; ++pRGBOld; ++pRGBNew; } } pThis->m_firstPlayer.SetImage( pThis->m_firstImg.Base(), pThis->m_FirstCard->Width(), pThis->m_FirstCard->Height()); pThis->InvalidateRect (pThis->m_colorRect, FALSE); } //Display time difference CString data; data.Format("%.3f", pThis->m_prociToProci); pThis->SetDlgItemText(IDC_ProciToProci, data); data.Format("%.3f", pThis->m_genieToProci); pThis->SetDlgItemText(IDC_GenieToProci, data); { if (pThis->m_genieToProci > pThis->m_maxValue) { pThis->m_maxValue = pThis->m_genieToProci; CString txt; txt.Format("%.3f", pThis->m_maxValue); pThis->SetDlgItemText(IDC_RECORD, txt); } } } } } void CCamConfigSetting::GenieProcess(void *param) { CCamConfigSetting* pThis = (CCamConfigSetting*)(param); //Calculate time difference while (1) { pThis->m_genieToGenie = (reinterpret_cast<SVSGigECard *>(pThis->m_SecondCard))->FrameInterval(); pThis->m_imgTimeDiff.Reset(); pThis->m_prociToGenie = pThis->m_genieToGenie - pThis->m_genieToProci; pThis->m_SecondCard->Wait(); //Image process void *pMemBase = pThis->m_SecondCard->GetPixelMemBase(); if(pMemBase) { if(pThis->m_SecondCard->BytesPerPixel() == 1) { PelGray8 *pGrayNew = (PelGray8*)pThis->m_secondImg.Base(); memcpy(pGrayNew, pMemBase, pThis->m_secondImg.Size()); } else if(pThis->m_SecondCard->BytesPerPixel() == 3) { PelRGB24 *pRGBOld = (PelRGB24*)(pMemBase); PelRGB24 *pRGBNew = (PelRGB24*)pThis->m_secondImg.Base(); size_t pixelCount = pThis->m_SecondCard->Width() * pThis->m_SecondCard->Height(); for(size_t index = 0; index < pixelCount; ++index) { pRGBNew->V[0] = pRGBOld->B; pRGBNew->V[1] = pRGBOld->G; pRGBNew->V[2] = pRGBOld->R; ++pRGBOld; ++pRGBNew; } } pThis->m_secondPlayer.SetImage( pThis->m_secondImg.Base(), pThis->m_SecondCard->Width(), pThis->m_SecondCard->Height()); pThis->InvalidateRect (pThis->m_monoRect, FALSE); } //Display time difference CString data; data.Format("%.3f", pThis->m_genieToGenie); pThis->SetDlgItemText(IDC_GenieToGenie, data); data.Format("%.3f", pThis->m_prociToGenie); pThis->SetDlgItemText(IDC_ProciToGenie, data); } } BOOL CCamConfigSetting::OnInitDialog() { CDialog::OnInitDialog(); // TODO: Add extra initialization here //Title CString title; title.LoadString(IDS_CAMERACFG_TITLE); SetWindowText(title); //Position RECT rect; GetWindowRect(&rect); int scWidth = GetSystemMetrics(SM_CXSCREEN); int scHeight= GetSystemMetrics(SM_CYSCREEN); int width = rect.right - rect.left; int height = rect.bottom - rect.top; int left = (scWidth - width)/2; int top = 0; MoveWindow(left, top, width, height); ShowWindow(SW_SHOW); //Init CapsuleSorterDlg* mainDlg = (CapsuleSorterDlg*)AfxGetMainWnd(); mainDlg->GetCamera(m_FirstCard, m_SecondCard); m_FirstCard->StopLive(); m_SecondCard->StopLive(); m_firstImg = TAlloc<FirstCamPixel>(m_FirstCard->Width() * m_SecondCard->Height()); m_secondImg = TAlloc<SecondCamPixel>(m_SecondCard->Width() * m_SecondCard->Height()); m_firstThread.SetThreadFunc(CCamConfigSetting::ProciProcess, this); m_secondThread.SetThreadFunc(CCamConfigSetting::GenieProcess, this); m_firstThread.Start(TThread::HIGHEST); m_secondThread.Start(TThread::HIGHEST); // m_FirstCard->RegisterProcFunc(CCamConfigSetting::ProciProcess, this); // m_SecondCard->RegisterProcFunc (CCamConfigSetting::GenieProcess, this); GetDlgItem(IDC_MONO_RECT)->GetWindowRect(&m_monoRect); ScreenToClient(&m_monoRect); GetDlgItem(IDC_COLOR_RECT)->GetWindowRect(&m_colorRect); ScreenToClient(&m_colorRect); ((CComboBox*)GetDlgItem(IDC_CamSelect))->SetCurSel(0); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } void CCamConfigSetting::OnPaint() { CPaintDC dc(this); // device context for painting // TODO: Add your message handler code here Display(dc.m_hDC); // Do not call CDialog::OnPaint() for painting messages } void CCamConfigSetting::OnCamcapture() { // TODO: Add your control notification handler code here bool colorOk = false; bool monoOk = false; ConfigInfo& conInf= ConfigInfo::TheConfigInfo(); switch(m_camSelect.GetCurSel()) { case 0: //m_colorImgCard->Open(); m_FirstCard->Open(conInf.FirstCamInfo().camTag.c_str()); m_SecondCard->Open(conInf.SecondCamInfo().camTag.c_str()); colorOk = m_FirstCard->StartLive(); monoOk = m_SecondCard->StartLive(); if(!colorOk || !monoOk) { MessageBox("相机不能正常工作"); } break; case 1: m_FirstCard->Open(conInf.FirstCamInfo().camTag.c_str()); colorOk = m_FirstCard->StartLive(); if(!colorOk) { MessageBox("相机不能正常工作"); } break; case 2: m_SecondCard->Open(conInf.SecondCamInfo().camTag.c_str()); monoOk = m_SecondCard->StartLive(); if(!monoOk) { MessageBox("相机不能正常工作"); } break; default: ; } } void CCamConfigSetting::Display(HDC hdc) { { CRect rect = m_monoRect; size_t width = m_SecondCard->Width(); size_t height = m_SecondCard->Height(); m_secondPlayer.StrechToDevice(hdc, rect.left, rect.bottom - height/4, width/4, height/4, 0, 0, width, height); } { CRect rect = m_colorRect; size_t width = m_FirstCard->Width(); size_t height = m_FirstCard->Height(); m_firstPlayer.StrechToDevice(hdc,rect.left, rect.bottom - height/4, width/4, height/4, 0, 0, width, height); } } BOOL CCamConfigSetting::DestroyWindow() { // TODO: Add your specialized code here and/or call the base class OnCamfreeze(); return CDialog::DestroyWindow(); } void CCamConfigSetting::OnCamfreeze() { // TODO: Add your control notification handler code here UpdateData(TRUE); switch(m_camSelect.GetCurSel()) { case 0: m_SecondCard->StopLive(); m_FirstCard->StopLive(); break; case 1: m_FirstCard->StopLive(); break; case 2: m_SecondCard->StopLive(); break; default: ; } } void CCamConfigSetting::OnSetColorcam() { // TODO: Add your control notification handler code here UpdateData(TRUE); // m_FirstCard->SetROI (m_colorROIStartX , m_colorROIStartY , m_colorROIWidth, m_colorROIHeight); m_FirstCard->SetExpTime (m_colorExpTime); m_FirstCard->SetGain (m_colorGain); m_firstImg = TAlloc<FirstCamPixel>(m_FirstCard->Width() * m_FirstCard->Height()); m_secondImg = TAlloc<SecondCamPixel>(m_SecondCard->Width() * m_SecondCard->Height()); } void CCamConfigSetting::OnSetMonocam() { // TODO: Add your control notification handler code here UpdateData(TRUE); // m_SecondCard->SetROI (m_monoROIStartX , m_monoROIStartY , m_monoROIWidth, m_monoROIHeight); m_SecondCard->SetExpTime (m_monoExpTime); m_SecondCard->SetGain (m_monoGain); } void CCamConfigSetting::OnGetColorcam() { // TODO: Add your control notification handler code here size_t colorROIStartX, colorROIStartY,colorROIWidth,colorROIHeight; m_FirstCard->GetROI(colorROIStartX, colorROIStartY, colorROIWidth, colorROIHeight); size_t colorGain, colorExpTime, whiteRedVal, whiteBlueVal, whiteGreenVal; m_FirstCard->GetGain(colorGain); m_FirstCard->GetExpTime(colorExpTime); m_FirstCard->GetWhiteBal(whiteRedVal, whiteGreenVal ,whiteBlueVal ); m_colorROIStartX = colorROIStartX; m_colorROIStartY = colorROIStartY; m_colorROIWidth = colorROIWidth; m_colorROIHeight = colorROIHeight; m_colorGain = colorGain; m_colorExpTime = colorExpTime; m_whiteRedVal = whiteRedVal; m_whiteBlueVal = whiteBlueVal; UpdateData(FALSE); } void CCamConfigSetting::OnGetMonocam() { // TODO: Add your control notification handler code here size_t ROIStartX, ROIStartY, ROIWidth, ROIHeight; m_SecondCard->GetROI(ROIStartX, ROIStartY , ROIWidth, ROIHeight); size_t monoGain, monoExpTime; m_SecondCard->GetGain(monoGain); m_SecondCard->GetExpTime(monoExpTime); m_monoROIStartX = ROIStartX; m_monoROIStartY = ROIStartY; m_monoROIWidth = ROIWidth; m_monoROIHeight = ROIHeight; m_monoGain = monoGain; m_monoExpTime = monoExpTime; UpdateData(FALSE); } void CCamConfigSetting::OnCamSoftKeyBD() { CKeyBoardDlg::DisplayWindow(); } void CCamConfigSetting::OnButton2() { // TODO: Add your control notification handler code here m_maxValue = 0.0f; }
[ "vincen.cn@66f52ff4-a261-11de-b161-9f508301ba8e" ]
vincen.cn@66f52ff4-a261-11de-b161-9f508301ba8e
2629f9b6eb1ab313ed1831818a7a7f6bd78578d9
7eb002e0a34added5414377b2ba95a475b4666c9
/jets/resample/makeIPMap.h
4b8273b72b907dff755543c97201f9c8d0caa76f
[]
no_license
dcraik/lhcb
191b1a2097271cd7d800dc7b61117d7362eddfab
ac6a3537d9f68e7bfb4221be54a57848f922b4fa
refs/heads/master
2022-12-06T14:22:33.073972
2022-12-01T14:01:15
2022-12-01T14:01:15
41,675,918
1
2
null
null
null
null
UTF-8
C++
false
false
25,852
h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Wed Jun 7 12:11:21 2017 by ROOT version 6.06/00 // from TTree data/data // found on file: lightjets.part.root ////////////////////////////////////////////////////////// #ifndef makeIPMap_h #define makeIPMap_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> // Header file for the classes stored in the TTree if any. #include "vector" class makeIPMap { public : TTree *fChain; //!pointer to the analyzed TTree or TChain Int_t fCurrent; //!current Tree number in a TChain // Fixed size dimensions of array or collections stored in the TTree if any. // Declaration of leaf types std::vector<double> *gen_idx_pvr; std::vector<double> *gen_idx_jet; std::vector<double> *gen_pid; std::vector<double> *gen_q; std::vector<double> *gen_px; std::vector<double> *gen_py; std::vector<double> *gen_pz; std::vector<double> *gen_e; std::vector<double> *gen_x; std::vector<double> *gen_y; std::vector<double> *gen_z; std::vector<double> *pvr_x; std::vector<double> *pvr_y; std::vector<double> *pvr_z; std::vector<double> *pvr_dx; std::vector<double> *pvr_dy; std::vector<double> *pvr_dz; std::vector<double> *pvr_chi2; std::vector<double> *pvr_ndof; std::vector<double> *svr_idx_pvr; std::vector<double> *svr_idx_jet; std::vector<double> *svr_idx_trk0; std::vector<double> *svr_idx_trk1; std::vector<double> *svr_idx_trk2; std::vector<double> *svr_idx_trk3; std::vector<double> *svr_idx_trk4; std::vector<double> *svr_idx_trk5; std::vector<double> *svr_idx_trk6; std::vector<double> *svr_idx_trk7; std::vector<double> *svr_idx_trk8; std::vector<double> *svr_idx_trk9; std::vector<double> *svr_px; std::vector<double> *svr_py; std::vector<double> *svr_pz; std::vector<double> *svr_e; std::vector<double> *svr_x; std::vector<double> *svr_y; std::vector<double> *svr_z; std::vector<double> *svr_fd_min; std::vector<double> *svr_m_cor; std::vector<double> *jet_idx_pvr; std::vector<double> *jet_px; std::vector<double> *jet_py; std::vector<double> *jet_pz; std::vector<double> *jet_e; std::vector<double> *trk_idx_gen; std::vector<double> *trk_idx_pvr; std::vector<double> *trk_idx_jet; // std::vector<double> *trk_p; // std::vector<double> *trk_pt; std::vector<double> *trk_px; std::vector<double> *trk_py; std::vector<double> *trk_pz; std::vector<double> *trk_e; std::vector<double> *trk_pid; std::vector<double> *trk_q; std::vector<double> *trk_ip; std::vector<double> *trk_ip_chi2; std::vector<double> *trk_pnn_e; std::vector<double> *trk_pnn_mu; std::vector<double> *trk_pnn_pi; std::vector<double> *trk_pnn_k; std::vector<double> *trk_pnn_p; std::vector<double> *trk_ecal; std::vector<double> *trk_hcal; std::vector<double> *trk_prb_ghost; std::vector<double> *trk_type; std::vector<double> *trk_is_mu; std::vector<double> *trk_vid; std::vector<double> *trk_x; std::vector<double> *trk_y; std::vector<double> *trk_z; std::vector<double> *trk_vhit0; std::vector<double> *trk_vhit1; std::vector<double> *trk_vhit2; std::vector<double> *trk_vhit3; std::vector<double> *trk_vhit4; std::vector<double> *trk_vhit5; std::vector<double> *trk_vhit6; std::vector<double> *trk_vhit7; std::vector<double> *trk_vhit8; std::vector<double> *trk_vhit9; std::vector<double> *trk_vhit10; std::vector<double> *trk_vhit11; std::vector<double> *trk_vhit12; std::vector<double> *trk_vhit13; std::vector<double> *trk_vhit14; std::vector<double> *trk_vhit15; std::vector<double> *trk_vhit16; std::vector<double> *trk_vhit17; std::vector<double> *trk_vhit18; std::vector<double> *trk_vhit19; std::vector<double> *trk_vhit20; std::vector<double> *trk_vhit21; std::vector<double> *trk_vhit22; std::vector<double> *trk_vhit23; std::vector<double> *trk_vhit24; std::vector<double> *trk_vhit25; std::vector<double> *trk_vhit26; std::vector<double> *trk_vhit27; std::vector<double> *trk_vhit28; std::vector<double> *trk_vhit29; std::vector<double> *trk_vhit30; std::vector<double> *trk_vhit31; std::vector<double> *trk_vhit32; std::vector<double> *trk_vhit33; std::vector<double> *trk_vhit34; std::vector<double> *trk_vhit35; std::vector<double> *trk_vhit36; std::vector<double> *trk_vhit37; std::vector<double> *trk_vhit38; std::vector<double> *trk_vhit39; std::vector<double> *trk_vhit40; std::vector<double> *trk_vhit41; std::vector<double> *trk_vhit42; std::vector<double> *trk_vhit43; std::vector<double> *trk_vhit44; std::vector<double> *trk_vhit45; std::vector<double> *trk_vhit46; std::vector<double> *trk_vhit47; std::vector<double> *trk_vhit48; std::vector<double> *trk_vhit49; std::vector<double> *trk_vhit50; std::vector<double> *trk_vhit51; std::vector<double> *trk_vhit52; std::vector<double> *trk_vhit53; std::vector<double> *trk_vhit54; std::vector<double> *trk_vhit55; std::vector<double> *trk_vhit56; std::vector<double> *trk_vhit57; std::vector<double> *trk_vhit58; std::vector<double> *trk_vhit59; std::vector<double> *trk_vhit60; std::vector<double> *neu_idx_gen; std::vector<double> *neu_idx_jet; std::vector<double> *neu_px; std::vector<double> *neu_py; std::vector<double> *neu_pz; std::vector<double> *neu_e; std::vector<double> *neu_pid; Double_t evt_pvr_n; // List of branches TBranch *b_gen_idx_pvr; //! TBranch *b_gen_idx_jet; //! TBranch *b_gen_pid; //! TBranch *b_gen_q; //! TBranch *b_gen_px; //! TBranch *b_gen_py; //! TBranch *b_gen_pz; //! TBranch *b_gen_e; //! TBranch *b_gen_x; //! TBranch *b_gen_y; //! TBranch *b_gen_z; //! TBranch *b_pvr_x; //! TBranch *b_pvr_y; //! TBranch *b_pvr_z; //! TBranch *b_pvr_dx; //! TBranch *b_pvr_dy; //! TBranch *b_pvr_dz; //! TBranch *b_pvr_chi2; //! TBranch *b_pvr_ndof; //! TBranch *b_svr_idx_pvr; //! TBranch *b_svr_idx_jet; //! TBranch *b_svr_idx_trk0; //! TBranch *b_svr_idx_trk1; //! TBranch *b_svr_idx_trk2; //! TBranch *b_svr_idx_trk3; //! TBranch *b_svr_idx_trk4; //! TBranch *b_svr_idx_trk5; //! TBranch *b_svr_idx_trk6; //! TBranch *b_svr_idx_trk7; //! TBranch *b_svr_idx_trk8; //! TBranch *b_svr_idx_trk9; //! TBranch *b_svr_px; //! TBranch *b_svr_py; //! TBranch *b_svr_pz; //! TBranch *b_svr_e; //! TBranch *b_svr_x; //! TBranch *b_svr_y; //! TBranch *b_svr_z; //! TBranch *b_svr_fd_min; //! TBranch *b_svr_m_cor; //! TBranch *b_jet_idx_pvr; //! TBranch *b_jet_px; //! TBranch *b_jet_py; //! TBranch *b_jet_pz; //! TBranch *b_jet_e; //! TBranch *b_trk_idx_gen; //! TBranch *b_trk_idx_pvr; //! TBranch *b_trk_idx_jet; //! // TBranch *b_trk_p; //! // TBranch *b_trk_pt; //! TBranch *b_trk_px; //! TBranch *b_trk_py; //! TBranch *b_trk_pz; //! TBranch *b_trk_e; //! TBranch *b_trk_pid; //! TBranch *b_trk_q; //! TBranch *b_trk_ip; //! TBranch *b_trk_ip_chi2; //! TBranch *b_trk_pnn_e; //! TBranch *b_trk_pnn_mu; //! TBranch *b_trk_pnn_pi; //! TBranch *b_trk_pnn_k; //! TBranch *b_trk_pnn_p; //! TBranch *b_trk_ecal; //! TBranch *b_trk_hcal; //! TBranch *b_trk_prb_ghost; //! TBranch *b_trk_type; //! TBranch *b_trk_is_mu; //! TBranch *b_trk_vid; //! TBranch *b_trk_x; //! TBranch *b_trk_y; //! TBranch *b_trk_z; //! TBranch *b_trk_vhit0; //! TBranch *b_trk_vhit1; //! TBranch *b_trk_vhit2; //! TBranch *b_trk_vhit3; //! TBranch *b_trk_vhit4; //! TBranch *b_trk_vhit5; //! TBranch *b_trk_vhit6; //! TBranch *b_trk_vhit7; //! TBranch *b_trk_vhit8; //! TBranch *b_trk_vhit9; //! TBranch *b_trk_vhit10; //! TBranch *b_trk_vhit11; //! TBranch *b_trk_vhit12; //! TBranch *b_trk_vhit13; //! TBranch *b_trk_vhit14; //! TBranch *b_trk_vhit15; //! TBranch *b_trk_vhit16; //! TBranch *b_trk_vhit17; //! TBranch *b_trk_vhit18; //! TBranch *b_trk_vhit19; //! TBranch *b_trk_vhit20; //! TBranch *b_trk_vhit21; //! TBranch *b_trk_vhit22; //! TBranch *b_trk_vhit23; //! TBranch *b_trk_vhit24; //! TBranch *b_trk_vhit25; //! TBranch *b_trk_vhit26; //! TBranch *b_trk_vhit27; //! TBranch *b_trk_vhit28; //! TBranch *b_trk_vhit29; //! TBranch *b_trk_vhit30; //! TBranch *b_trk_vhit31; //! TBranch *b_trk_vhit32; //! TBranch *b_trk_vhit33; //! TBranch *b_trk_vhit34; //! TBranch *b_trk_vhit35; //! TBranch *b_trk_vhit36; //! TBranch *b_trk_vhit37; //! TBranch *b_trk_vhit38; //! TBranch *b_trk_vhit39; //! TBranch *b_trk_vhit40; //! TBranch *b_trk_vhit41; //! TBranch *b_trk_vhit42; //! TBranch *b_trk_vhit43; //! TBranch *b_trk_vhit44; //! TBranch *b_trk_vhit45; //! TBranch *b_trk_vhit46; //! TBranch *b_trk_vhit47; //! TBranch *b_trk_vhit48; //! TBranch *b_trk_vhit49; //! TBranch *b_trk_vhit50; //! TBranch *b_trk_vhit51; //! TBranch *b_trk_vhit52; //! TBranch *b_trk_vhit53; //! TBranch *b_trk_vhit54; //! TBranch *b_trk_vhit55; //! TBranch *b_trk_vhit56; //! TBranch *b_trk_vhit57; //! TBranch *b_trk_vhit58; //! TBranch *b_trk_vhit59; //! TBranch *b_trk_vhit60; //! TBranch *b_neu_idx_gen; //! TBranch *b_neu_idx_jet; //! TBranch *b_neu_px; //! TBranch *b_neu_py; //! TBranch *b_neu_pz; //! TBranch *b_neu_e; //! TBranch *b_neu_pid; //! TBranch *b_evt_pvr_n; //! makeIPMap(TTree *tree=0); virtual ~makeIPMap(); virtual Int_t Cut(Long64_t entry); virtual Int_t GetEntry(Long64_t entry); virtual Long64_t LoadTree(Long64_t entry); virtual void Init(TTree *tree); virtual void Loop(); virtual Bool_t Notify(); virtual void Show(Long64_t entry = -1); int getNSharedVeloHits(int idx, int idxj); }; #endif #ifdef makeIPMap_cxx makeIPMap::makeIPMap(TTree *tree) : fChain(0) { // if parameter tree is not specified (or zero), connect the file // used to generate this class and read the Tree. if (tree == 0) { TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("/tmp/dcraik/lightjets_filtered.root"); if (!f || !f->IsOpen()) { f = new TFile("/tmp/dcraik/lightjets_filtered.root"); } f->GetObject("data",tree); } Init(tree); } makeIPMap::~makeIPMap() { if (!fChain) return; delete fChain->GetCurrentFile(); } Int_t makeIPMap::GetEntry(Long64_t entry) { // Read contents of entry. if (!fChain) return 0; return fChain->GetEntry(entry); } Long64_t makeIPMap::LoadTree(Long64_t entry) { // Set the environment to read one entry if (!fChain) return -5; Long64_t centry = fChain->LoadTree(entry); if (centry < 0) return centry; if (fChain->GetTreeNumber() != fCurrent) { fCurrent = fChain->GetTreeNumber(); Notify(); } return centry; } void makeIPMap::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set object pointer gen_idx_pvr = 0; gen_idx_jet = 0; gen_pid = 0; gen_q = 0; gen_px = 0; gen_py = 0; gen_pz = 0; gen_e = 0; gen_x = 0; gen_y = 0; gen_z = 0; pvr_x = 0; pvr_y = 0; pvr_z = 0; pvr_dx = 0; pvr_dy = 0; pvr_dz = 0; pvr_chi2 = 0; pvr_ndof = 0; svr_idx_pvr = 0; svr_idx_jet = 0; svr_idx_trk0 = 0; svr_idx_trk1 = 0; svr_idx_trk2 = 0; svr_idx_trk3 = 0; svr_idx_trk4 = 0; svr_idx_trk5 = 0; svr_idx_trk6 = 0; svr_idx_trk7 = 0; svr_idx_trk8 = 0; svr_idx_trk9 = 0; svr_px = 0; svr_py = 0; svr_pz = 0; svr_e = 0; svr_x = 0; svr_y = 0; svr_z = 0; svr_fd_min = 0; svr_m_cor = 0; jet_idx_pvr = 0; jet_px = 0; jet_py = 0; jet_pz = 0; jet_e = 0; trk_idx_gen = 0; trk_idx_pvr = 0; trk_idx_jet = 0; // trk_p = 0; // trk_pt = 0; trk_px = 0; trk_py = 0; trk_pz = 0; trk_e = 0; trk_pid = 0; trk_q = 0; trk_ip = 0; trk_ip_chi2 = 0; trk_pnn_e = 0; trk_pnn_mu = 0; trk_pnn_pi = 0; trk_pnn_k = 0; trk_pnn_p = 0; trk_ecal = 0; trk_hcal = 0; trk_prb_ghost = 0; trk_type = 0; trk_is_mu = 0; trk_vid = 0; trk_x = 0; trk_y = 0; trk_z = 0; trk_vhit0 = 0; trk_vhit1 = 0; trk_vhit2 = 0; trk_vhit3 = 0; trk_vhit4 = 0; trk_vhit5 = 0; trk_vhit6 = 0; trk_vhit7 = 0; trk_vhit8 = 0; trk_vhit9 = 0; trk_vhit10 = 0; trk_vhit11 = 0; trk_vhit12 = 0; trk_vhit13 = 0; trk_vhit14 = 0; trk_vhit15 = 0; trk_vhit16 = 0; trk_vhit17 = 0; trk_vhit18 = 0; trk_vhit19 = 0; trk_vhit20 = 0; trk_vhit21 = 0; trk_vhit22 = 0; trk_vhit23 = 0; trk_vhit24 = 0; trk_vhit25 = 0; trk_vhit26 = 0; trk_vhit27 = 0; trk_vhit28 = 0; trk_vhit29 = 0; trk_vhit30 = 0; trk_vhit31 = 0; trk_vhit32 = 0; trk_vhit33 = 0; trk_vhit34 = 0; trk_vhit35 = 0; trk_vhit36 = 0; trk_vhit37 = 0; trk_vhit38 = 0; trk_vhit39 = 0; trk_vhit40 = 0; trk_vhit41 = 0; trk_vhit42 = 0; trk_vhit43 = 0; trk_vhit44 = 0; trk_vhit45 = 0; trk_vhit46 = 0; trk_vhit47 = 0; trk_vhit48 = 0; trk_vhit49 = 0; trk_vhit50 = 0; trk_vhit51 = 0; trk_vhit52 = 0; trk_vhit53 = 0; trk_vhit54 = 0; trk_vhit55 = 0; trk_vhit56 = 0; trk_vhit57 = 0; trk_vhit58 = 0; trk_vhit59 = 0; trk_vhit60 = 0; neu_idx_gen = 0; neu_idx_jet = 0; neu_px = 0; neu_py = 0; neu_pz = 0; neu_e = 0; neu_pid = 0; // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fCurrent = -1; fChain->SetMakeClass(1); fChain->SetBranchAddress("gen_idx_pvr", &gen_idx_pvr, &b_gen_idx_pvr); fChain->SetBranchAddress("gen_idx_jet", &gen_idx_jet, &b_gen_idx_jet); fChain->SetBranchAddress("gen_pid", &gen_pid, &b_gen_pid); fChain->SetBranchAddress("gen_q", &gen_q, &b_gen_q); fChain->SetBranchAddress("gen_px", &gen_px, &b_gen_px); fChain->SetBranchAddress("gen_py", &gen_py, &b_gen_py); fChain->SetBranchAddress("gen_pz", &gen_pz, &b_gen_pz); fChain->SetBranchAddress("gen_e", &gen_e, &b_gen_e); fChain->SetBranchAddress("gen_x", &gen_x, &b_gen_x); fChain->SetBranchAddress("gen_y", &gen_y, &b_gen_y); fChain->SetBranchAddress("gen_z", &gen_z, &b_gen_z); fChain->SetBranchAddress("pvr_x", &pvr_x, &b_pvr_x); fChain->SetBranchAddress("pvr_y", &pvr_y, &b_pvr_y); fChain->SetBranchAddress("pvr_z", &pvr_z, &b_pvr_z); fChain->SetBranchAddress("pvr_dx", &pvr_dx, &b_pvr_dx); fChain->SetBranchAddress("pvr_dy", &pvr_dy, &b_pvr_dy); fChain->SetBranchAddress("pvr_dz", &pvr_dz, &b_pvr_dz); fChain->SetBranchAddress("pvr_chi2", &pvr_chi2, &b_pvr_chi2); fChain->SetBranchAddress("pvr_ndof", &pvr_ndof, &b_pvr_ndof); fChain->SetBranchAddress("svr_idx_pvr", &svr_idx_pvr, &b_svr_idx_pvr); fChain->SetBranchAddress("svr_idx_jet", &svr_idx_jet, &b_svr_idx_jet); fChain->SetBranchAddress("svr_idx_trk0", &svr_idx_trk0, &b_svr_idx_trk0); fChain->SetBranchAddress("svr_idx_trk1", &svr_idx_trk1, &b_svr_idx_trk1); fChain->SetBranchAddress("svr_idx_trk2", &svr_idx_trk2, &b_svr_idx_trk2); fChain->SetBranchAddress("svr_idx_trk3", &svr_idx_trk3, &b_svr_idx_trk3); fChain->SetBranchAddress("svr_idx_trk4", &svr_idx_trk4, &b_svr_idx_trk4); fChain->SetBranchAddress("svr_idx_trk5", &svr_idx_trk5, &b_svr_idx_trk5); fChain->SetBranchAddress("svr_idx_trk6", &svr_idx_trk6, &b_svr_idx_trk6); fChain->SetBranchAddress("svr_idx_trk7", &svr_idx_trk7, &b_svr_idx_trk7); fChain->SetBranchAddress("svr_idx_trk8", &svr_idx_trk8, &b_svr_idx_trk8); fChain->SetBranchAddress("svr_idx_trk9", &svr_idx_trk9, &b_svr_idx_trk9); fChain->SetBranchAddress("svr_px", &svr_px, &b_svr_px); fChain->SetBranchAddress("svr_py", &svr_py, &b_svr_py); fChain->SetBranchAddress("svr_pz", &svr_pz, &b_svr_pz); fChain->SetBranchAddress("svr_e", &svr_e, &b_svr_e); fChain->SetBranchAddress("svr_x", &svr_x, &b_svr_x); fChain->SetBranchAddress("svr_y", &svr_y, &b_svr_y); fChain->SetBranchAddress("svr_z", &svr_z, &b_svr_z); fChain->SetBranchAddress("svr_fd_min", &svr_fd_min, &b_svr_fd_min); fChain->SetBranchAddress("svr_m_cor", &svr_m_cor, &b_svr_m_cor); fChain->SetBranchAddress("jet_idx_pvr", &jet_idx_pvr, &b_jet_idx_pvr); fChain->SetBranchAddress("jet_px", &jet_px, &b_jet_px); fChain->SetBranchAddress("jet_py", &jet_py, &b_jet_py); fChain->SetBranchAddress("jet_pz", &jet_pz, &b_jet_pz); fChain->SetBranchAddress("jet_e", &jet_e, &b_jet_e); fChain->SetBranchAddress("trk_idx_gen", &trk_idx_gen, &b_trk_idx_gen); fChain->SetBranchAddress("trk_idx_pvr", &trk_idx_pvr, &b_trk_idx_pvr); fChain->SetBranchAddress("trk_idx_jet", &trk_idx_jet, &b_trk_idx_jet); // fChain->SetBranchAddress("trk_p", &trk_p, &b_trk_p); // fChain->SetBranchAddress("trk_pt", &trk_pt, &b_trk_pt); fChain->SetBranchAddress("trk_px", &trk_px, &b_trk_px); fChain->SetBranchAddress("trk_py", &trk_py, &b_trk_py); fChain->SetBranchAddress("trk_pz", &trk_pz, &b_trk_pz); fChain->SetBranchAddress("trk_e", &trk_e, &b_trk_e); fChain->SetBranchAddress("trk_pid", &trk_pid, &b_trk_pid); fChain->SetBranchAddress("trk_q", &trk_q, &b_trk_q); fChain->SetBranchAddress("trk_ip", &trk_ip, &b_trk_ip); fChain->SetBranchAddress("trk_ip_chi2", &trk_ip_chi2, &b_trk_ip_chi2); fChain->SetBranchAddress("trk_pnn_e", &trk_pnn_e, &b_trk_pnn_e); fChain->SetBranchAddress("trk_pnn_mu", &trk_pnn_mu, &b_trk_pnn_mu); fChain->SetBranchAddress("trk_pnn_pi", &trk_pnn_pi, &b_trk_pnn_pi); fChain->SetBranchAddress("trk_pnn_k", &trk_pnn_k, &b_trk_pnn_k); fChain->SetBranchAddress("trk_pnn_p", &trk_pnn_p, &b_trk_pnn_p); fChain->SetBranchAddress("trk_ecal", &trk_ecal, &b_trk_ecal); fChain->SetBranchAddress("trk_hcal", &trk_hcal, &b_trk_hcal); fChain->SetBranchAddress("trk_prb_ghost", &trk_prb_ghost, &b_trk_prb_ghost); fChain->SetBranchAddress("trk_type", &trk_type, &b_trk_type); fChain->SetBranchAddress("trk_is_mu", &trk_is_mu, &b_trk_is_mu); fChain->SetBranchAddress("trk_vid", &trk_vid, &b_trk_vid); fChain->SetBranchAddress("trk_x", &trk_x, &b_trk_x); fChain->SetBranchAddress("trk_y", &trk_y, &b_trk_y); fChain->SetBranchAddress("trk_z", &trk_z, &b_trk_z); fChain->SetBranchAddress("trk_vhit0", &trk_vhit0, &b_trk_vhit0); fChain->SetBranchAddress("trk_vhit1", &trk_vhit1, &b_trk_vhit1); fChain->SetBranchAddress("trk_vhit2", &trk_vhit2, &b_trk_vhit2); fChain->SetBranchAddress("trk_vhit3", &trk_vhit3, &b_trk_vhit3); fChain->SetBranchAddress("trk_vhit4", &trk_vhit4, &b_trk_vhit4); fChain->SetBranchAddress("trk_vhit5", &trk_vhit5, &b_trk_vhit5); fChain->SetBranchAddress("trk_vhit6", &trk_vhit6, &b_trk_vhit6); fChain->SetBranchAddress("trk_vhit7", &trk_vhit7, &b_trk_vhit7); fChain->SetBranchAddress("trk_vhit8", &trk_vhit8, &b_trk_vhit8); fChain->SetBranchAddress("trk_vhit9", &trk_vhit9, &b_trk_vhit9); fChain->SetBranchAddress("trk_vhit10", &trk_vhit10, &b_trk_vhit10); fChain->SetBranchAddress("trk_vhit11", &trk_vhit11, &b_trk_vhit11); fChain->SetBranchAddress("trk_vhit12", &trk_vhit12, &b_trk_vhit12); fChain->SetBranchAddress("trk_vhit13", &trk_vhit13, &b_trk_vhit13); fChain->SetBranchAddress("trk_vhit14", &trk_vhit14, &b_trk_vhit14); fChain->SetBranchAddress("trk_vhit15", &trk_vhit15, &b_trk_vhit15); fChain->SetBranchAddress("trk_vhit16", &trk_vhit16, &b_trk_vhit16); fChain->SetBranchAddress("trk_vhit17", &trk_vhit17, &b_trk_vhit17); fChain->SetBranchAddress("trk_vhit18", &trk_vhit18, &b_trk_vhit18); fChain->SetBranchAddress("trk_vhit19", &trk_vhit19, &b_trk_vhit19); fChain->SetBranchAddress("trk_vhit20", &trk_vhit20, &b_trk_vhit20); fChain->SetBranchAddress("trk_vhit21", &trk_vhit21, &b_trk_vhit21); fChain->SetBranchAddress("trk_vhit22", &trk_vhit22, &b_trk_vhit22); fChain->SetBranchAddress("trk_vhit23", &trk_vhit23, &b_trk_vhit23); fChain->SetBranchAddress("trk_vhit24", &trk_vhit24, &b_trk_vhit24); fChain->SetBranchAddress("trk_vhit25", &trk_vhit25, &b_trk_vhit25); fChain->SetBranchAddress("trk_vhit26", &trk_vhit26, &b_trk_vhit26); fChain->SetBranchAddress("trk_vhit27", &trk_vhit27, &b_trk_vhit27); fChain->SetBranchAddress("trk_vhit28", &trk_vhit28, &b_trk_vhit28); fChain->SetBranchAddress("trk_vhit29", &trk_vhit29, &b_trk_vhit29); fChain->SetBranchAddress("trk_vhit30", &trk_vhit30, &b_trk_vhit30); fChain->SetBranchAddress("trk_vhit31", &trk_vhit31, &b_trk_vhit31); fChain->SetBranchAddress("trk_vhit32", &trk_vhit32, &b_trk_vhit32); fChain->SetBranchAddress("trk_vhit33", &trk_vhit33, &b_trk_vhit33); fChain->SetBranchAddress("trk_vhit34", &trk_vhit34, &b_trk_vhit34); fChain->SetBranchAddress("trk_vhit35", &trk_vhit35, &b_trk_vhit35); fChain->SetBranchAddress("trk_vhit36", &trk_vhit36, &b_trk_vhit36); fChain->SetBranchAddress("trk_vhit37", &trk_vhit37, &b_trk_vhit37); fChain->SetBranchAddress("trk_vhit38", &trk_vhit38, &b_trk_vhit38); fChain->SetBranchAddress("trk_vhit39", &trk_vhit39, &b_trk_vhit39); fChain->SetBranchAddress("trk_vhit40", &trk_vhit40, &b_trk_vhit40); fChain->SetBranchAddress("trk_vhit41", &trk_vhit41, &b_trk_vhit41); fChain->SetBranchAddress("trk_vhit42", &trk_vhit42, &b_trk_vhit42); fChain->SetBranchAddress("trk_vhit43", &trk_vhit43, &b_trk_vhit43); fChain->SetBranchAddress("trk_vhit44", &trk_vhit44, &b_trk_vhit44); fChain->SetBranchAddress("trk_vhit45", &trk_vhit45, &b_trk_vhit45); fChain->SetBranchAddress("trk_vhit46", &trk_vhit46, &b_trk_vhit46); fChain->SetBranchAddress("trk_vhit47", &trk_vhit47, &b_trk_vhit47); fChain->SetBranchAddress("trk_vhit48", &trk_vhit48, &b_trk_vhit48); fChain->SetBranchAddress("trk_vhit49", &trk_vhit49, &b_trk_vhit49); fChain->SetBranchAddress("trk_vhit50", &trk_vhit50, &b_trk_vhit50); fChain->SetBranchAddress("trk_vhit51", &trk_vhit51, &b_trk_vhit51); fChain->SetBranchAddress("trk_vhit52", &trk_vhit52, &b_trk_vhit52); fChain->SetBranchAddress("trk_vhit53", &trk_vhit53, &b_trk_vhit53); fChain->SetBranchAddress("trk_vhit54", &trk_vhit54, &b_trk_vhit54); fChain->SetBranchAddress("trk_vhit55", &trk_vhit55, &b_trk_vhit55); fChain->SetBranchAddress("trk_vhit56", &trk_vhit56, &b_trk_vhit56); fChain->SetBranchAddress("trk_vhit57", &trk_vhit57, &b_trk_vhit57); fChain->SetBranchAddress("trk_vhit58", &trk_vhit58, &b_trk_vhit58); fChain->SetBranchAddress("trk_vhit59", &trk_vhit59, &b_trk_vhit59); fChain->SetBranchAddress("trk_vhit60", &trk_vhit60, &b_trk_vhit60); fChain->SetBranchAddress("neu_idx_gen", &neu_idx_gen, &b_neu_idx_gen); fChain->SetBranchAddress("neu_idx_jet", &neu_idx_jet, &b_neu_idx_jet); fChain->SetBranchAddress("neu_px", &neu_px, &b_neu_px); fChain->SetBranchAddress("neu_py", &neu_py, &b_neu_py); fChain->SetBranchAddress("neu_pz", &neu_pz, &b_neu_pz); fChain->SetBranchAddress("neu_e", &neu_e, &b_neu_e); fChain->SetBranchAddress("neu_pid", &neu_pid, &b_neu_pid); fChain->SetBranchAddress("evt_pvr_n", &evt_pvr_n, &b_evt_pvr_n); Notify(); } Bool_t makeIPMap::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return kTRUE; } void makeIPMap::Show(Long64_t entry) { // Print contents of entry. // If entry is not specified, print current entry if (!fChain) return; fChain->Show(entry); } Int_t makeIPMap::Cut(Long64_t entry) { // This function may be called from Loop. // returns 1 if entry is accepted. // returns -1 otherwise. return 1; } #endif // #ifdef makeIPMap_cxx
f02229cceb0afb3fcc84cf6acd55e3d8d2132c3c
ee5e0c7f802626b33668e7686d179d5d0ea5f449
/windows_ce_5_121231/WINCE500/PRIVATE/WINCEOS/COMM/BLUETOOTH/AV/AVCTP/avctpuser.hpp
9cbf5948b7b61c890142420807c0beb341c4fcfe
[]
no_license
xiaoqgao/windows_ce_5_121231
e700da986df7fe7d8a691a347f76885aac8c03b3
5ad37f4d1e287bb81a238b7d7a8b2e1185fe90ed
refs/heads/master
2022-12-25T02:28:44.898011
2020-09-28T20:03:03
2020-09-28T20:03:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,215
hpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft shared // source or premium shared source license agreement under which you licensed // this source code. If you did not accept the terms of the license agreement, // you are not authorized to use this source code. For the terms of the license, // please see the license agreement between you and Microsoft or, if applicable, // see the SOURCE.RTF on your install media or the root of your tools installation. // THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES. // #ifndef __AVCTP_USER_HPP__ #define __AVCTP_USER_HPP__ #include <bt_avctp.h> // these really belong in bt_ddi.h enum ConnResponse { ConnSuccess_e, ConnPending_e, ConnRefusedPSMNotSupp_e, ConnRefusedSecurityBlock_e, ConnRefusedNoResources_e }; enum ConnStatus { NoInfo_e, AuthenPending_e, AuthorPending_e, }; const int AvctpPacketHdrSize = 3; const int AvctpFragStartHdrSize = 4; const int AvctpFragContHdrSize = 1; #pragma pack(push) #pragma pack(1) typedef struct _AvctpCommonPacketHdr { unsigned char IPID : 1; unsigned char CR : 1; unsigned char PacketType : 2; unsigned char Transaction : 4; } AvctpCommonPacketHdr; typedef struct _AvctpPacketHdr { AvctpCommonPacketHdr Common; UNALIGNED unsigned short ProfileID; } AvctpPacketHdr; typedef struct _AvctpFragStartHdr { AvctpCommonPacketHdr Common; unsigned char cPackets; unsigned short ProfileID; } AvctpFragStartHdr; typedef struct _AvctpFragContHdr { AvctpCommonPacketHdr Common; } AvctpFragContHdr; #pragma pack(pop) enum ChannelState { ChannelOpen_e, ChannelConnecting_e, ChannelConnectInd_e, ChannelConfig_e, ChannelConfigLocalDone_e, ChannelConfigRemoteDone_e, ChannelEstablished_e, ChannelClosing_e }; class AvctpChannel { friend class Avctp; friend class AvctpUser; AvctpChannel *m_pNext; BD_ADDR m_BdAddr; int m_cUsers; int m_cPendingInd; // Pending indications ChannelState m_ChannelState; class AvctpUser *m_pUser; unsigned short m_ProfileID; unsigned short m_cid; // channel id unsigned short m_inMTU; unsigned short m_outMTU; unsigned short m_FlushTO; unsigned char m_Identifier; bool m_fIncoming; }; enum UserChannelState { UChannelOpen_e, UChannelConnecting_e, UChannelConnectInd_e, UChannelConnectIndNotified_e, UChannelConfig_e, UChannelEstablished_e, UChannelClosing_e }; class AvctpUserChannel { friend class Avctp; friend class AvctpUser; AvctpUserChannel *m_pNext; AvctpChannel *m_pChannel; // ptr to the real channel UserChannelState m_UChannelState; unsigned int m_fNotified; unsigned char m_Identifier; AvctpUserChannel(AvctpChannel *pChannel); }; enum AvctpReqType { ConnectReq_t = 0x20, DisconnectReq_t, SendReq_t }; class AvctpRequest { AvctpRequest *m_pNext; AvctpReqType m_What; AvctpUser *m_pUser; BD_ADDR m_BdAddr; }; enum AvctpUserState { StateOpen_e, StateConnected_e, StateClosed_e }; // // The AvctpUser class describes an upper layer that is sitting // on top of AVCTP. An instance of this struct is created when the // upper layer calls EstablishDeviceContext to register itself. // class AvctpUser : public SVSRefObj { public: AvctpUser *m_pNext; AVCT_EVENT_INDICATION m_IndicateFns; // Upper layer events AVCT_CALLBACKS m_CallbackFns; // Upper layer callbacks HANDLE m_hContext; // Unique handle to an particular owner context void *m_pUserContext; AvctpUserChannel *m_pUserChannels; ushort m_ProfileId; //AvctpUserState m_State; AvctpUserChannel **_FindUserChannel(AvctpChannel *pChannel); AvctpUserChannel *FindUserChannel(AvctpChannel *pChannel); void DeleteUserChannel(AvctpChannel *pChannel); void InsertUserChannel(AvctpUserChannel *pChannel); void SetChannelState(AvctpChannel *pChannel, ChannelState NewChState); int ConnectReqIn (BD_ADDR *pAddr, ushort PID, LocalSideConfig *pConfig); int ConnectRspIn(BD_ADDR *pAddr, ushort ConnectResult, ushort Status, LocalSideConfig *pConfig); int DisconnectReqIn(BD_ADDR *pAddr, ushort PID); ushort CalculatePackets(ushort cData, ushort Mtu); int SendFragPkt(AvctpChannel *pChannel, BD_ADDR * pAddr, uchar Transaction, uchar Type, ushort ProfileId, BD_BUFFER *pBdSendBuf); int SendMsgIn(BD_ADDR *pAddr, uchar Transaction, uchar Type, ushort PID, BD_BUFFER *pBdBuf); }; #endif // __AVCTP_USER_HPP__
94233d1f0d1518a5062dc7b0444c4d2fc175bf54
f3a77402100c3ca6d7386c24c4c32e89ce628234
/Zombie Arena/Zombie.h
b7cb7dd3b2c863c07bcc0fe58d3f76ef6636d803
[]
no_license
Ruaffu/old-projects
8788ba130cee9479ab4413c211ad8aeab3fa8819
085c6e61e09627817ddae808b2fe7ed6c50feda6
refs/heads/main
2023-05-02T16:30:33.215878
2021-05-19T13:13:51
2021-05-19T13:13:51
368,873,332
1
0
null
null
null
null
UTF-8
C++
false
false
1,179
h
#pragma once #include <SFML/Graphics.hpp> using namespace sf; class Zombie { private: // How fast is each zombie type? const float BLOATER_SPEED = 40; const float CHASER_SPEED = 80; const float CRAWLER_SPEED = 20; // How tough is each zombie type? const float BLOATER_HEALTH = 5; const float CHASER_HEALTH = 1; const float CRAWLER_HEALTH = 3; // Make each zombie vary its speed slightly const int MAX_VARRIANCE = 30; const int OFFSET = 101 - MAX_VARRIANCE; // Where is this zombie? Vector2f m_Position; // A sprite for the zombie Sprite m_Sprite; // How fast can this one run/crawl? float m_Speed; // How much health has it got? float m_Health; // Is it still alive? bool m_Alive; // Public prototypes go here public: // Handle when a bullet hits a zombie bool hit(); // Find out if the zombie is alive bool isAlive(); // Spawn a new zombie void spawn(float startX, float startY, int type, int seed); // return a rectangle that is the position in the world FloatRect getPosition(); // GEt copy of the sprite to draw Sprite getSprite(); // update the zombie each frame void update(float elapsedTime, Vector2f playerLocation); };
41fedb9a0a19333397f6c0ed1aa2369b0237787e
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/sync_engine_context.h
2a90d849e6404259a9a846db7b7621a3f85aa8d5
[ "MIT", "BSD-3-Clause" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
1,197
h
// 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. #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ #include "base/basictypes.h" namespace base { class SequencedTaskRunner; } namespace drive { class DriveServiceInterface; class DriveUploaderInterface; } namespace sync_file_system { class RemoteChangeProcessor; namespace drive_backend { class MetadataDatabase; class SyncEngineContext { public: SyncEngineContext() {} ~SyncEngineContext() {} virtual drive::DriveServiceInterface* GetDriveService() = 0; virtual drive::DriveUploaderInterface* GetDriveUploader() = 0; virtual MetadataDatabase* GetMetadataDatabase() = 0; virtual RemoteChangeProcessor* GetRemoteChangeProcessor() = 0; virtual base::SequencedTaskRunner* GetBlockingTaskRunner() = 0; private: DISALLOW_COPY_AND_ASSIGN(SyncEngineContext); }; } // namespace drive_backend } // namespace sync_file_system #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_
d370cdfb7ae013a1143835a65059c1981cb06e45
8add3ab7abfb62c9b8e6db64c053d30944d05765
/SciCalc/Functions.h
fbcb50172a1c320c7efa0400f2bf3568481639f3
[]
no_license
YakusActual/SciCalc
aa96c561ca483f5fa5ba193e77c90642ca8fd22d
d5941cc85e684627a5292f07755ad0d0f28486f5
refs/heads/master
2020-07-21T14:49:08.375309
2016-11-15T19:01:54
2016-11-15T19:01:54
73,845,905
0
0
null
null
null
null
UTF-8
C++
false
false
1,613
h
#pragma once #include <iostream> #include <string> #include <cmath> using namespace std; #ifndef FUNCTIONS_H #define FUNCTIONS_H class Functions { public: Functions() { m_isFirstDblSet = false; m_isSecondDblSet = false; m_dblOne = 0; m_dblTwo = 0; m_operand = '@'; } void useSpecialFunction(string funcType) { m_funcType = funcType; } void setOperand(char operand) { m_operand = operand; } void setNum(double n) { if (!m_isFirstDblSet) { m_dblOne = n; m_isFirstDblSet = true; } else if (m_isFirstDblSet && !m_isSecondDblSet) { m_dblTwo = n; m_isSecondDblSet = true; } } double getResult() { double result = 0; switch (m_operand) { case '+': result = add(); break; case '-': result = subtract(); break; case '*': result = multiply(); break; case '/': result = divide(); break; default: result = m_dblOne; } m_isSecondDblSet = false; return result; } void reset() { m_dblOne = 0; m_dblTwo = 0; m_isFirstDblSet = false; m_isSecondDblSet = false; m_operand = '@'; } private: bool m_isFirstDblSet; bool m_isSecondDblSet; string m_funcType; char m_operand; double m_dblOne; double m_dblTwo; public: double add() { m_dblOne = m_dblOne + m_dblTwo; return m_dblOne; } double subtract() { m_dblOne = m_dblOne - m_dblTwo; return m_dblOne; } double multiply() { m_dblOne = m_dblOne * m_dblTwo; return m_dblOne; } double divide() { m_dblOne = m_dblOne / m_dblTwo; return m_dblOne; } }; #endif
7e861b2997e6669207af7ac0ce933a81e2514499
a130cac72c2b60d15f34c3013ad23367aeffcddc
/unity/IFSGARProj/Library/Il2cppBuildCache/iOS/il2cppOutput/Generics27.cpp
dd501a76fbf05e4a673e52da17242314a7f84ade
[]
no_license
SouvikNeosoft/IFSGAR-TEST-ANDROID
776a8a27002be3523cd88e0548da3c40fbfb8ceb
8ced43a37dd879e85b4d0729dc0c54ee87deceee
refs/heads/master
2023-08-17T10:59:10.269961
2021-10-07T13:30:51
2021-10-07T13:30:51
413,763,976
0
0
null
null
null
null
UTF-8
C++
false
false
2,423,196
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> 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, 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 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> 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 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 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 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> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1, 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 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.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32> struct U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object> struct U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D; // System.Action`1<System.IAsyncResult> struct Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76; // System.Action`1<System.Object> struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Collections.Concurrent.ConcurrentDictionary`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6; // System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object> struct ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t93AD246458B1FCACF9EE33160B2DB2E06AB42CD8; // System.Collections.Generic.Dictionary`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC; // System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E; // System.Collections.Generic.Dictionary`2<System.Guid,System.Object> struct Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB; // 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.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> struct Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8; // System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_t7DFDECE3AD515844324382F8BBCAC2975ABEE63A; // System.Func`1<System.Nullable`1<System.Int32>> struct Func_1_tDC30C5284AE787359DC813472C98404F72620D79; // System.Func`1<System.ValueTuple`2<System.Boolean,System.Object>> struct Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A; // System.Func`1<System.ValueTuple`2<System.Int32,System.Int32>> struct Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3; // System.Func`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD; // System.Func`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B; // System.Func`1<System.Boolean> struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F; // System.Func`1<System.Int32> struct Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA; // System.Func`1<System.Object> struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49; // System.Func`1<System.Threading.Tasks.VoidTaskResult> struct Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6; // System.Func`1<System.Threading.Tasks.Task/ContingentProperties> struct Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B; // System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>> struct Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.Task`1<System.Object>>> struct Func_2_tDD8DCF5D5D159D41F48AB654CB896F021E874626; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>> struct Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>> struct Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>> struct Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>> struct Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479; // 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.IAsyncResult,System.Int32> struct Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892; // System.Func`2<System.IAsyncResult,System.Object> struct Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED; // System.Func`2<System.IAsyncResult,System.Threading.Tasks.VoidTaskResult> struct Func_2_t93436DB66248BF735350EEC072257D84453153ED; // System.Func`2<System.Object,System.Nullable`1<System.Int32>> struct Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE; // System.Func`2<System.Object,System.ValueTuple`2<System.Boolean,System.Object>> struct Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52; // System.Func`2<System.Object,System.ValueTuple`2<System.Int32,System.Int32>> struct Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9; // System.Func`2<System.Object,System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0; // System.Func`2<System.Object,System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0; // 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.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020; // System.Func`3<System.Object,System.Object,System.Object> struct Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27; // System.Collections.Generic.IEnumerator`1<System.Boolean> struct IEnumerator_1_tD64DA1873BBF65E545905171348E0241A3B706C0; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t2DC97C7D486BF9E077C2BC2E517E434F393AA76E; // System.Collections.Generic.IEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage> struct IEnumerator_1_t84547AEA932F6712CEA0214E25674A5736092046; // System.Collections.Generic.IEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject> struct IEnumerator_1_tACD615C9F4131C41BE7409B454297F75750E1265; // System.Collections.Generic.IEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEqualityComparer_1_tDDB2CE7DB2A80166371DA3090CF4CF156F3510FE; // System.Collections.Generic.IEqualityComparer`1<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>> struct IEqualityComparer_1_tCCBA74E647FABB75D8C6D5D91FEA73D058ADED82; // System.Collections.Generic.IEqualityComparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct IEqualityComparer_1_tCBD2100919513E386AF6D497D7E2849123F5A560; // 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<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.Runtime.ExceptionServices.ExceptionDispatchInfo> struct IList_1_t2407D90F5702DFEBD8FD81C1CB0FD8F663D35D68; // System.Collections.Generic.IList`1<System.Object> struct IList_1_t707982BD768B18C51D263C759F33BCDBDFA44901; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct KeyCollection_tF0ADF76411546CC7F3E042DEDA9DF17F2CF9ACA9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,System.Object> struct KeyCollection_tE55A07F083598A6E2C5D0D9D49058DC6E4D51B2E; // 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.Boolean> struct KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32> struct KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9; // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> struct List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD; // System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct List_1_tF1A7EE4FBAFE8B979C23198BA20A21E50C92CA17; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> struct List_1_tA3E7ECFCA71D1B53362EA1A7ED7D095F0C221DFB; // System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A; // UnityEngine.Rendering.ObjectPool`1<System.Object> struct ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB; // System.Predicate`1<System.Object> struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // System.Predicate`1<System.Threading.Tasks.Task> struct Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD; // System.Data.RBTree`1<System.Int32> struct RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11; // System.Data.RBTree`1<System.Object> struct RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t333C4F81656CB6CBFC971E543F8E9995A08F400B; // System.Collections.Generic.Stack`1<System.Object> struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct Tables_t0EC55BA35E1A6F7B6280F15B3FEDC6F7043802E4; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object> struct Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA; // System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>> struct TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.Task`1<System.Object>> struct TaskFactory_1_t6B2C06B3994180B328B52527F3543CECE0CF681F; // System.Threading.Tasks.TaskFactory`1<System.ValueTuple`2<System.Boolean,System.Object>> struct TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE; // System.Threading.Tasks.TaskFactory`1<System.ValueTuple`2<System.Int32,System.Int32>> struct TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD; // System.Threading.Tasks.TaskFactory`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF; // System.Threading.Tasks.TaskFactory`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4; // 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.Nullable`1<System.Int32>> struct Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581; // System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>> struct Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF; // System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>> struct Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F; // System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B; // System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF; // 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; // Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546; // Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Object,System.Object> struct ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C; // 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.Data.RBTree`1/TreePage<System.Int32> struct TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10; // System.Data.RBTree`1/TreePage<System.Object> struct TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC; // System.Runtime.CompilerServices.TrueReadOnlyCollection`1<System.Object> struct TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A; // System.Tuple`2<System.Guid,System.Object> struct Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1; // 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.Boolean,System.Boolean,System.Boolean,System.Boolean> struct Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF; // System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean> struct Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808; // 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.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween> struct TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D; // UnityEngine.Events.UnityAction`1<System.Boolean> struct UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF; // UnityEngine.Events.UnityAction`1<UnityEngine.Color> struct UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE; // 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`1<UnityEngine.Vector2> struct UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0; // 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.Boolean> struct UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB; // UnityEngine.Events.UnityEvent`1<UnityEngine.Color> struct UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350; // UnityEngine.Events.UnityEvent`1<System.Int32> struct UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF; // UnityEngine.Events.UnityEvent`1<System.Object> struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F; // UnityEngine.Events.UnityEvent`1<System.Single> struct UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC; // UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2> struct UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C; // 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; // System.Threading.Tasks.UnwrapPromise`1<System.Object> struct UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151; // System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object> struct ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778; // 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.Boolean> struct ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32> struct ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object> struct ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63; // System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>[] struct EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB; // System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>[] struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>[] struct EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B; // 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.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>[] struct EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0; // System.Data.RBTree`1/Node<System.Int32>[] struct NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441; // System.Data.RBTree`1/Node<System.Object>[] struct NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312; // System.Data.RBTree`1/TreePage<System.Int32>[] struct TreePageU5BU5D_t119A89645D06C5D41CA7694ABC97CED591EBB0E4; // System.Data.RBTree`1/TreePage<System.Object>[] struct TreePageU5BU5D_t2943003B0CAE00F86234D8A8FBE62F1A4A725FB6; // UnityEngine.Events.BaseInvokableCall[] struct BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // 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.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.XR.ARSubsystems.XRReferenceImage[] struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900; // UnityEngine.XR.ARSubsystems.XRReferenceObject[] struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // System.Threading.AtomicBoolean struct AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E; // UnityEngine.Events.BaseInvokableCall struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Threading.CancellationTokenSource struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // System.Threading.ContextCallback struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.EventHandler struct EventHandler_t084491E53EC706ACA0A15CA17488C075B4ECA44B; // System.Exception struct Exception_t; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09; // System.Threading.ExecutionContext struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IComparer struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.Threading.Tasks.ITaskCompletionAction struct ITaskCompletionAction_t7007C80B89E26C5DBB586AF8D5790801A1DDC558; // 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.ManualResetEventSlim struct ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // System.OperationCanceledException struct OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB; // UnityEngine.Events.PersistentCallGroup struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Threading.Tasks.StackGuard struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // UnityEngine.SubsystemsImplementation.SubsystemProvider struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9; // 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.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.Events.UnityEventBase struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319; // UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback struct ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026; // UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback struct FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0; 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* AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_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* Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_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* LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_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* OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_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* Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_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* Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96; IL2CPP_EXTERN_C String_t* _stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC; IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B; IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4; IL2CPP_EXTERN_C String_t* _stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003; IL2CPP_EXTERN_C String_t* _stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70; IL2CPP_EXTERN_C String_t* _stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C; IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; IL2CPP_EXTERN_C String_t* _stringLiteral7AD319493499620E43634FF644A0CEF1624086AD; IL2CPP_EXTERN_C String_t* _stringLiteral812EC03C4AEF0AE76BA178C4367F385393486DE8; IL2CPP_EXTERN_C String_t* _stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744; IL2CPP_EXTERN_C String_t* _stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF; IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5; IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73; IL2CPP_EXTERN_C String_t* _stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE; IL2CPP_EXTERN_C String_t* _stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8; IL2CPP_EXTERN_C String_t* _stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7; IL2CPP_EXTERN_C String_t* _stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8; IL2CPP_EXTERN_C String_t* _stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205; IL2CPP_EXTERN_C String_t* _stringLiteralD739176628254B1DE83BD6E2A756EC98E1168850; IL2CPP_EXTERN_C String_t* _stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_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__ctor_m814A593C5425B0EBE4D059217522206F3282697F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_m50CCE73BA6E5F7A70E98B4609F8C502AB185317F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Item_m9CC93AE940BF7F2FF355CADB19E2FBC2B3774BE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m5BFF5202249A69D8BD651847170509A2F6C32E91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m9EBBC675B53CD105D37371832F948B270E2D4E5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1_FromAsyncImpl_mF618A88BA05E67B7328F5408E313599A8FC245F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m06C0F4B02DFFEA73E7B431A50D3931100900E14C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m0B71577314C26830978606737C3E1522D8652CEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m2463D6C0F8A9F6217E9C3B22587530B8C742C88E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m251868908E1112DB8F8CB1D7A2875F03075F96FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m3BC68AA8DEEDBE978628FA39064D2E03E8AC24F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m40D055F09E1C84F6332315998BEF20D4565A4C8A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m47D2D432C42978338107F220668355D9F5A858A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m58838D82F617758F77F50DDBCD9612D9268299BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m62748BC126509A6C7F89477982EB554A3177EE1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m759FFB4AE9636B4AC585F8463EFA1EDC47337794_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m7D85D8D9FDCFE958C84A911E6601116CC5A14DB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m85D0A3C7DD8C440191194397E599D6E73BA0726B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m8DD5B6DFEC5991167DD0AA046867D455F997B869_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_m9E407A93FBEE2DBD938B884FE8B0D5277E0AC5B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_mDE577D584EF34DF69561B26D92A10056847FB993_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_mE054FA14E10B4518AFD4EC61783EF0B0539AFAF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_mE6E93824B8D45CF8E7426EA866EBEAAC2BF04527_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_StartNew_mFD072CF0D4FA0C3FB469780DADC9C580A6630A65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m0128CAAD827BB3B445723BCEA964356DE289B2AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m123E20CD4E3CC51B5AD2010E3BEB0E08502B1E02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m188D3C03D954EA2BE1F0A540C4E4D6C411972740_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_m512917755622E1B68D69C1B93CFD8A61C1989B7D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m52F8C4F663DE685AD4BAA9EE6B79D0996146FB91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m5AC9377552673F63B277AF2471DF26BB3E569E36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m5D5F47086E99668D2927CB89006FC720F6A376C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m5E54F6B19BC4DA6F248737396A4688A9A9E516E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m7C819954A8BC15C00EBF37931B36F0CD1C120868_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m7EBA5571720B94434F295E86EC6D8F9160C7B281_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mA926EFA638382A1BC04215AFB81E6A2D2225C04D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mC5F03F7E77948CA540E5B4D1EA8FBFB05204056F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mE412C5196CBE6FBF5DBD3429EC925C1262CB62CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mEC260F2022041E51F298A3DCCA996DFFECA1AD9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mF8CDFA1D9A89E3EB4297E21C70F52CCB4AAA5217_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mFF173D9654F7A3C73AB3E90D8C364EA7637A1822_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m57166DE3DB3CD426F6F13A3DBB97503E85A12477_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* TreePage__ctor_m1F8F9CA038FCA656E7F092350E8B10A045E35EE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TreePage__ctor_m37CB1D5D3D3316E6545DA01460E1CE7D3EB032F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_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* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m0015EAD6569E4AC50988B0EACF7F3FB1CA2A1C4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m1C1206BF2A67DD45177C21D7F0998B6CDC9FEF4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m327DD62959332BC99B7C1FF957ABB36AAAAB1DC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m3786E0DC1833570C9FF5EE8C2715148B3973667A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m6B4AC01603BFBDAA2C503C016191780A0FEDBCC6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m90481287360DEBE64875412B912FBDAA50AF796D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m947413C62F14FBE03F5243F73FBECB790DC5964B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1A3372ADDF931075CF711D2D4DF47901CE8B34DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m21AD6156F6E590DB0C1C0FD8D173A0E12D52B9AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m47EDCBC522FC2CFD2A565A5CBFA36C4895356848_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m87BEE064947D6BBE168831D970101BB2C9A5ACE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mB7F714F6650B6F41AF4FAE3F67B5F53263CA5E95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEAAF035C50899D22251ED355FAA0D6C9CD680CD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0AD55A9ACFC6C7E72395E06370615B9D3F721F72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0BD918E2104C63F093B294CF5D87CAE31A31E050_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1EA30B4694BECC4C9D4CEF10D4CF1492D826D5E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m4F6805267303716564AC210A8FC964A67B66480B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m6F76D814A553C3EB330DFEA0D028D934EF118C50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB21A458B911C5B098866D90CBA76A9FB84B16149_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1843A7477532DDB72182CD6CA00784DD37C2EDEE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m35A8A667DFD7F85B42F787C8FA60C0CCC08F246D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m46448EE0D6B8CDD6FDFCFA059F14F483F0573386_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m544416E0E15A149F0795F3310957F5D6DC2495E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m982FA239C06F8E8A04923CC8974760A3C73D95A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC36870187D0582746A2DB4C93D71A482EFC8A016_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m19207EEE0E72F26ACEAE3E62A25EF29A4863353A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m6D8B574E1F62F8D531363246A8D60C4CB232AA4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m844E7D05C891D0F6ADCF5FA367AD929983928EF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m8913600B23FF73BCF799088F6273D9AD3A611D34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m9A7B7A7031418C73CFBBAF27D337EFF69BC589AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mBEEB9F6D2AB93D5347F5DF52274AD574D6897108_RuntimeMethod_var; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB; struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C; struct EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B; struct EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322; struct EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341; struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; struct NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441; struct NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312; struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900; struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20; 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.Nullable`1<System.Int32>> struct U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 : public RuntimeObject { public: public: }; struct U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.ValueTuple`2<System.Boolean,System.Object>> struct U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 : public RuntimeObject { public: public: }; struct U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.ValueTuple`2<System.Int32,System.Int32>> struct U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC : public RuntimeObject { public: public: }; struct U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 : public RuntimeObject { public: public: }; struct U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1/<>c<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D : public RuntimeObject { public: public: }; struct U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D_StaticFields { public: // System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9 U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // 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.UnwrapPromise`1/<>c<System.Object> struct U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 : public RuntimeObject { public: public: }; struct U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields { public: // System.Threading.Tasks.UnwrapPromise`1/<>c<TResult> System.Threading.Tasks.UnwrapPromise`1/<>c::<>9 U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 * ___U3CU3E9_0; // System.Threading.WaitCallback System.Threading.Tasks.UnwrapPromise`1/<>c::<>9__8_0 WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * ___U3CU3E9__8_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__8_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields, ___U3CU3E9__8_0_1)); } inline WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * get_U3CU3E9__8_0_1() const { return ___U3CU3E9__8_0_1; } inline WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 ** get_address_of_U3CU3E9__8_0_1() { return &___U3CU3E9__8_0_1; } inline void set_U3CU3E9__8_0_1(WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * value) { ___U3CU3E9__8_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__8_0_1), (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.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32> struct U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC : public RuntimeObject { public: // System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endFunction Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * ___endFunction_0; // System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endAction Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction_1; // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::promise Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___promise_2; public: inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC, ___endFunction_0)); } inline Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * get_endFunction_0() const { return ___endFunction_0; } inline Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 ** get_address_of_endFunction_0() { return &___endFunction_0; } inline void set_endFunction_0(Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * value) { ___endFunction_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___endFunction_0), (void*)value); } inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC, ___endAction_1)); } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * get_endAction_1() const { return ___endAction_1; } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 ** get_address_of_endAction_1() { return &___endAction_1; } inline void set_endAction_1(Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * value) { ___endAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___endAction_1), (void*)value); } inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC, ___promise_2)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get_promise_2() const { return ___promise_2; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of_promise_2() { return &___promise_2; } inline void set_promise_2(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ___promise_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___promise_2), (void*)value); } }; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object> struct U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 : public RuntimeObject { public: // System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endFunction Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * ___endFunction_0; // System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endAction Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction_1; // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::promise Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___promise_2; public: inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5, ___endFunction_0)); } inline Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * get_endFunction_0() const { return ___endFunction_0; } inline Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED ** get_address_of_endFunction_0() { return &___endFunction_0; } inline void set_endFunction_0(Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * value) { ___endFunction_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___endFunction_0), (void*)value); } inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5, ___endAction_1)); } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * get_endAction_1() const { return ___endAction_1; } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 ** get_address_of_endAction_1() { return &___endAction_1; } inline void set_endAction_1(Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * value) { ___endAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___endAction_1), (void*)value); } inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5, ___promise_2)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_promise_2() const { return ___promise_2; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_promise_2() { return &___promise_2; } inline void set_promise_2(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___promise_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___promise_2), (void*)value); } }; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D : public RuntimeObject { public: // System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endFunction Func_2_t93436DB66248BF735350EEC072257D84453153ED * ___endFunction_0; // System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::endAction Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction_1; // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::promise Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___promise_2; public: inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D, ___endFunction_0)); } inline Func_2_t93436DB66248BF735350EEC072257D84453153ED * get_endFunction_0() const { return ___endFunction_0; } inline Func_2_t93436DB66248BF735350EEC072257D84453153ED ** get_address_of_endFunction_0() { return &___endFunction_0; } inline void set_endFunction_0(Func_2_t93436DB66248BF735350EEC072257D84453153ED * value) { ___endFunction_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___endFunction_0), (void*)value); } inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D, ___endAction_1)); } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * get_endAction_1() const { return ___endAction_1; } inline Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 ** get_address_of_endAction_1() { return &___endAction_1; } inline void set_endAction_1(Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * value) { ___endAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___endAction_1), (void*)value); } inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D, ___promise_2)); } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * get_promise_2() const { return ___promise_2; } inline Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 ** get_address_of_promise_2() { return &___promise_2; } inline void set_promise_2(Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * value) { ___promise_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___promise_2), (void*)value); } }; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Int32> struct U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 : public RuntimeObject { public: // System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::invoked AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * ___invoked_0; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::CS$<>8__locals1 U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181, ___invoked_0)); } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * get_invoked_0() const { return ___invoked_0; } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E ** get_address_of_invoked_0() { return &___invoked_0; } inline void set_invoked_0(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * value) { ___invoked_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invoked_0), (void*)value); } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Object> struct U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F : public RuntimeObject { public: // System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::invoked AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * ___invoked_0; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::CS$<>8__locals1 U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F, ___invoked_0)); } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * get_invoked_0() const { return ___invoked_0; } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E ** get_address_of_invoked_0() { return &___invoked_0; } inline void set_invoked_0(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * value) { ___invoked_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invoked_0), (void*)value); } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF : public RuntimeObject { public: // System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::invoked AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * ___invoked_0; // System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::CS$<>8__locals1 U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF, ___invoked_0)); } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * get_invoked_0() const { return ___invoked_0; } inline AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E ** get_address_of_invoked_0() { return &___invoked_0; } inline void set_invoked_0(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * value) { ___invoked_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invoked_0), (void*)value); } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // System.Collections.Concurrent.ConcurrentDictionary`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 : public RuntimeObject { public: // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2::_tables Tables_t0EC55BA35E1A6F7B6280F15B3FEDC6F7043802E4 * ____tables_0; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Concurrent.ConcurrentDictionary`2::_comparer RuntimeObject* ____comparer_1; // System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::_growLockArray bool ____growLockArray_2; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_budget int32_t ____budget_3; public: inline static int32_t get_offset_of__tables_0() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6, ____tables_0)); } inline Tables_t0EC55BA35E1A6F7B6280F15B3FEDC6F7043802E4 * get__tables_0() const { return ____tables_0; } inline Tables_t0EC55BA35E1A6F7B6280F15B3FEDC6F7043802E4 ** get_address_of__tables_0() { return &____tables_0; } inline void set__tables_0(Tables_t0EC55BA35E1A6F7B6280F15B3FEDC6F7043802E4 * value) { ____tables_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____tables_0), (void*)value); } inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6, ____comparer_1)); } inline RuntimeObject* get__comparer_1() const { return ____comparer_1; } inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; } inline void set__comparer_1(RuntimeObject* value) { ____comparer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_1), (void*)value); } inline static int32_t get_offset_of__growLockArray_2() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6, ____growLockArray_2)); } inline bool get__growLockArray_2() const { return ____growLockArray_2; } inline bool* get_address_of__growLockArray_2() { return &____growLockArray_2; } inline void set__growLockArray_2(bool value) { ____growLockArray_2 = value; } inline static int32_t get_offset_of__budget_3() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6, ____budget_3)); } inline int32_t get__budget_3() const { return ____budget_3; } inline int32_t* get_address_of__budget_3() { return &____budget_3; } inline void set__budget_3(int32_t value) { ____budget_3 = value; } }; struct ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6_StaticFields { public: // System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::s_isValueWriteAtomic bool ___s_isValueWriteAtomic_4; public: inline static int32_t get_offset_of_s_isValueWriteAtomic_4() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6_StaticFields, ___s_isValueWriteAtomic_4)); } inline bool get_s_isValueWriteAtomic_4() const { return ___s_isValueWriteAtomic_4; } inline bool* get_address_of_s_isValueWriteAtomic_4() { return &___s_isValueWriteAtomic_4; } inline void set_s_isValueWriteAtomic_4(bool value) { ___s_isValueWriteAtomic_4 = value; } }; // System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object> struct ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 : public RuntimeObject { public: // System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2::_tables Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA * ____tables_0; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Concurrent.ConcurrentDictionary`2::_comparer RuntimeObject* ____comparer_1; // System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::_growLockArray bool ____growLockArray_2; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_budget int32_t ____budget_3; public: inline static int32_t get_offset_of__tables_0() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198, ____tables_0)); } inline Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA * get__tables_0() const { return ____tables_0; } inline Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA ** get_address_of__tables_0() { return &____tables_0; } inline void set__tables_0(Tables_tC9F0951BCC31929B132D56E8B72AF68882E7F2EA * value) { ____tables_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____tables_0), (void*)value); } inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198, ____comparer_1)); } inline RuntimeObject* get__comparer_1() const { return ____comparer_1; } inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; } inline void set__comparer_1(RuntimeObject* value) { ____comparer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_1), (void*)value); } inline static int32_t get_offset_of__growLockArray_2() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198, ____growLockArray_2)); } inline bool get__growLockArray_2() const { return ____growLockArray_2; } inline bool* get_address_of__growLockArray_2() { return &____growLockArray_2; } inline void set__growLockArray_2(bool value) { ____growLockArray_2 = value; } inline static int32_t get_offset_of__budget_3() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198, ____budget_3)); } inline int32_t get__budget_3() const { return ____budget_3; } inline int32_t* get_address_of__budget_3() { return &____budget_3; } inline void set__budget_3(int32_t value) { ____budget_3 = value; } }; struct ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198_StaticFields { public: // System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::s_isValueWriteAtomic bool ___s_isValueWriteAtomic_4; public: inline static int32_t get_offset_of_s_isValueWriteAtomic_4() { return static_cast<int32_t>(offsetof(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198_StaticFields, ___s_isValueWriteAtomic_4)); } inline bool get_s_isValueWriteAtomic_4() const { return ___s_isValueWriteAtomic_4; } inline bool* get_address_of_s_isValueWriteAtomic_4() { return &___s_isValueWriteAtomic_4; } inline void set_s_isValueWriteAtomic_4(bool value) { ___s_isValueWriteAtomic_4 = value; } }; // System.Collections.Generic.Dictionary`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC : 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_t81FB818E905AD2220A0DE842530A8487BD4012EB* ___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_tF0ADF76411546CC7F3E042DEDA9DF17F2CF9ACA9 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___entries_1)); } inline EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* 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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___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_t566A209E736949D0B3724EC641026283478A9CBC, ___keys_7)); } inline KeyCollection_tF0ADF76411546CC7F3E042DEDA9DF17F2CF9ACA9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tF0ADF76411546CC7F3E042DEDA9DF17F2CF9ACA9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tF0ADF76411546CC7F3E042DEDA9DF17F2CF9ACA9 * 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_t566A209E736949D0B3724EC641026283478A9CBC, ___values_8)); } inline ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * get_values_8() const { return ___values_8; } inline ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * 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_t566A209E736949D0B3724EC641026283478A9CBC, ____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.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E : 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_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* ___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_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___entries_1)); } inline EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* 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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___keys_7)); } inline KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * 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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___values_8)); } inline ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * get_values_8() const { return ___values_8; } inline ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * 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_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ____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,System.Object> struct Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB : 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_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* ___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_tE55A07F083598A6E2C5D0D9D49058DC6E4D51B2E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___entries_1)); } inline EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* 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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___keys_7)); } inline KeyCollection_tE55A07F083598A6E2C5D0D9D49058DC6E4D51B2E * get_keys_7() const { return ___keys_7; } inline KeyCollection_tE55A07F083598A6E2C5D0D9D49058DC6E4D51B2E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tE55A07F083598A6E2C5D0D9D49058DC6E4D51B2E * 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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ___values_8)); } inline ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * get_values_8() const { return ___values_8; } inline ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * 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_t68FA25B39EC8179DDB6C36003288B86442B82ECB, ____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.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.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 : 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_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* ___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_t1A4234C2733AA679CBD9BA87755956535D81647E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___entries_1)); } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* 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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___keys_7)); } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * 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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___values_8)); } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * get_values_8() const { return ___values_8; } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * 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_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ____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.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 : 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_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* ___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_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___entries_1)); } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* 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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___keys_7)); } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * 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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___values_8)); } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * get_values_8() const { return ___values_8; } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * 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_t49CB072CAA9184D326107FA696BB354C43EB5E08, ____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.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); } }; // UnityEngine.Rendering.ObjectPool`1<System.Object> struct ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB : public RuntimeObject { public: // System.Collections.Generic.Stack`1<T> UnityEngine.Rendering.ObjectPool`1::m_Stack Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___m_Stack_0; // UnityEngine.Events.UnityAction`1<T> UnityEngine.Rendering.ObjectPool`1::m_ActionOnGet UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___m_ActionOnGet_1; // UnityEngine.Events.UnityAction`1<T> UnityEngine.Rendering.ObjectPool`1::m_ActionOnRelease UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___m_ActionOnRelease_2; // System.Boolean UnityEngine.Rendering.ObjectPool`1::m_CollectionCheck bool ___m_CollectionCheck_3; // System.Int32 UnityEngine.Rendering.ObjectPool`1::<countAll>k__BackingField int32_t ___U3CcountAllU3Ek__BackingField_4; public: inline static int32_t get_offset_of_m_Stack_0() { return static_cast<int32_t>(offsetof(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB, ___m_Stack_0)); } inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * get_m_Stack_0() const { return ___m_Stack_0; } inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 ** get_address_of_m_Stack_0() { return &___m_Stack_0; } inline void set_m_Stack_0(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * value) { ___m_Stack_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Stack_0), (void*)value); } inline static int32_t get_offset_of_m_ActionOnGet_1() { return static_cast<int32_t>(offsetof(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB, ___m_ActionOnGet_1)); } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_m_ActionOnGet_1() const { return ___m_ActionOnGet_1; } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_m_ActionOnGet_1() { return &___m_ActionOnGet_1; } inline void set_m_ActionOnGet_1(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value) { ___m_ActionOnGet_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnGet_1), (void*)value); } inline static int32_t get_offset_of_m_ActionOnRelease_2() { return static_cast<int32_t>(offsetof(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB, ___m_ActionOnRelease_2)); } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_m_ActionOnRelease_2() const { return ___m_ActionOnRelease_2; } inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_m_ActionOnRelease_2() { return &___m_ActionOnRelease_2; } inline void set_m_ActionOnRelease_2(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value) { ___m_ActionOnRelease_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnRelease_2), (void*)value); } inline static int32_t get_offset_of_m_CollectionCheck_3() { return static_cast<int32_t>(offsetof(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB, ___m_CollectionCheck_3)); } inline bool get_m_CollectionCheck_3() const { return ___m_CollectionCheck_3; } inline bool* get_address_of_m_CollectionCheck_3() { return &___m_CollectionCheck_3; } inline void set_m_CollectionCheck_3(bool value) { ___m_CollectionCheck_3 = value; } inline static int32_t get_offset_of_U3CcountAllU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB, ___U3CcountAllU3Ek__BackingField_4)); } inline int32_t get_U3CcountAllU3Ek__BackingField_4() const { return ___U3CcountAllU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CcountAllU3Ek__BackingField_4() { return &___U3CcountAllU3Ek__BackingField_4; } inline void set_U3CcountAllU3Ek__BackingField_4(int32_t value) { ___U3CcountAllU3Ek__BackingField_4 = value; } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80, ___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); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (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; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_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); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value); } }; // Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546 : public RuntimeObject { public: // System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_concurrentStore ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 * ____concurrentStore_0; // System.Func`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_creator Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * ____creator_1; public: inline static int32_t get_offset_of__concurrentStore_0() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546, ____concurrentStore_0)); } inline ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 * get__concurrentStore_0() const { return ____concurrentStore_0; } inline ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 ** get_address_of__concurrentStore_0() { return &____concurrentStore_0; } inline void set__concurrentStore_0(ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 * value) { ____concurrentStore_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____concurrentStore_0), (void*)value); } inline static int32_t get_offset_of__creator_1() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546, ____creator_1)); } inline Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * get__creator_1() const { return ____creator_1; } inline Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 ** get_address_of__creator_1() { return &____creator_1; } inline void set__creator_1(Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * value) { ____creator_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____creator_1), (void*)value); } }; // Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Object,System.Object> struct ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C : public RuntimeObject { public: // System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_concurrentStore ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 * ____concurrentStore_0; // System.Func`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_creator Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ____creator_1; public: inline static int32_t get_offset_of__concurrentStore_0() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C, ____concurrentStore_0)); } inline ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 * get__concurrentStore_0() const { return ____concurrentStore_0; } inline ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 ** get_address_of__concurrentStore_0() { return &____concurrentStore_0; } inline void set__concurrentStore_0(ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 * value) { ____concurrentStore_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____concurrentStore_0), (void*)value); } inline static int32_t get_offset_of__creator_1() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C, ____creator_1)); } inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get__creator_1() const { return ____creator_1; } inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of__creator_1() { return &____creator_1; } inline void set__creator_1(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value) { ____creator_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____creator_1), (void*)value); } }; // System.Data.RBTree`1/TreePage<System.Int32> struct TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 : public RuntimeObject { public: // System.Data.RBTree`1/Node<K>[] System.Data.RBTree`1/TreePage::_slots NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* ____slots_0; // System.Int32[] System.Data.RBTree`1/TreePage::_slotMap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____slotMap_1; // System.Int32 System.Data.RBTree`1/TreePage::_inUseCount int32_t ____inUseCount_2; // System.Int32 System.Data.RBTree`1/TreePage::_pageId int32_t ____pageId_3; // System.Int32 System.Data.RBTree`1/TreePage::_nextFreeSlotLine int32_t ____nextFreeSlotLine_4; public: inline static int32_t get_offset_of__slots_0() { return static_cast<int32_t>(offsetof(TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10, ____slots_0)); } inline NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* get__slots_0() const { return ____slots_0; } inline NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441** get_address_of__slots_0() { return &____slots_0; } inline void set__slots_0(NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* value) { ____slots_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_0), (void*)value); } inline static int32_t get_offset_of__slotMap_1() { return static_cast<int32_t>(offsetof(TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10, ____slotMap_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__slotMap_1() const { return ____slotMap_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__slotMap_1() { return &____slotMap_1; } inline void set__slotMap_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____slotMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____slotMap_1), (void*)value); } inline static int32_t get_offset_of__inUseCount_2() { return static_cast<int32_t>(offsetof(TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10, ____inUseCount_2)); } inline int32_t get__inUseCount_2() const { return ____inUseCount_2; } inline int32_t* get_address_of__inUseCount_2() { return &____inUseCount_2; } inline void set__inUseCount_2(int32_t value) { ____inUseCount_2 = value; } inline static int32_t get_offset_of__pageId_3() { return static_cast<int32_t>(offsetof(TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10, ____pageId_3)); } inline int32_t get__pageId_3() const { return ____pageId_3; } inline int32_t* get_address_of__pageId_3() { return &____pageId_3; } inline void set__pageId_3(int32_t value) { ____pageId_3 = value; } inline static int32_t get_offset_of__nextFreeSlotLine_4() { return static_cast<int32_t>(offsetof(TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10, ____nextFreeSlotLine_4)); } inline int32_t get__nextFreeSlotLine_4() const { return ____nextFreeSlotLine_4; } inline int32_t* get_address_of__nextFreeSlotLine_4() { return &____nextFreeSlotLine_4; } inline void set__nextFreeSlotLine_4(int32_t value) { ____nextFreeSlotLine_4 = value; } }; // System.Data.RBTree`1/TreePage<System.Object> struct TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC : public RuntimeObject { public: // System.Data.RBTree`1/Node<K>[] System.Data.RBTree`1/TreePage::_slots NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* ____slots_0; // System.Int32[] System.Data.RBTree`1/TreePage::_slotMap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____slotMap_1; // System.Int32 System.Data.RBTree`1/TreePage::_inUseCount int32_t ____inUseCount_2; // System.Int32 System.Data.RBTree`1/TreePage::_pageId int32_t ____pageId_3; // System.Int32 System.Data.RBTree`1/TreePage::_nextFreeSlotLine int32_t ____nextFreeSlotLine_4; public: inline static int32_t get_offset_of__slots_0() { return static_cast<int32_t>(offsetof(TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC, ____slots_0)); } inline NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* get__slots_0() const { return ____slots_0; } inline NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312** get_address_of__slots_0() { return &____slots_0; } inline void set__slots_0(NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* value) { ____slots_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_0), (void*)value); } inline static int32_t get_offset_of__slotMap_1() { return static_cast<int32_t>(offsetof(TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC, ____slotMap_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__slotMap_1() const { return ____slotMap_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__slotMap_1() { return &____slotMap_1; } inline void set__slotMap_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____slotMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____slotMap_1), (void*)value); } inline static int32_t get_offset_of__inUseCount_2() { return static_cast<int32_t>(offsetof(TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC, ____inUseCount_2)); } inline int32_t get__inUseCount_2() const { return ____inUseCount_2; } inline int32_t* get_address_of__inUseCount_2() { return &____inUseCount_2; } inline void set__inUseCount_2(int32_t value) { ____inUseCount_2 = value; } inline static int32_t get_offset_of__pageId_3() { return static_cast<int32_t>(offsetof(TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC, ____pageId_3)); } inline int32_t get__pageId_3() const { return ____pageId_3; } inline int32_t* get_address_of__pageId_3() { return &____pageId_3; } inline void set__pageId_3(int32_t value) { ____pageId_3 = value; } inline static int32_t get_offset_of__nextFreeSlotLine_4() { return static_cast<int32_t>(offsetof(TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC, ____nextFreeSlotLine_4)); } inline int32_t get__nextFreeSlotLine_4() const { return ____nextFreeSlotLine_4; } inline int32_t* get_address_of__nextFreeSlotLine_4() { return &____nextFreeSlotLine_4; } inline void set__nextFreeSlotLine_4(int32_t value) { ____nextFreeSlotLine_4 = value; } }; // System.Tuple`2<System.Threading.Tasks.UnwrapPromise`1<System.Object>,System.Threading.Tasks.Task> struct Tuple_2_tAF490C903E3A79B279377D8C4ADD32E5DD367F2C : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * ___m_Item1_0; // T2 System.Tuple`2::m_Item2 Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_Item2_1; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tAF490C903E3A79B279377D8C4ADD32E5DD367F2C, ___m_Item1_0)); } inline UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * get_m_Item1_0() const { return ___m_Item1_0; } inline UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 ** get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * 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_tAF490C903E3A79B279377D8C4ADD32E5DD367F2C, ___m_Item2_1)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_Item2_1() const { return ___m_Item2_1; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (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.Boolean,System.Boolean,System.Boolean,System.Boolean> struct Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF : public RuntimeObject { public: // T1 System.Tuple`4::m_Item1 bool ___m_Item1_0; // T2 System.Tuple`4::m_Item2 bool ___m_Item2_1; // T3 System.Tuple`4::m_Item3 bool ___m_Item3_2; // T4 System.Tuple`4::m_Item4 bool ___m_Item4_3; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF, ___m_Item1_0)); } inline bool get_m_Item1_0() const { return ___m_Item1_0; } inline bool* get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(bool value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF, ___m_Item2_1)); } inline bool get_m_Item2_1() const { return ___m_Item2_1; } inline bool* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(bool value) { ___m_Item2_1 = value; } inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF, ___m_Item3_2)); } inline bool get_m_Item3_2() const { return ___m_Item3_2; } inline bool* get_address_of_m_Item3_2() { return &___m_Item3_2; } inline void set_m_Item3_2(bool value) { ___m_Item3_2 = value; } inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF, ___m_Item4_3)); } inline bool get_m_Item4_3() const { return ___m_Item4_3; } inline bool* get_address_of_m_Item4_3() { return &___m_Item4_3; } inline void set_m_Item4_3(bool value) { ___m_Item4_3 = value; } }; // System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean> struct Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 : public RuntimeObject { public: // T1 System.Tuple`4::m_Item1 int32_t ___m_Item1_0; // T2 System.Tuple`4::m_Item2 int32_t ___m_Item2_1; // T3 System.Tuple`4::m_Item3 int32_t ___m_Item3_2; // T4 System.Tuple`4::m_Item4 bool ___m_Item4_3; public: inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item1_0)); } inline int32_t get_m_Item1_0() const { return ___m_Item1_0; } inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(int32_t value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item2_1)); } inline int32_t get_m_Item2_1() const { return ___m_Item2_1; } inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; } inline void set_m_Item2_1(int32_t value) { ___m_Item2_1 = value; } inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___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_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item4_3)); } inline bool get_m_Item4_3() const { return ___m_Item4_3; } inline bool* get_address_of_m_Item4_3() { return &___m_Item4_3; } inline void set_m_Item4_3(bool value) { ___m_Item4_3 = 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.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 : public RuntimeObject { public: // UnityEngine.MonoBehaviour UnityEngine.UI.CoroutineTween.TweenRunner`1::m_CoroutineContainer MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___m_CoroutineContainer_0; // System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1::m_Tween RuntimeObject* ___m_Tween_1; public: inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3, ___m_CoroutineContainer_0)); } inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; } inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; } inline void set_m_CoroutineContainer_0(MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * value) { ___m_CoroutineContainer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value); } inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3, ___m_Tween_1)); } inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; } inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; } inline void set_m_Tween_1(RuntimeObject* value) { ___m_Tween_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value); } }; // UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween> struct TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D : public RuntimeObject { public: // UnityEngine.MonoBehaviour UnityEngine.UI.CoroutineTween.TweenRunner`1::m_CoroutineContainer MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___m_CoroutineContainer_0; // System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1::m_Tween RuntimeObject* ___m_Tween_1; public: inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D, ___m_CoroutineContainer_0)); } inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; } inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; } inline void set_m_CoroutineContainer_0(MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * value) { ___m_CoroutineContainer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value); } inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D, ___m_Tween_1)); } inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; } inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; } inline void set_m_Tween_1(RuntimeObject* value) { ___m_Tween_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value); } }; // UnityEngine.Rendering.UnsafeGenericPool`1<System.Object> struct UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB : public RuntimeObject { public: public: }; struct UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields { public: // UnityEngine.Rendering.ObjectPool`1<T> UnityEngine.Rendering.UnsafeGenericPool`1::s_Pool ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * ___s_Pool_0; public: inline static int32_t get_offset_of_s_Pool_0() { return static_cast<int32_t>(offsetof(UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields, ___s_Pool_0)); } inline ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * get_s_Pool_0() const { return ___s_Pool_0; } inline ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB ** get_address_of_s_Pool_0() { return &___s_Pool_0; } inline void set_s_Pool_0(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * value) { ___s_Pool_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Pool_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151, ___dictionary_0)); } inline Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C, ___dictionary_0)); } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object> struct ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778, ___dictionary_0)); } inline Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (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.Boolean> struct ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32> struct ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Threading.AtomicBoolean struct AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E : public RuntimeObject { public: // System.Int32 System.Threading.AtomicBoolean::flag int32_t ___flag_0; public: inline static int32_t get_offset_of_flag_0() { return static_cast<int32_t>(offsetof(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E, ___flag_0)); } inline int32_t get_flag_0() const { return ___flag_0; } inline int32_t* get_address_of_flag_0() { return &___flag_0; } inline void set_flag_0(int32_t value) { ___flag_0 = value; } }; // UnityEngine.Events.BaseInvokableCall struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 : public RuntimeObject { public: public: }; // System.Runtime.Versioning.BinaryCompatibility struct BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810 : public RuntimeObject { public: public: }; struct BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields { public: // System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5 bool ___TargetsAtLeast_Desktop_V4_5_0; // System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5_1 bool ___TargetsAtLeast_Desktop_V4_5_1_1; public: inline static int32_t get_offset_of_TargetsAtLeast_Desktop_V4_5_0() { return static_cast<int32_t>(offsetof(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields, ___TargetsAtLeast_Desktop_V4_5_0)); } inline bool get_TargetsAtLeast_Desktop_V4_5_0() const { return ___TargetsAtLeast_Desktop_V4_5_0; } inline bool* get_address_of_TargetsAtLeast_Desktop_V4_5_0() { return &___TargetsAtLeast_Desktop_V4_5_0; } inline void set_TargetsAtLeast_Desktop_V4_5_0(bool value) { ___TargetsAtLeast_Desktop_V4_5_0 = value; } inline static int32_t get_offset_of_TargetsAtLeast_Desktop_V4_5_1_1() { return static_cast<int32_t>(offsetof(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields, ___TargetsAtLeast_Desktop_V4_5_1_1)); } inline bool get_TargetsAtLeast_Desktop_V4_5_1_1() const { return ___TargetsAtLeast_Desktop_V4_5_1_1; } inline bool* get_address_of_TargetsAtLeast_Desktop_V4_5_1_1() { return &___TargetsAtLeast_Desktop_V4_5_1_1; } inline void set_TargetsAtLeast_Desktop_V4_5_1_1(bool value) { ___TargetsAtLeast_Desktop_V4_5_1_1 = value; } }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 : public RuntimeObject { public: // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t * ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject * ___m_stackTrace_1; public: inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09, ___m_Exception_0)); } inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; } inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; } inline void set_m_Exception_0(Exception_t * value) { ___m_Exception_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Exception_0), (void*)value); } inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09, ___m_stackTrace_1)); } inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; } inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; } inline void set_m_stackTrace_1(RuntimeObject * value) { ___m_stackTrace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stackTrace_1), (void*)value); } }; // System.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.Threading.Tasks.StackGuard struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D : public RuntimeObject { public: // System.Int32 System.Threading.Tasks.StackGuard::m_inliningDepth int32_t ___m_inliningDepth_0; public: inline static int32_t get_offset_of_m_inliningDepth_0() { return static_cast<int32_t>(offsetof(StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D, ___m_inliningDepth_0)); } inline int32_t get_m_inliningDepth_0() const { return ___m_inliningDepth_0; } inline int32_t* get_address_of_m_inliningDepth_0() { return &___m_inliningDepth_0; } inline void set_m_inliningDepth_0(int32_t value) { ___m_inliningDepth_0 = 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.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 { }; // UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>> struct ConfiguredTaskAwaiter_tF5EB7C043D02F3A168A946214509AC2338D8FB43 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___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_tF5EB7C043D02F3A168A946214509AC2338D8FB43, ___m_task_0)); } inline Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * 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_tF5EB7C043D02F3A168A946214509AC2338D8FB43, ___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.ValueTuple`2<System.Boolean,System.Object>> struct ConfiguredTaskAwaiter_t8331817B436B2404AB355877749392914C805A6B { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___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_t8331817B436B2404AB355877749392914C805A6B, ___m_task_0)); } inline Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * 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_t8331817B436B2404AB355877749392914C805A6B, ___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.ValueTuple`2<System.Int32,System.Int32>> struct ConfiguredTaskAwaiter_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___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_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E, ___m_task_0)); } inline Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * get_m_task_0() const { return ___m_task_0; } inline Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * 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_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E, ___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.ValueTuple`3<System.Object,System.Object,System.Int32>> struct ConfiguredTaskAwaiter_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___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_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F, ___m_task_0)); } inline Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * get_m_task_0() const { return ___m_task_0; } inline Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * 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_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F, ___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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct ConfiguredTaskAwaiter_t7782D6AFE3FAFD55952C478F588A798E9F8A251B { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___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_t7782D6AFE3FAFD55952C478F588A798E9F8A251B, ___m_task_0)); } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * get_m_task_0() const { return ___m_task_0; } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * 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_t7782D6AFE3FAFD55952C478F588A798E9F8A251B, ___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.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.Dictionary`2/Entry<System.Int32,System.Boolean> struct Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32> struct Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271, ___dictionary_0)); } inline Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271, ___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_t325D275FD3D1A59999D48315F6C8024D9DA80271, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___dictionary_0)); } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___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_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,System.Object> struct Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0, ___dictionary_0)); } inline Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0, ___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_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean> struct Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___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_tE364715984977A2834C9CF8842C2AD71085075A8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32> struct Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___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_t14F019BE91B99D807B381372BC77449E905F0B23, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // UnityEngine.Events.InvokableCall`1<System.Boolean> struct InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493, ___Delegate_0)); } inline UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`1<UnityEngine.Color> struct InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D, ___Delegate_0)); } inline UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)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`1<System.Single> struct InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690, ___Delegate_0)); } inline UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * value) { ___Delegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value); } }; // UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2> struct InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 { public: // UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___Delegate_0; public: inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF, ___Delegate_0)); } inline UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * get_Delegate_0() const { return ___Delegate_0; } inline UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 ** get_address_of_Delegate_0() { return &___Delegate_0; } inline void set_Delegate_0(UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * 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); } }; // System.Nullable`1<System.Int32> struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 { public: // T System.Nullable`1::value int32_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); } inline int32_t get_value_0() const { return ___value_0; } inline int32_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(int32_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // UnityEngine.Rendering.ObjectPool`1/PooledObject<System.Object> struct PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B { public: // T UnityEngine.Rendering.ObjectPool`1/PooledObject::m_ToReturn RuntimeObject * ___m_ToReturn_0; // UnityEngine.Rendering.ObjectPool`1<T> UnityEngine.Rendering.ObjectPool`1/PooledObject::m_Pool ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * ___m_Pool_1; public: inline static int32_t get_offset_of_m_ToReturn_0() { return static_cast<int32_t>(offsetof(PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B, ___m_ToReturn_0)); } inline RuntimeObject * get_m_ToReturn_0() const { return ___m_ToReturn_0; } inline RuntimeObject ** get_address_of_m_ToReturn_0() { return &___m_ToReturn_0; } inline void set_m_ToReturn_0(RuntimeObject * value) { ___m_ToReturn_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ToReturn_0), (void*)value); } inline static int32_t get_offset_of_m_Pool_1() { return static_cast<int32_t>(offsetof(PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B, ___m_Pool_1)); } inline ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * get_m_Pool_1() const { return ___m_Pool_1; } inline ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB ** get_address_of_m_Pool_1() { return &___m_Pool_1; } inline void set_m_Pool_1(ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * value) { ___m_Pool_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Pool_1), (void*)value); } }; // Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object> struct StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725 { public: // T1 Newtonsoft.Json.Utilities.StructMultiKey`2::Value1 RuntimeObject * ___Value1_0; // T2 Newtonsoft.Json.Utilities.StructMultiKey`2::Value2 RuntimeObject * ___Value2_1; public: inline static int32_t get_offset_of_Value1_0() { return static_cast<int32_t>(offsetof(StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725, ___Value1_0)); } inline RuntimeObject * get_Value1_0() const { return ___Value1_0; } inline RuntimeObject ** get_address_of_Value1_0() { return &___Value1_0; } inline void set_Value1_0(RuntimeObject * value) { ___Value1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value1_0), (void*)value); } inline static int32_t get_offset_of_Value2_1() { return static_cast<int32_t>(offsetof(StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725, ___Value2_1)); } inline RuntimeObject * get_Value2_1() const { return ___Value2_1; } inline RuntimeObject ** get_address_of_Value2_1() { return &___Value2_1; } inline void set_Value2_1(RuntimeObject * value) { ___Value2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value2_1), (void*)value); } }; // 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.Nullable`1<System.Int32>> struct TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB, ___m_task_0)); } inline Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Boolean,System.Object>> struct TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917, ___m_task_0)); } inline Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Int32,System.Int32>> struct TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C, ___m_task_0)); } inline Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * get_m_task_0() const { return ___m_task_0; } inline Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2, ___m_task_0)); } inline Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * get_m_task_0() const { return ___m_task_0; } inline Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93, ___m_task_0)); } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * get_m_task_0() const { return ___m_task_0; } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (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); } }; // System.Runtime.CompilerServices.TrueReadOnlyCollection`1<System.Object> struct TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A : public ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 { public: public: }; // UnityEngine.Events.UnityEvent`1<System.Boolean> struct UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB : 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_t10C429A2DAF73A4517568E494115F7503F9E17EB, ___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<UnityEngine.Color> struct UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 : 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_t1238B72D437B572D32DDC7E67B423C2E90691350, ___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.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`1<System.Single> struct UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC : 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_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC, ___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<UnityEngine.Vector2> struct UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C : 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_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C, ___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.Boolean,System.Object> struct ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE { public: // T1 System.ValueTuple`2::Item1 bool ___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_tB6F6AE1A54796440E686F7741EA3970A167A62AE, ___Item1_0)); } inline bool get_Item1_0() const { return ___Item1_0; } inline bool* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(bool value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE, ___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.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.Int32> struct ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___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_tA372AD60186562EAB001D5060A8DA062D95A5A00, ___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_tA372AD60186562EAB001D5060A8DA062D95A5A00, ___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`3<System.Object,System.Object,System.Int32> struct ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 { public: // T1 System.ValueTuple`3::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`3::Item2 RuntimeObject * ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___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_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___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); } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___Item3_2)); } inline int32_t get_Item3_2() const { return ___Item3_2; } inline int32_t* get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(int32_t value) { ___Item3_2 = value; } }; // System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object> struct ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 { public: // T1 System.ValueTuple`5::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`5::Item2 bool ___Item2_1; // T3 System.ValueTuple`5::Item3 bool ___Item3_2; // T4 System.ValueTuple`5::Item4 RuntimeObject * ___Item4_3; // T5 System.ValueTuple`5::Item5 RuntimeObject * ___Item5_4; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59, ___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_5_t1753A6A4C916F008F49E57AC257D0484D051CF59, ___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; } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59, ___Item3_2)); } inline bool get_Item3_2() const { return ___Item3_2; } inline bool* get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(bool value) { ___Item3_2 = value; } inline static int32_t get_offset_of_Item4_3() { return static_cast<int32_t>(offsetof(ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59, ___Item4_3)); } inline RuntimeObject * get_Item4_3() const { return ___Item4_3; } inline RuntimeObject ** get_address_of_Item4_3() { return &___Item4_3; } inline void set_Item4_3(RuntimeObject * value) { ___Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item4_3), (void*)value); } inline static int32_t get_offset_of_Item5_4() { return static_cast<int32_t>(offsetof(ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59, ___Item5_4)); } inline RuntimeObject * get_Item5_4() const { return ___Item5_4; } inline RuntimeObject ** get_address_of_Item5_4() { return &___Item5_4; } inline void set_Item5_4(RuntimeObject * value) { ___Item5_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item5_4), (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.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.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); } }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = 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 { }; // UnityEngine.UI.CoroutineTween.FloatTween struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 { public: // UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback UnityEngine.UI.CoroutineTween.FloatTween::m_Target FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0; // System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_StartValue float ___m_StartValue_1; // System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_TargetValue float ___m_TargetValue_2; // System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_Duration float ___m_Duration_3; // System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::m_IgnoreTimeScale bool ___m_IgnoreTimeScale_4; public: inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_Target_0)); } inline FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * get_m_Target_0() const { return ___m_Target_0; } inline FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 ** get_address_of_m_Target_0() { return &___m_Target_0; } inline void set_m_Target_0(FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * value) { ___m_Target_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value); } inline static int32_t get_offset_of_m_StartValue_1() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_StartValue_1)); } inline float get_m_StartValue_1() const { return ___m_StartValue_1; } inline float* get_address_of_m_StartValue_1() { return &___m_StartValue_1; } inline void set_m_StartValue_1(float value) { ___m_StartValue_1 = value; } inline static int32_t get_offset_of_m_TargetValue_2() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_TargetValue_2)); } inline float get_m_TargetValue_2() const { return ___m_TargetValue_2; } inline float* get_address_of_m_TargetValue_2() { return &___m_TargetValue_2; } inline void set_m_TargetValue_2(float value) { ___m_TargetValue_2 = value; } inline static int32_t get_offset_of_m_Duration_3() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_Duration_3)); } inline float get_m_Duration_3() const { return ___m_Duration_3; } inline float* get_address_of_m_Duration_3() { return &___m_Duration_3; } inline void set_m_Duration_3(float value) { ___m_Duration_3 = value; } inline static int32_t get_offset_of_m_IgnoreTimeScale_4() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_IgnoreTimeScale_4)); } inline bool get_m_IgnoreTimeScale_4() const { return ___m_IgnoreTimeScale_4; } inline bool* get_address_of_m_IgnoreTimeScale_4() { return &___m_IgnoreTimeScale_4; } inline void set_m_IgnoreTimeScale_4(bool value) { ___m_IgnoreTimeScale_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.FloatTween struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228_marshaled_pinvoke { FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0; float ___m_StartValue_1; float ___m_TargetValue_2; float ___m_Duration_3; int32_t ___m_IgnoreTimeScale_4; }; // Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.FloatTween struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228_marshaled_com { FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0; float ___m_StartValue_1; float ___m_TargetValue_2; float ___m_Duration_3; int32_t ___m_IgnoreTimeScale_4; }; // 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); } }; // 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); } }; // 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.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.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_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.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.FloatTween> struct U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 : public RuntimeObject { public: // System.Int32 UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<>1__state int32_t ___U3CU3E1__state_0; // System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<>2__current RuntimeObject * ___U3CU3E2__current_1; // T UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::tweenInfo FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___tweenInfo_2; // System.Single UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<elapsedTime>5__2 float ___U3CelapsedTimeU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___tweenInfo_2)); } inline FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 get_tweenInfo_2() const { return ___tweenInfo_2; } inline FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; } inline void set_tweenInfo_2(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 value) { ___tweenInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL); } inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___U3CelapsedTimeU3E5__2_3)); } inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; } inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; } inline void set_U3CelapsedTimeU3E5__2_3(float value) { ___U3CelapsedTimeU3E5__2_3 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>> struct ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_tF5EB7C043D02F3A168A946214509AC2338D8FB43 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_tF5EB7C043D02F3A168A946214509AC2338D8FB43 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_tF5EB7C043D02F3A168A946214509AC2338D8FB43 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tF5EB7C043D02F3A168A946214509AC2338D8FB43 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Boolean,System.Object>> struct ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t8331817B436B2404AB355877749392914C805A6B ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t8331817B436B2404AB355877749392914C805A6B get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t8331817B436B2404AB355877749392914C805A6B * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t8331817B436B2404AB355877749392914C805A6B value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Int32,System.Int32>> struct ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tC9FF48B29CA291E29691D6BD869DE8BEC035DF8E value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t42E1FFD8895A1588548441A8C72B2728EB2FAD4F value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t7782D6AFE3FAFD55952C478F588A798E9F8A251B ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t7782D6AFE3FAFD55952C478F588A798E9F8A251B get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t7782D6AFE3FAFD55952C478F588A798E9F8A251B * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t7782D6AFE3FAFD55952C478F588A798E9F8A251B value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // 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.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object> struct Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___key_2)); } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_key_2() const { return ___key_2; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___key_2)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_key_2() const { return ___key_2; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___Item1_0), (void*)NULL); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object> struct Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___value_3)); } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE get_value_3() const { return ___value_3; } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * get_address_of_value_3() { return &___value_3; } inline void set_value_3(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Entries_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject> struct Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12, ___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); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12, ___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_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12, ___currentValue_3)); } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE get_currentValue_3() const { return ___currentValue_3; } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___m_Entries_3), (void*)NULL); #endif } }; // 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); } }; // System.Data.RBTree`1/NodeColor<System.Int32> struct NodeColor_t53B46D8E15B8D147D7D413BECF7C6D695F734F7C { public: // System.Int32 System.Data.RBTree`1/NodeColor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NodeColor_t53B46D8E15B8D147D7D413BECF7C6D695F734F7C, ___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.Data.RBTree`1/NodeColor<System.Object> struct NodeColor_tFCE936798E77921D3C3D7C0161832B25D5977A3C { public: // System.Int32 System.Data.RBTree`1/NodeColor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NodeColor_tFCE936798E77921D3C3D7C0161832B25D5977A3C, ___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.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.Tuple`2<System.Guid,System.Object> struct Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 : public RuntimeObject { public: // T1 System.Tuple`2::m_Item1 Guid_t ___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_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1, ___m_Item1_0)); } inline Guid_t get_m_Item1_0() const { return ___m_Item1_0; } inline Guid_t * get_address_of_m_Item1_0() { return &___m_Item1_0; } inline void set_m_Item1_0(Guid_t value) { ___m_Item1_0 = value; } inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1, ___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); } }; // 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; } }; // System.Threading.Tasks.AsyncCausalityStatus struct AsyncCausalityStatus_tB4918F222DA36F8D1AFD305EEBD3DE3C6FA1631F { public: // System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncCausalityStatus_tB4918F222DA36F8D1AFD305EEBD3DE3C6FA1631F, ___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.Tasks.CausalityRelation struct CausalityRelation_t5EFB44045C7D3054B11B2E94CCAE40BE1FFAE63E { public: // System.Int32 System.Threading.Tasks.CausalityRelation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityRelation_t5EFB44045C7D3054B11B2E94CCAE40BE1FFAE63E, ___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.CausalityTraceLevel struct CausalityTraceLevel_t01DEED18A37C591FB2E53F2ADD89E2145ED8A9CD { public: // System.Int32 System.Threading.Tasks.CausalityTraceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityTraceLevel_t01DEED18A37C591FB2E53F2ADD89E2145ED8A9CD, ___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.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.Coroutine::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; }; // 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.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; } }; // 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.Data.RBTreeError struct RBTreeError_tD4673BE0774B9F25D1B28996B11369DC0EEFF592 { public: // System.Int32 System.Data.RBTreeError::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RBTreeError_tD4673BE0774B9F25D1B28996B11369DC0EEFF592, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_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.TaskExceptionHolder struct TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 : public RuntimeObject { public: // System.Threading.Tasks.Task System.Threading.Tasks.TaskExceptionHolder::m_task Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_task_3; // System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions List_1_tF1A7EE4FBAFE8B979C23198BA20A21E50C92CA17 * ___m_faultExceptions_4; // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.TaskExceptionHolder::m_cancellationException ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * ___m_cancellationException_5; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_isHandled bool ___m_isHandled_6; public: inline static int32_t get_offset_of_m_task_3() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684, ___m_task_3)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_task_3() const { return ___m_task_3; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_task_3() { return &___m_task_3; } inline void set_m_task_3(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_task_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_3), (void*)value); } inline static int32_t get_offset_of_m_faultExceptions_4() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684, ___m_faultExceptions_4)); } inline List_1_tF1A7EE4FBAFE8B979C23198BA20A21E50C92CA17 * get_m_faultExceptions_4() const { return ___m_faultExceptions_4; } inline List_1_tF1A7EE4FBAFE8B979C23198BA20A21E50C92CA17 ** get_address_of_m_faultExceptions_4() { return &___m_faultExceptions_4; } inline void set_m_faultExceptions_4(List_1_tF1A7EE4FBAFE8B979C23198BA20A21E50C92CA17 * value) { ___m_faultExceptions_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_faultExceptions_4), (void*)value); } inline static int32_t get_offset_of_m_cancellationException_5() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684, ___m_cancellationException_5)); } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * get_m_cancellationException_5() const { return ___m_cancellationException_5; } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 ** get_address_of_m_cancellationException_5() { return &___m_cancellationException_5; } inline void set_m_cancellationException_5(ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * value) { ___m_cancellationException_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cancellationException_5), (void*)value); } inline static int32_t get_offset_of_m_isHandled_6() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684, ___m_isHandled_6)); } inline bool get_m_isHandled_6() const { return ___m_isHandled_6; } inline bool* get_address_of_m_isHandled_6() { return &___m_isHandled_6; } inline void set_m_isHandled_6(bool value) { ___m_isHandled_6 = value; } }; struct TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684_StaticFields { public: // System.Boolean System.Threading.Tasks.TaskExceptionHolder::s_failFastOnUnobservedException bool ___s_failFastOnUnobservedException_0; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_domainUnloadStarted bool ___s_domainUnloadStarted_1; // System.EventHandler modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_adUnloadEventHandler EventHandler_t084491E53EC706ACA0A15CA17488C075B4ECA44B * ___s_adUnloadEventHandler_2; public: inline static int32_t get_offset_of_s_failFastOnUnobservedException_0() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684_StaticFields, ___s_failFastOnUnobservedException_0)); } inline bool get_s_failFastOnUnobservedException_0() const { return ___s_failFastOnUnobservedException_0; } inline bool* get_address_of_s_failFastOnUnobservedException_0() { return &___s_failFastOnUnobservedException_0; } inline void set_s_failFastOnUnobservedException_0(bool value) { ___s_failFastOnUnobservedException_0 = value; } inline static int32_t get_offset_of_s_domainUnloadStarted_1() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684_StaticFields, ___s_domainUnloadStarted_1)); } inline bool get_s_domainUnloadStarted_1() const { return ___s_domainUnloadStarted_1; } inline bool* get_address_of_s_domainUnloadStarted_1() { return &___s_domainUnloadStarted_1; } inline void set_s_domainUnloadStarted_1(bool value) { ___s_domainUnloadStarted_1 = value; } inline static int32_t get_offset_of_s_adUnloadEventHandler_2() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684_StaticFields, ___s_adUnloadEventHandler_2)); } inline EventHandler_t084491E53EC706ACA0A15CA17488C075B4ECA44B * get_s_adUnloadEventHandler_2() const { return ___s_adUnloadEventHandler_2; } inline EventHandler_t084491E53EC706ACA0A15CA17488C075B4ECA44B ** get_address_of_s_adUnloadEventHandler_2() { return &___s_adUnloadEventHandler_2; } inline void set_s_adUnloadEventHandler_2(EventHandler_t084491E53EC706ACA0A15CA17488C075B4ECA44B * value) { ___s_adUnloadEventHandler_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_adUnloadEventHandler_2), (void*)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.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; } }; // System.Data.TreeAccessMethod struct TreeAccessMethod_t5918E1BAD166C286BF31F24B8A0CCE4D41E47930 { public: // System.Int32 System.Data.TreeAccessMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TreeAccessMethod_t5918E1BAD166C286BF31F24B8A0CCE4D41E47930, ___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.UI.CoroutineTween.ColorTween/ColorTweenMode struct ColorTweenMode_tC8254CFED9F320A1B7A452159F60A143952DFE19 { public: // System.Int32 UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorTweenMode_tC8254CFED9F320A1B7A452159F60A143952DFE19, ___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/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___value_3)); } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 get_value_3() const { return ___value_3; } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Texture_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage> struct Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF, ___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); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF, ___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_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF, ___currentValue_3)); } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 get_currentValue_3() const { return ___currentValue_3; } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___m_Texture_5), (void*)NULL); #endif } }; // 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<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<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.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; } }; // System.Data.RBTree`1/Node<System.Int32> struct Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F { public: // System.Int32 System.Data.RBTree`1/Node::_selfId int32_t ____selfId_0; // System.Int32 System.Data.RBTree`1/Node::_leftId int32_t ____leftId_1; // System.Int32 System.Data.RBTree`1/Node::_rightId int32_t ____rightId_2; // System.Int32 System.Data.RBTree`1/Node::_parentId int32_t ____parentId_3; // System.Int32 System.Data.RBTree`1/Node::_nextId int32_t ____nextId_4; // System.Int32 System.Data.RBTree`1/Node::_subTreeSize int32_t ____subTreeSize_5; // K System.Data.RBTree`1/Node::_keyOfNode int32_t ____keyOfNode_6; // System.Data.RBTree`1/NodeColor<K> System.Data.RBTree`1/Node::_nodeColor int32_t ____nodeColor_7; public: inline static int32_t get_offset_of__selfId_0() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____selfId_0)); } inline int32_t get__selfId_0() const { return ____selfId_0; } inline int32_t* get_address_of__selfId_0() { return &____selfId_0; } inline void set__selfId_0(int32_t value) { ____selfId_0 = value; } inline static int32_t get_offset_of__leftId_1() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____leftId_1)); } inline int32_t get__leftId_1() const { return ____leftId_1; } inline int32_t* get_address_of__leftId_1() { return &____leftId_1; } inline void set__leftId_1(int32_t value) { ____leftId_1 = value; } inline static int32_t get_offset_of__rightId_2() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____rightId_2)); } inline int32_t get__rightId_2() const { return ____rightId_2; } inline int32_t* get_address_of__rightId_2() { return &____rightId_2; } inline void set__rightId_2(int32_t value) { ____rightId_2 = value; } inline static int32_t get_offset_of__parentId_3() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____parentId_3)); } inline int32_t get__parentId_3() const { return ____parentId_3; } inline int32_t* get_address_of__parentId_3() { return &____parentId_3; } inline void set__parentId_3(int32_t value) { ____parentId_3 = value; } inline static int32_t get_offset_of__nextId_4() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____nextId_4)); } inline int32_t get__nextId_4() const { return ____nextId_4; } inline int32_t* get_address_of__nextId_4() { return &____nextId_4; } inline void set__nextId_4(int32_t value) { ____nextId_4 = value; } inline static int32_t get_offset_of__subTreeSize_5() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____subTreeSize_5)); } inline int32_t get__subTreeSize_5() const { return ____subTreeSize_5; } inline int32_t* get_address_of__subTreeSize_5() { return &____subTreeSize_5; } inline void set__subTreeSize_5(int32_t value) { ____subTreeSize_5 = value; } inline static int32_t get_offset_of__keyOfNode_6() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____keyOfNode_6)); } inline int32_t get__keyOfNode_6() const { return ____keyOfNode_6; } inline int32_t* get_address_of__keyOfNode_6() { return &____keyOfNode_6; } inline void set__keyOfNode_6(int32_t value) { ____keyOfNode_6 = value; } inline static int32_t get_offset_of__nodeColor_7() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____nodeColor_7)); } inline int32_t get__nodeColor_7() const { return ____nodeColor_7; } inline int32_t* get_address_of__nodeColor_7() { return &____nodeColor_7; } inline void set__nodeColor_7(int32_t value) { ____nodeColor_7 = value; } }; // System.Data.RBTree`1/Node<System.Object> struct Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C { public: // System.Int32 System.Data.RBTree`1/Node::_selfId int32_t ____selfId_0; // System.Int32 System.Data.RBTree`1/Node::_leftId int32_t ____leftId_1; // System.Int32 System.Data.RBTree`1/Node::_rightId int32_t ____rightId_2; // System.Int32 System.Data.RBTree`1/Node::_parentId int32_t ____parentId_3; // System.Int32 System.Data.RBTree`1/Node::_nextId int32_t ____nextId_4; // System.Int32 System.Data.RBTree`1/Node::_subTreeSize int32_t ____subTreeSize_5; // K System.Data.RBTree`1/Node::_keyOfNode RuntimeObject * ____keyOfNode_6; // System.Data.RBTree`1/NodeColor<K> System.Data.RBTree`1/Node::_nodeColor int32_t ____nodeColor_7; public: inline static int32_t get_offset_of__selfId_0() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____selfId_0)); } inline int32_t get__selfId_0() const { return ____selfId_0; } inline int32_t* get_address_of__selfId_0() { return &____selfId_0; } inline void set__selfId_0(int32_t value) { ____selfId_0 = value; } inline static int32_t get_offset_of__leftId_1() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____leftId_1)); } inline int32_t get__leftId_1() const { return ____leftId_1; } inline int32_t* get_address_of__leftId_1() { return &____leftId_1; } inline void set__leftId_1(int32_t value) { ____leftId_1 = value; } inline static int32_t get_offset_of__rightId_2() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____rightId_2)); } inline int32_t get__rightId_2() const { return ____rightId_2; } inline int32_t* get_address_of__rightId_2() { return &____rightId_2; } inline void set__rightId_2(int32_t value) { ____rightId_2 = value; } inline static int32_t get_offset_of__parentId_3() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____parentId_3)); } inline int32_t get__parentId_3() const { return ____parentId_3; } inline int32_t* get_address_of__parentId_3() { return &____parentId_3; } inline void set__parentId_3(int32_t value) { ____parentId_3 = value; } inline static int32_t get_offset_of__nextId_4() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____nextId_4)); } inline int32_t get__nextId_4() const { return ____nextId_4; } inline int32_t* get_address_of__nextId_4() { return &____nextId_4; } inline void set__nextId_4(int32_t value) { ____nextId_4 = value; } inline static int32_t get_offset_of__subTreeSize_5() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____subTreeSize_5)); } inline int32_t get__subTreeSize_5() const { return ____subTreeSize_5; } inline int32_t* get_address_of__subTreeSize_5() { return &____subTreeSize_5; } inline void set__subTreeSize_5(int32_t value) { ____subTreeSize_5 = value; } inline static int32_t get_offset_of__keyOfNode_6() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____keyOfNode_6)); } inline RuntimeObject * get__keyOfNode_6() const { return ____keyOfNode_6; } inline RuntimeObject ** get_address_of__keyOfNode_6() { return &____keyOfNode_6; } inline void set__keyOfNode_6(RuntimeObject * value) { ____keyOfNode_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____keyOfNode_6), (void*)value); } inline static int32_t get_offset_of__nodeColor_7() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____nodeColor_7)); } inline int32_t get__nodeColor_7() const { return ____nodeColor_7; } inline int32_t* get_address_of__nodeColor_7() { return &____nodeColor_7; } inline void set__nodeColor_7(int32_t value) { ____nodeColor_7 = value; } }; // System.Data.RBTree`1<System.Int32> struct RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 : public RuntimeObject { public: // System.Data.RBTree`1/TreePage<K>[] System.Data.RBTree`1::_pageTable TreePageU5BU5D_t119A89645D06C5D41CA7694ABC97CED591EBB0E4* ____pageTable_0; // System.Int32[] System.Data.RBTree`1::_pageTableMap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____pageTableMap_1; // System.Int32 System.Data.RBTree`1::_inUsePageCount int32_t ____inUsePageCount_2; // System.Int32 System.Data.RBTree`1::_nextFreePageLine int32_t ____nextFreePageLine_3; // System.Int32 System.Data.RBTree`1::root int32_t ___root_4; // System.Int32 System.Data.RBTree`1::_version int32_t ____version_5; // System.Int32 System.Data.RBTree`1::_inUseNodeCount int32_t ____inUseNodeCount_6; // System.Int32 System.Data.RBTree`1::_inUseSatelliteTreeCount int32_t ____inUseSatelliteTreeCount_7; // System.Data.TreeAccessMethod System.Data.RBTree`1::_accessMethod int32_t ____accessMethod_8; public: inline static int32_t get_offset_of__pageTable_0() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____pageTable_0)); } inline TreePageU5BU5D_t119A89645D06C5D41CA7694ABC97CED591EBB0E4* get__pageTable_0() const { return ____pageTable_0; } inline TreePageU5BU5D_t119A89645D06C5D41CA7694ABC97CED591EBB0E4** get_address_of__pageTable_0() { return &____pageTable_0; } inline void set__pageTable_0(TreePageU5BU5D_t119A89645D06C5D41CA7694ABC97CED591EBB0E4* value) { ____pageTable_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____pageTable_0), (void*)value); } inline static int32_t get_offset_of__pageTableMap_1() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____pageTableMap_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__pageTableMap_1() const { return ____pageTableMap_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__pageTableMap_1() { return &____pageTableMap_1; } inline void set__pageTableMap_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____pageTableMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____pageTableMap_1), (void*)value); } inline static int32_t get_offset_of__inUsePageCount_2() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____inUsePageCount_2)); } inline int32_t get__inUsePageCount_2() const { return ____inUsePageCount_2; } inline int32_t* get_address_of__inUsePageCount_2() { return &____inUsePageCount_2; } inline void set__inUsePageCount_2(int32_t value) { ____inUsePageCount_2 = value; } inline static int32_t get_offset_of__nextFreePageLine_3() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____nextFreePageLine_3)); } inline int32_t get__nextFreePageLine_3() const { return ____nextFreePageLine_3; } inline int32_t* get_address_of__nextFreePageLine_3() { return &____nextFreePageLine_3; } inline void set__nextFreePageLine_3(int32_t value) { ____nextFreePageLine_3 = value; } inline static int32_t get_offset_of_root_4() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ___root_4)); } inline int32_t get_root_4() const { return ___root_4; } inline int32_t* get_address_of_root_4() { return &___root_4; } inline void set_root_4(int32_t value) { ___root_4 = value; } inline static int32_t get_offset_of__version_5() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____version_5)); } inline int32_t get__version_5() const { return ____version_5; } inline int32_t* get_address_of__version_5() { return &____version_5; } inline void set__version_5(int32_t value) { ____version_5 = value; } inline static int32_t get_offset_of__inUseNodeCount_6() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____inUseNodeCount_6)); } inline int32_t get__inUseNodeCount_6() const { return ____inUseNodeCount_6; } inline int32_t* get_address_of__inUseNodeCount_6() { return &____inUseNodeCount_6; } inline void set__inUseNodeCount_6(int32_t value) { ____inUseNodeCount_6 = value; } inline static int32_t get_offset_of__inUseSatelliteTreeCount_7() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____inUseSatelliteTreeCount_7)); } inline int32_t get__inUseSatelliteTreeCount_7() const { return ____inUseSatelliteTreeCount_7; } inline int32_t* get_address_of__inUseSatelliteTreeCount_7() { return &____inUseSatelliteTreeCount_7; } inline void set__inUseSatelliteTreeCount_7(int32_t value) { ____inUseSatelliteTreeCount_7 = value; } inline static int32_t get_offset_of__accessMethod_8() { return static_cast<int32_t>(offsetof(RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11, ____accessMethod_8)); } inline int32_t get__accessMethod_8() const { return ____accessMethod_8; } inline int32_t* get_address_of__accessMethod_8() { return &____accessMethod_8; } inline void set__accessMethod_8(int32_t value) { ____accessMethod_8 = value; } }; // System.Data.RBTree`1<System.Object> struct RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 : public RuntimeObject { public: // System.Data.RBTree`1/TreePage<K>[] System.Data.RBTree`1::_pageTable TreePageU5BU5D_t2943003B0CAE00F86234D8A8FBE62F1A4A725FB6* ____pageTable_0; // System.Int32[] System.Data.RBTree`1::_pageTableMap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____pageTableMap_1; // System.Int32 System.Data.RBTree`1::_inUsePageCount int32_t ____inUsePageCount_2; // System.Int32 System.Data.RBTree`1::_nextFreePageLine int32_t ____nextFreePageLine_3; // System.Int32 System.Data.RBTree`1::root int32_t ___root_4; // System.Int32 System.Data.RBTree`1::_version int32_t ____version_5; // System.Int32 System.Data.RBTree`1::_inUseNodeCount int32_t ____inUseNodeCount_6; // System.Int32 System.Data.RBTree`1::_inUseSatelliteTreeCount int32_t ____inUseSatelliteTreeCount_7; // System.Data.TreeAccessMethod System.Data.RBTree`1::_accessMethod int32_t ____accessMethod_8; public: inline static int32_t get_offset_of__pageTable_0() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____pageTable_0)); } inline TreePageU5BU5D_t2943003B0CAE00F86234D8A8FBE62F1A4A725FB6* get__pageTable_0() const { return ____pageTable_0; } inline TreePageU5BU5D_t2943003B0CAE00F86234D8A8FBE62F1A4A725FB6** get_address_of__pageTable_0() { return &____pageTable_0; } inline void set__pageTable_0(TreePageU5BU5D_t2943003B0CAE00F86234D8A8FBE62F1A4A725FB6* value) { ____pageTable_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____pageTable_0), (void*)value); } inline static int32_t get_offset_of__pageTableMap_1() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____pageTableMap_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__pageTableMap_1() const { return ____pageTableMap_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__pageTableMap_1() { return &____pageTableMap_1; } inline void set__pageTableMap_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____pageTableMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____pageTableMap_1), (void*)value); } inline static int32_t get_offset_of__inUsePageCount_2() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____inUsePageCount_2)); } inline int32_t get__inUsePageCount_2() const { return ____inUsePageCount_2; } inline int32_t* get_address_of__inUsePageCount_2() { return &____inUsePageCount_2; } inline void set__inUsePageCount_2(int32_t value) { ____inUsePageCount_2 = value; } inline static int32_t get_offset_of__nextFreePageLine_3() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____nextFreePageLine_3)); } inline int32_t get__nextFreePageLine_3() const { return ____nextFreePageLine_3; } inline int32_t* get_address_of__nextFreePageLine_3() { return &____nextFreePageLine_3; } inline void set__nextFreePageLine_3(int32_t value) { ____nextFreePageLine_3 = value; } inline static int32_t get_offset_of_root_4() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ___root_4)); } inline int32_t get_root_4() const { return ___root_4; } inline int32_t* get_address_of_root_4() { return &___root_4; } inline void set_root_4(int32_t value) { ___root_4 = value; } inline static int32_t get_offset_of__version_5() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____version_5)); } inline int32_t get__version_5() const { return ____version_5; } inline int32_t* get_address_of__version_5() { return &____version_5; } inline void set__version_5(int32_t value) { ____version_5 = value; } inline static int32_t get_offset_of__inUseNodeCount_6() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____inUseNodeCount_6)); } inline int32_t get__inUseNodeCount_6() const { return ____inUseNodeCount_6; } inline int32_t* get_address_of__inUseNodeCount_6() { return &____inUseNodeCount_6; } inline void set__inUseNodeCount_6(int32_t value) { ____inUseNodeCount_6 = value; } inline static int32_t get_offset_of__inUseSatelliteTreeCount_7() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____inUseSatelliteTreeCount_7)); } inline int32_t get__inUseSatelliteTreeCount_7() const { return ____inUseSatelliteTreeCount_7; } inline int32_t* get_address_of__inUseSatelliteTreeCount_7() { return &____inUseSatelliteTreeCount_7; } inline void set__inUseSatelliteTreeCount_7(int32_t value) { ____inUseSatelliteTreeCount_7 = value; } inline static int32_t get_offset_of__accessMethod_8() { return static_cast<int32_t>(offsetof(RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2, ____accessMethod_8)); } inline int32_t get__accessMethod_8() const { return ____accessMethod_8; } inline int32_t* get_address_of__accessMethod_8() { return &____accessMethod_8; } inline void set__accessMethod_8(int32_t value) { ____accessMethod_8 = value; } }; // System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>> struct TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 : 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_tC38251ED2F273F12DD35B9D834895E8343290094, ___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_tC38251ED2F273F12DD35B9D834895E8343290094, ___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_tC38251ED2F273F12DD35B9D834895E8343290094, ___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_tC38251ED2F273F12DD35B9D834895E8343290094, ___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.ValueTuple`2<System.Boolean,System.Object>> struct TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE : 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_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE, ___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_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE, ___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_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE, ___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_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE, ___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.ValueTuple`2<System.Int32,System.Int32>> struct TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD : 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_t46984FB48E7F4A7873D5006D3E547C453FC417CD, ___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_t46984FB48E7F4A7873D5006D3E547C453FC417CD, ___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_t46984FB48E7F4A7873D5006D3E547C453FC417CD, ___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_t46984FB48E7F4A7873D5006D3E547C453FC417CD, ___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.ValueTuple`3<System.Object,System.Object,System.Int32>> struct TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF : 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_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF, ___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_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF, ___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_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF, ___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_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF, ___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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 : 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_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4, ___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_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4, ___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_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4, ___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_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4, ___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.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.Nullable`1<System.Int32>> struct Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581, ___m_result_22)); } inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_m_result_22() const { return ___m_result_22; } inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value) { ___m_result_22 = value; } }; struct Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * ___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_tACAF262312375D7D8F7883E8DA2431DDAF082BFA * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * 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_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task`1<System.Object>> struct Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA, ___m_result_22)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_result_22() const { return ___m_result_22; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value); } }; struct Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t6B2C06B3994180B328B52527F3543CECE0CF681F * ___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_tDD8DCF5D5D159D41F48AB654CB896F021E874626 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t6B2C06B3994180B328B52527F3543CECE0CF681F * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t6B2C06B3994180B328B52527F3543CECE0CF681F ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t6B2C06B3994180B328B52527F3543CECE0CF681F * 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_t4A805773480425D0A659D93F81B4A3568D8C50CA_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_tDD8DCF5D5D159D41F48AB654CB896F021E874626 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_tDD8DCF5D5D159D41F48AB654CB896F021E874626 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_tDD8DCF5D5D159D41F48AB654CB896F021E874626 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>> struct Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF, ___m_result_22)); } inline ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE get_m_result_22() const { return ___m_result_22; } inline ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item2_1), (void*)NULL); } }; struct Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * ___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_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * 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_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>> struct Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F, ___m_result_22)); } inline ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E get_m_result_22() const { return ___m_result_22; } inline ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E value) { ___m_result_22 = value; } }; struct Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * ___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_t9FB9119855898574302D11A25F1AA03BDBDADD0D * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * 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_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B, ___m_result_22)); } inline ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 get_m_result_22() const { return ___m_result_22; } inline ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item2_1), (void*)NULL); #endif } }; struct Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * ___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_t97E22A4E70D2312410723F6A2927D66B83EAE808 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * 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_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF, ___m_result_22)); } inline ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 get_m_result_22() const { return ___m_result_22; } inline ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 * get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item4_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_22))->___Item5_4), (void*)NULL); #endif } }; struct Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * ___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_t656C16FD0C20638D62CCEC28A2C7563F702C6479 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * 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_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)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); } }; // 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.UI.CoroutineTween.ColorTween struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 { public: // UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback UnityEngine.UI.CoroutineTween.ColorTween::m_Target ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0; // UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_StartColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1; // UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_TargetColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2; // UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::m_TweenMode int32_t ___m_TweenMode_3; // System.Single UnityEngine.UI.CoroutineTween.ColorTween::m_Duration float ___m_Duration_4; // System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::m_IgnoreTimeScale bool ___m_IgnoreTimeScale_5; public: inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_Target_0)); } inline ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * get_m_Target_0() const { return ___m_Target_0; } inline ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 ** get_address_of_m_Target_0() { return &___m_Target_0; } inline void set_m_Target_0(ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * value) { ___m_Target_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value); } inline static int32_t get_offset_of_m_StartColor_1() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_StartColor_1)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_StartColor_1() const { return ___m_StartColor_1; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_StartColor_1() { return &___m_StartColor_1; } inline void set_m_StartColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_StartColor_1 = value; } inline static int32_t get_offset_of_m_TargetColor_2() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_TargetColor_2)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_TargetColor_2() const { return ___m_TargetColor_2; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_TargetColor_2() { return &___m_TargetColor_2; } inline void set_m_TargetColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_TargetColor_2 = value; } inline static int32_t get_offset_of_m_TweenMode_3() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_TweenMode_3)); } inline int32_t get_m_TweenMode_3() const { return ___m_TweenMode_3; } inline int32_t* get_address_of_m_TweenMode_3() { return &___m_TweenMode_3; } inline void set_m_TweenMode_3(int32_t value) { ___m_TweenMode_3 = value; } inline static int32_t get_offset_of_m_Duration_4() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_Duration_4)); } inline float get_m_Duration_4() const { return ___m_Duration_4; } inline float* get_address_of_m_Duration_4() { return &___m_Duration_4; } inline void set_m_Duration_4(float value) { ___m_Duration_4 = value; } inline static int32_t get_offset_of_m_IgnoreTimeScale_5() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_IgnoreTimeScale_5)); } inline bool get_m_IgnoreTimeScale_5() const { return ___m_IgnoreTimeScale_5; } inline bool* get_address_of_m_IgnoreTimeScale_5() { return &___m_IgnoreTimeScale_5; } inline void set_m_IgnoreTimeScale_5(bool value) { ___m_IgnoreTimeScale_5 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.ColorTween struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339_marshaled_pinvoke { ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2; int32_t ___m_TweenMode_3; float ___m_Duration_4; int32_t ___m_IgnoreTimeScale_5; }; // Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.ColorTween struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339_marshaled_com { ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2; int32_t ___m_TweenMode_3; float ___m_Duration_4; int32_t ___m_IgnoreTimeScale_5; }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // 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; }; // 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.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.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.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween> struct U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 : public RuntimeObject { public: // System.Int32 UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<>1__state int32_t ___U3CU3E1__state_0; // System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<>2__current RuntimeObject * ___U3CU3E2__current_1; // T UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::tweenInfo ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___tweenInfo_2; // System.Single UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2::<elapsedTime>5__2 float ___U3CelapsedTimeU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___tweenInfo_2)); } inline ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 get_tweenInfo_2() const { return ___tweenInfo_2; } inline ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; } inline void set_tweenInfo_2(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 value) { ___tweenInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL); } inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___U3CelapsedTimeU3E5__2_3)); } inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; } inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; } inline void set_U3CelapsedTimeU3E5__2_3(float value) { ___U3CelapsedTimeU3E5__2_3 = value; } }; // System.Action`1<System.IAsyncResult> struct Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 : public MulticastDelegate_t { public: public: }; // 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 } }; // System.Func`1<System.Nullable`1<System.Int32>> struct Func_1_tDC30C5284AE787359DC813472C98404F72620D79 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.ValueTuple`2<System.Boolean,System.Object>> struct Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A : public MulticastDelegate_t { public: public: }; // System.Func`1<System.ValueTuple`2<System.Int32,System.Int32>> struct Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD : public MulticastDelegate_t { public: public: }; // System.Func`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B : public MulticastDelegate_t { public: public: }; // 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<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object> struct Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>> struct Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>> struct Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>> struct Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>> struct Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>> struct Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 : 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.IAsyncResult,System.Int32> struct Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.IAsyncResult,System.Object> struct Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED : public MulticastDelegate_t { public: public: }; // System.Func`2<System.IAsyncResult,System.Threading.Tasks.VoidTaskResult> struct Func_2_t93436DB66248BF735350EEC072257D84453153ED : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Nullable`1<System.Int32>> struct Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.ValueTuple`2<System.Boolean,System.Object>> struct Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.ValueTuple`2<System.Int32,System.Int32>> struct Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>> struct Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 : 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: }; // System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult> struct Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 : 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<UnityEngine.Color> struct UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE : 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`1<UnityEngine.Vector2> struct UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 : 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: }; // System.Threading.Tasks.UnwrapPromise`1<System.Object> struct UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 : public Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 { public: // System.Byte System.Threading.Tasks.UnwrapPromise`1::_state uint8_t ____state_25; // System.Boolean System.Threading.Tasks.UnwrapPromise`1::_lookForOce bool ____lookForOce_26; public: inline static int32_t get_offset_of__state_25() { return static_cast<int32_t>(offsetof(UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378, ____state_25)); } inline uint8_t get__state_25() const { return ____state_25; } inline uint8_t* get_address_of__state_25() { return &____state_25; } inline void set__state_25(uint8_t value) { ____state_25 = value; } inline static int32_t get_offset_of__lookForOce_26() { return static_cast<int32_t>(offsetof(UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378, ____lookForOce_26)); } inline bool get__lookForOce_26() const { return ____lookForOce_26; } inline bool* get_address_of__lookForOce_26() { return &____lookForOce_26; } inline void set__lookForOce_26(bool value) { ____lookForOce_26 = value; } }; // 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.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: }; // System.OperationCanceledException struct OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ____cancellationToken_17; public: inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB, ____cancellationToken_17)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get__cancellationToken_17() const { return ____cancellationToken_17; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of__cancellationToken_17() { return &____cancellationToken_17; } inline void set__cancellationToken_17(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ____cancellationToken_17 = value; Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL); } }; // System.Threading.ThreadAbortException struct ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 : public MulticastDelegate_t { 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; } }; // 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: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Data.RBTree`1/Node<System.Int32>[] struct NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441 : public RuntimeArray { public: ALIGN_FIELD (8) Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F m_Items[1]; public: inline Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F * 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_t83BAF168314CEB87DDE87086DD569B35BD26E30F value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F value) { m_Items[index] = 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.Data.RBTree`1/Node<System.Object>[] struct NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312 : public RuntimeArray { public: ALIGN_FIELD (8) Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C m_Items[1]; public: inline Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C * 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_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____keyOfNode_6), (void*)NULL); } inline Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____keyOfNode_6), (void*)NULL); } }; // 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.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.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.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>[] struct EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF m_Items[1]; public: inline Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___value_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___value_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>[] struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 m_Items[1]; public: inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>[] struct EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 m_Items[1]; public: inline Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // UnityEngine.XR.ARSubsystems.XRReferenceImage[] struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900 : public RuntimeArray { public: ALIGN_FIELD (8) XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 m_Items[1]; public: inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * 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, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL); #endif } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>[] struct EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE m_Items[1]; public: inline Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Texture_5), (void*)NULL); #endif } inline Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Name_4), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Texture_5), (void*)NULL); #endif } }; // UnityEngine.XR.ARSubsystems.XRReferenceObject[] struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20 : public RuntimeArray { public: ALIGN_FIELD (8) XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE m_Items[1]; public: inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * 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, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL); #endif } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>[] struct EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D m_Items[1]; public: inline Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Entries_3), (void*)NULL); #endif } inline Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___m_Entries_3), (void*)NULL); #endif } }; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 m_Items[1]; public: inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 m_Items[1]; public: inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { m_Items[index] = value; } }; // System.Void System.Action`1<System.Object>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // TResult System.Func`3<System.Object,System.Object,System.Object>::Invoke(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_3_Invoke_mB97AAD621BCAD6A2DB25DAE966EC3A2EF2D3AB0A_gshared (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m1F051D5AD610D0280CF28B8CCED1F5992B50534C_gshared_inline (TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB * __this, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m600345B217F1312DBAA54D5F2A65F594500BC368_gshared (ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 * __this, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mB5ADD7E7449228CDDB05F0FEFC0C6EBF9295181A_gshared_inline (TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 * __this, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mEC4AB448BBD4A61A2EE44E3298C68E0B02538197_gshared (ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 * __this, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m82521D2E4BA0453CD5B0AAC5C718E61FAF912AD9_gshared_inline (TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C * __this, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m30F02BA1CA144F1F02BACED31DEA2BA3F92AA247_gshared (ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A * __this, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mF997B5520866FAC40D262A9187226C6EB759288A_gshared_inline (TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 * __this, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mAE96103C73C81A6EE62267C91D0DB3D4A113819A_gshared (ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 * __this, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mACDA3EEC014894205C1C021C410D03B7546C9B91_gshared_inline (TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 * __this, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m933A565616C999D8C0EF1FD6C2F6486755A5B7A4_gshared (ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 * __this, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___task0, bool ___continueOnCapturedContext1, 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.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.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.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.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.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.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.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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_updated() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared_inline (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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared_inline (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); // !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); // 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); // 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); // 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); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB_gshared (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 * __this, Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942_gshared (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92_gshared (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 * __this, Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1_gshared (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF * __this, Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE_gshared (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 * __this, Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, 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.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.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.Action`1<System.IAsyncResult>::Invoke(T) inline void Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { (( void (*) (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_gshared)(__this, ___obj0, method); } // System.Threading.CancellationToken System.OperationCanceledException::get_CancellationToken() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsHandled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsHandled_m071FA704017944E5AF822BCD87BBEEBDC263666B (TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * __this, bool ___calledFromFinalizer0, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.AsyncCausalityTracer::get_LoggingOn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15 (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.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCompletion(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.AsyncCausalityStatus) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC (int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___status2, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RemoveFromActiveTasks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F (int32_t ___taskId0, 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.Void System.Threading.Tasks.TaskFactory::CheckFromAsyncOptions(System.Threading.Tasks.TaskCreationOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckFromAsyncOptions_m057FCAC407F10FB9157BA7D3A38963EAD250B3A8 (int32_t ___creationOptions0, bool ___hasBeginMethod1, 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.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCreation(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCreation_m3A018DC27992C4559B10283C06CC11513825898A (int32_t ___traceLevel0, int32_t ___taskId1, String_t* ___operationName2, uint64_t ___relatedContext3, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::AddToActiveTasks(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_AddToActiveTasks_m29D7B0C1AD029D86736A92EC7E36BE87209748FD (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, const RuntimeMethod* method); // System.Void System.Threading.AtomicBoolean::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AtomicBoolean__ctor_m70B7B7EDDDEAD330A6C718C65C94223DFAB859D7 (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * __this, const RuntimeMethod* method); // System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05 (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // TResult System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>::Invoke(T1,T2) inline RuntimeObject* Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989 (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method) { return (( RuntimeObject* (*) (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *, RuntimeObject *, const RuntimeMethod*))Func_3_Invoke_mB97AAD621BCAD6A2DB25DAE966EC3A2EF2D3AB0A_gshared)(__this, ___arg10, ___arg21, method); } // System.Boolean System.Threading.AtomicBoolean::TryRelaxedSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AtomicBoolean_TryRelaxedSet_m8C68BF84E34C9F0FFEC851A81453C0E1586837FD (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * __this, 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.Object,System.Threading.Tasks.TaskCreationOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, RuntimeObject * ___state0, int32_t ___creationOptions1, bool ___promiseStyle2, 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.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.Void System.Threading.Tasks.Task::ScheduleAndStart(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, bool ___needsProtection0, 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.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.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.TaskAwaiter`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m1F051D5AD610D0280CF28B8CCED1F5992B50534C_inline (TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB * __this, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB *, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m1F051D5AD610D0280CF28B8CCED1F5992B50534C_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m600345B217F1312DBAA54D5F2A65F594500BC368 (ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 * __this, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 *, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m600345B217F1312DBAA54D5F2A65F594500BC368_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_mB5ADD7E7449228CDDB05F0FEFC0C6EBF9295181A_inline (TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 * __this, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 *, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, const RuntimeMethod*))TaskAwaiter_1__ctor_mB5ADD7E7449228CDDB05F0FEFC0C6EBF9295181A_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mEC4AB448BBD4A61A2EE44E3298C68E0B02538197 (ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 * __this, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 *, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mEC4AB448BBD4A61A2EE44E3298C68E0B02538197_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m82521D2E4BA0453CD5B0AAC5C718E61FAF912AD9_inline (TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C * __this, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C *, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, const RuntimeMethod*))TaskAwaiter_1__ctor_m82521D2E4BA0453CD5B0AAC5C718E61FAF912AD9_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m30F02BA1CA144F1F02BACED31DEA2BA3F92AA247 (ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A * __this, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A *, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m30F02BA1CA144F1F02BACED31DEA2BA3F92AA247_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_mF997B5520866FAC40D262A9187226C6EB759288A_inline (TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 * __this, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 *, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, const RuntimeMethod*))TaskAwaiter_1__ctor_mF997B5520866FAC40D262A9187226C6EB759288A_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mAE96103C73C81A6EE62267C91D0DB3D4A113819A (ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 * __this, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 *, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mAE96103C73C81A6EE62267C91D0DB3D4A113819A_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_mACDA3EEC014894205C1C021C410D03B7546C9B91_inline (TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 * __this, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 *, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, const RuntimeMethod*))TaskAwaiter_1__ctor_mACDA3EEC014894205C1C021C410D03B7546C9B91_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m933A565616C999D8C0EF1FD6C2F6486755A5B7A4 (ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 * __this, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 *, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m933A565616C999D8C0EF1FD6C2F6486755A5B7A4_gshared)(__this, ___task0, ___continueOnCapturedContext1, 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.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.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.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.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.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.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.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); } // System.Void Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtils_ArgumentNotNull_m1C7092481C0F809BA56F392D6116B23139888C81 (RuntimeObject * ___value0, String_t* ___parameterName1, const RuntimeMethod* 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_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared_inline)(__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_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared_inline)(__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_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared_inline)(__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_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared_inline)(__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_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared_inline)(__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_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B *, const RuntimeMethod*))TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared_inline)(__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_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared_inline)(__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_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t901047647D1B0577009EA387273335B841552234 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared_inline)(__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_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F *, const RuntimeMethod*))TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared_inline)(__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_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared_inline)(__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_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared_inline)(__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_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared_inline)(__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_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared_inline)(__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_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared_inline)(__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_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared_inline)(__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_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared_inline)(__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_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared_inline)(__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_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F *, const RuntimeMethod*))TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared_inline)(__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_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared_inline)(__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_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared_inline)(__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_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared_inline)(__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_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared_inline)(__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_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared_inline)(__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_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared_inline)(__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_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared_inline)(__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_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared_inline)(__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_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared_inline)(__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_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared_inline)(__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_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared_inline)(__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_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 *, const RuntimeMethod*))TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared_inline)(__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_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared_inline)(__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_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared_inline)(__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_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { return (( NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 (*) (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 *, const RuntimeMethod*))TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared_inline)(__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.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.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.Exception System.Data.ExceptionBuilder::InternalRBTreeError(System.Data.RBTreeError) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * ExceptionBuilder_InternalRBTreeError_m8305960D40FCF87EABEBB85BC70288E33F41B7D3 (int32_t ___internalError0, 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.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.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); // 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.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3 (int32_t ___h10, int32_t ___h21, int32_t ___h32, int32_t ___h43, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.Component::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.GameObject::get_activeInHierarchy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void UnityEngine.UI.CoroutineTween.ColorTween::TweenValue(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_m5F8B59F75D4CE627BC5F6E34A1345D41941FDCC6 (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 * __this, float ___floatPercentage0, const RuntimeMethod* method); // UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void UnityEngine.UI.CoroutineTween.FloatTween::TweenValue(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_mF21AE3A616B020B1D351E237D1F3145B508ACB11 (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 * __this, float ___floatPercentage0, 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.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, 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.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.Void System.Threading.Tasks.Task::AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddCompletionAction_mE1E799EDCDFA115D1FAC40C8A5AA07403C1289F5 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, RuntimeObject* ___action0, const RuntimeMethod* method); // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::get_CurrentStackGuard() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * Task_get_CurrentStackGuard_m6DBCD68B1A6677D6DB6D7E2921400209A71D91A4 (const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.StackGuard::TryBeginInliningScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StackGuard_TryBeginInliningScope_m663FAF52A48EEE22EAE1DFA69E167AF82F090AAF (StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.StackGuard::EndInliningScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackGuard_EndInliningScope_m4EA0F5072CB4F1BC6C131A998DF50AB8E5546957 (StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * __this, const RuntimeMethod* method); // System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m50EFFE5096DF1DE733EA9895CEEC8EB6F142D5D5 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::UnsafeQueueUserWorkItem(System.Threading.WaitCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_UnsafeQueueUserWorkItem_m9B9388DD623D33685D415D639455591D4DD967C6 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * ___callBack0, RuntimeObject * ___state1, 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); // TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::get_Result() inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * Task_1_get_Result_m57166DE3DB3CD426F6F13A3DBB97503E85A12477 (Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 * __this, const RuntimeMethod* method) { return (( Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * (*) (Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 *, const RuntimeMethod*))Task_1_get_Result_m5A339E4CA9D86AC691E5754F29A452802A8DE548_gshared)(__this, method); } // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationRelation(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.CausalityRelation) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationRelation_m02292CC8909AD62A9B3292C224943E396AC1821E (int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___relation2, 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.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.Task::GetCancellationExceptionDispatchInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * Task_GetCancellationExceptionDispatchInfo_mA814E950BDF6926C765498C6EBD4BD7AEC9049F8 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> System.Threading.Tasks.Task::GetExceptionDispatchInfos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * Task_GetExceptionDispatchInfos_mA9149E4C9DDC833EE7BA35D4B0DB948709A77403 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() inline int32_t ReadOnlyCollection_1_get_Count_m50CCE73BA6E5F7A70E98B4609F8C502AB185317F (ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *, const RuntimeMethod*))ReadOnlyCollection_1_get_Count_m2D719EE02B7FE98B5D6E9515334C594836D2C0C7_gshared)(__this, method); } // T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * ReadOnlyCollection_1_get_Item_m9CC93AE940BF7F2FF355CADB19E2FBC2B3774BE2 (ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * (*) (ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_get_Item_m92C5369651F9216CBCAD03983F2F34C5C3BF0744_gshared)(__this, ___index0, method); } // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_SourceException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * ExceptionDispatchInfo_get_SourceException_m461A8748D61FCC7EF8D71D2784D851B0523B9B30_inline (ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 * __this, Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 *, Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *, const RuntimeMethod*))Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB_gshared)(__this, ___dictionary0, 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.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.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, 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.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.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942 (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE *, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92 (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 * __this, Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 *, Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *, const RuntimeMethod*))Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1 (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF * __this, Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF *, Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *, const RuntimeMethod*))Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 * __this, Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 *, Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *, const RuntimeMethod*))Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared)(__this, ___dictionary0, 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.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; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::StartNew(System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * TaskFactory_1_StartNew_m8D2A5463473DEBB4A53ACD7883668C593FFDFAE4_gshared (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * __this, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * ___function0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken1, int32_t ___creationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, 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; { V_0 = (int32_t)1; int32_t L_0 = ___creationOptions2; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1; L_1 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_0, /*hidden argument*/NULL); Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_2 = ___function0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken1; int32_t L_4 = ___creationOptions2; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler3; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_6; L_6 = (( Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * (*) (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_6; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m5F9EF0D28A14835A3EB8E667A0B528407300B9DB_gshared (RuntimeObject* ___iar0, Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { V_0 = (Exception_t *)NULL; V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)NULL; il2cpp_codegen_initobj((&V_2), sizeof(int32_t)); } IL_000c: try { // begin try (depth: 1) try { // begin try (depth: 2) { Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_0 = ___endFunction1; if (!L_0) { goto IL_0019; } } IL_000f: { Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_1 = ___endFunction1; RuntimeObject* L_2 = ___iar0; NullCheck((Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_1); int32_t L_3; L_3 = (( int32_t (*) (Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_2 = (int32_t)L_3; goto IL_0020; } IL_0019: { Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; RuntimeObject* L_5 = ___iar0; NullCheck((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4); Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); } IL_0020: { IL2CPP_LEAVE(0xA5, FINALLY_002b); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0025; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0028; } throw e; } CATCH_0025: { // begin catch(System.OperationCanceledException) V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)IL2CPP_GET_ACTIVE_EXCEPTION(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) CATCH_0028: { // begin catch(System.Exception) V_0 = (Exception_t *)((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002b; } FINALLY_002b: { // begin finally (depth: 1) { OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_6 = V_1; if (!L_6) { goto IL_003e; } } IL_002e: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_7 = ___promise3; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_8 = V_1; NullCheck((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9; L_9 = OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8, /*hidden argument*/NULL); OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_10 = V_1; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_7); bool L_11; L_11 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_7, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); goto IL_00a4; } IL_003e: { Exception_t * L_12 = V_0; if (!L_12) { goto IL_0069; } } IL_0041: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_13 = ___promise3; Exception_t * L_14 = V_0; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_13); bool L_15; L_15 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); if (!L_15) { goto IL_00a4; } } IL_004a: { Exception_t * L_16 = V_0; if (!((ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 *)IsInst((RuntimeObject*)L_16, ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var))) { goto IL_00a4; } } IL_0052: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_17 = ___promise3; NullCheck(L_17); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_18 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_17)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); NullCheck(L_18); TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * L_19 = (TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_18)->get_m_exceptionsHolder_2(); il2cpp_codegen_memory_barrier(); NullCheck((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19); TaskExceptionHolder_MarkAsHandled_m071FA704017944E5AF822BCD87BBEEBDC263666B((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19, (bool)0, /*hidden argument*/NULL); goto IL_00a4; } IL_0069: { bool L_20; L_20 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_20) { goto IL_007d; } } IL_0070: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_21 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21); int32_t L_22; L_22 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_22, (int32_t)1, /*hidden argument*/NULL); } IL_007d: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_23 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_23) { goto IL_008f; } } IL_0084: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_24 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24); int32_t L_25; L_25 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_25, /*hidden argument*/NULL); } IL_008f: { bool L_26 = ___requiresSynchronization4; if (!L_26) { goto IL_009d; } } IL_0093: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_27 = ___promise3; int32_t L_28 = V_2; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_27); bool L_29; L_29 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_27, (int32_t)L_28, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); goto IL_00a4; } IL_009d: { Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_30 = ___promise3; int32_t L_31 = V_2; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_30); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_30, (int32_t)L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); } IL_00a4: { IL2CPP_END_FINALLY(43) } } // end finally (depth: 1) IL2CPP_CLEANUP(43) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xA5, IL_00a5) } IL_00a5: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * TaskFactory_1_FromAsync_mEB2B498519E8DA0014B034D245AFAD69DFD9AD60_gshared (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * __this, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method) { { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_0 = ___beginMethod0; Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_1 = ___endMethod1; RuntimeObject * L_2 = ___state2; int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2(); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_4; L_4 = (( Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * (*) (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_0, (Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_1, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * TaskFactory_1_FromAsyncImpl_m5BFF5202249A69D8BD651847170509A2F6C32E91_gshared (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * V_0 = NULL; U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * V_1 = NULL; RuntimeObject* V_2 = NULL; int32_t V_3 = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_0 = (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 10)); (( void (*) (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *, 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)); V_0 = (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *)L_0; U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_1 = V_0; Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_2 = ___endFunction1; NullCheck(L_1); L_1->set_endFunction_0(L_2); U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_3 = V_0; Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; NullCheck(L_3); L_3->set_endAction_1(L_4); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_5 = ___beginMethod0; if (L_5) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_6 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m5BFF5202249A69D8BD651847170509A2F6C32E91_RuntimeMethod_var))); } IL_0022: { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_7 = V_0; NullCheck(L_7); Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_8 = (Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_7->get_endFunction_0(); if (L_8) { goto IL_003d; } } { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_9 = V_0; NullCheck(L_9); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_10 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_9->get_endAction_1(); if (L_10) { goto IL_003d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_11 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_11, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m5BFF5202249A69D8BD651847170509A2F6C32E91_RuntimeMethod_var))); } IL_003d: { int32_t L_12 = ___creationOptions4; TaskFactory_CheckFromAsyncOptions_m057FCAC407F10FB9157BA7D3A38963EAD250B3A8((int32_t)L_12, (bool)1, /*hidden argument*/NULL); U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_13 = V_0; RuntimeObject * L_14 = ___state3; int32_t L_15 = ___creationOptions4; Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_16 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); NullCheck(L_13); L_13->set_promise_2(L_16); bool L_17; L_17 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_17) { goto IL_0082; } } { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_18 = V_0; NullCheck(L_18); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_19 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_18->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19); int32_t L_20; L_20 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19, /*hidden argument*/NULL); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_21 = ___beginMethod0; NullCheck((Delegate_t *)L_21); MethodInfo_t * L_22; L_22 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_21, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_22); String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22); String_t* L_24; L_24 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B((String_t*)_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092, (String_t*)L_23, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m3A018DC27992C4559B10283C06CC11513825898A((int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)((int64_t)((int64_t)0)), /*hidden argument*/NULL); } IL_0082: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_25 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_25) { goto IL_0095; } } { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_26 = V_0; NullCheck(L_26); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_27 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_26->get_promise_2(); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_28; L_28 = Task_AddToActiveTasks_m29D7B0C1AD029D86736A92EC7E36BE87209748FD((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_27, /*hidden argument*/NULL); } IL_0095: { } IL_0096: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); bool L_29 = ((BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0(); if (!L_29) { goto IL_010b; } } IL_009d: { U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_30 = (U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)); (( void (*) (U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); V_1 = (U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 *)L_30; U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_31 = V_1; U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_32 = V_0; NullCheck(L_31); L_31->set_CSU24U3CU3E8__locals1_1(L_32); U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_33 = V_1; AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_34 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)il2cpp_codegen_object_new(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); AtomicBoolean__ctor_m70B7B7EDDDEAD330A6C718C65C94223DFAB859D7(L_34, /*hidden argument*/NULL); NullCheck(L_33); L_33->set_invoked_0(L_34); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_35 = ___beginMethod0; U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_36 = V_1; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_37 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_37, (RuntimeObject *)L_36, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/NULL); RuntimeObject * L_38 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35); RuntimeObject* L_39; L_39 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); V_2 = (RuntimeObject*)L_39; RuntimeObject* L_40 = V_2; if (!L_40) { goto IL_011f; } } IL_00cc: { RuntimeObject* L_41 = V_2; NullCheck((RuntimeObject*)L_41); bool L_42; L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, (RuntimeObject*)L_41); if (!L_42) { goto IL_011f; } } IL_00d4: { U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_43 = V_1; NullCheck(L_43); AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_44 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_43->get_invoked_0(); NullCheck((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44); bool L_45; L_45 = AtomicBoolean_TryRelaxedSet_m8C68BF84E34C9F0FFEC851A81453C0E1586837FD((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_011f; } } IL_00e1: { RuntimeObject* L_46 = V_2; U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_47 = V_1; NullCheck(L_47); U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_48 = (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *)L_47->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_48); Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 * L_49 = (Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_48->get_endFunction_0(); U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_50 = V_1; NullCheck(L_50); U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_51 = (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *)L_50->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_51); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_52 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_51->get_endAction_1(); U3CU3Ec__DisplayClass35_1_tA0763CED2419D6EC4F97FF9E5885B0FA11BE0181 * L_53 = V_1; NullCheck(L_53); U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_54 = (U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC *)L_53->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_54); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_55 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_54->get_promise_2(); (( void (*) (RuntimeObject*, Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)->methodPointer)((RuntimeObject*)L_46, (Func_2_tA29C2A21AF36FC259BE2841B4D9D20DCE108A892 *)L_49, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_52, (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); goto IL_011f; } IL_010b: { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_56 = ___beginMethod0; U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_57 = V_0; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_58 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_58, (RuntimeObject *)L_57, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)), /*hidden argument*/NULL); RuntimeObject * L_59 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56); RuntimeObject* L_60; L_60 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_58, (RuntimeObject *)L_59, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); } IL_011f: { goto IL_0169; } } // 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_0121; } throw e; } CATCH_0121: { // begin catch(System.Object) { bool L_61; L_61 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_61) { goto IL_013b; } } IL_0129: { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_62 = V_0; NullCheck(L_62); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_63 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_62->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63); int32_t L_64; L_64 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL); } IL_013b: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); bool L_65 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))))->get_s_asyncDebuggingEnabled_12(); if (!L_65) { goto IL_0152; } } IL_0142: { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_66 = V_0; NullCheck(L_66); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_67 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_66->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67); int32_t L_68; L_68 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_68, /*hidden argument*/NULL); } IL_0152: { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_69 = V_0; NullCheck(L_69); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_70 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_69->get_promise_2(); il2cpp_codegen_initobj((&V_3), sizeof(int32_t)); int32_t L_71 = V_3; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_70); bool L_72; L_72 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_70, (int32_t)L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m5BFF5202249A69D8BD651847170509A2F6C32E91_RuntimeMethod_var))); } } // end catch (depth: 1) IL_0169: { U3CU3Ec__DisplayClass35_0_t63A4129CE900164AAF77C844500230FF474ED8DC * L_73 = V_0; NullCheck(L_73); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_74 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_73->get_promise_2(); return (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_74; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.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; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::StartNew(System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * TaskFactory_1_StartNew_m980C3AE1754FCB63237278E9E878A2A96C1B1217_gshared (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * __this, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ___function0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken1, int32_t ___creationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, 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; { V_0 = (int32_t)1; int32_t L_0 = ___creationOptions2; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1; L_1 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_0, /*hidden argument*/NULL); Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_2 = ___function0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken1; int32_t L_4 = ___creationOptions2; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler3; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_6; L_6 = (( Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * (*) (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_6; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m8CA5C47AC93E3A66265E60E20D681C34A0819ED6_gshared (RuntimeObject* ___iar0, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * V_1 = NULL; RuntimeObject * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { V_0 = (Exception_t *)NULL; V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)NULL; il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); } IL_000c: try { // begin try (depth: 1) try { // begin try (depth: 2) { Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_0 = ___endFunction1; if (!L_0) { goto IL_0019; } } IL_000f: { Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_1 = ___endFunction1; RuntimeObject* L_2 = ___iar0; NullCheck((Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_1); RuntimeObject * L_3; L_3 = (( RuntimeObject * (*) (Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_2 = (RuntimeObject *)L_3; goto IL_0020; } IL_0019: { Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; RuntimeObject* L_5 = ___iar0; NullCheck((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4); Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); } IL_0020: { IL2CPP_LEAVE(0xA5, FINALLY_002b); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0025; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0028; } throw e; } CATCH_0025: { // begin catch(System.OperationCanceledException) V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)IL2CPP_GET_ACTIVE_EXCEPTION(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) CATCH_0028: { // begin catch(System.Exception) V_0 = (Exception_t *)((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002b; } FINALLY_002b: { // begin finally (depth: 1) { OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_6 = V_1; if (!L_6) { goto IL_003e; } } IL_002e: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_7 = ___promise3; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_8 = V_1; NullCheck((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9; L_9 = OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8, /*hidden argument*/NULL); OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_10 = V_1; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_7); bool L_11; L_11 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_7, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); goto IL_00a4; } IL_003e: { Exception_t * L_12 = V_0; if (!L_12) { goto IL_0069; } } IL_0041: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_13 = ___promise3; Exception_t * L_14 = V_0; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_13); bool L_15; L_15 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); if (!L_15) { goto IL_00a4; } } IL_004a: { Exception_t * L_16 = V_0; if (!((ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 *)IsInst((RuntimeObject*)L_16, ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var))) { goto IL_00a4; } } IL_0052: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_17 = ___promise3; NullCheck(L_17); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_18 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_17)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); NullCheck(L_18); TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * L_19 = (TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_18)->get_m_exceptionsHolder_2(); il2cpp_codegen_memory_barrier(); NullCheck((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19); TaskExceptionHolder_MarkAsHandled_m071FA704017944E5AF822BCD87BBEEBDC263666B((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19, (bool)0, /*hidden argument*/NULL); goto IL_00a4; } IL_0069: { bool L_20; L_20 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_20) { goto IL_007d; } } IL_0070: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_21 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21); int32_t L_22; L_22 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_22, (int32_t)1, /*hidden argument*/NULL); } IL_007d: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_23 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_23) { goto IL_008f; } } IL_0084: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_24 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24); int32_t L_25; L_25 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_25, /*hidden argument*/NULL); } IL_008f: { bool L_26 = ___requiresSynchronization4; if (!L_26) { goto IL_009d; } } IL_0093: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_27 = ___promise3; RuntimeObject * L_28 = V_2; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_27); bool L_29; L_29 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_27, (RuntimeObject *)L_28, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); goto IL_00a4; } IL_009d: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_30 = ___promise3; RuntimeObject * L_31 = V_2; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_30); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_30, (RuntimeObject *)L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); } IL_00a4: { IL2CPP_END_FINALLY(43) } } // end finally (depth: 1) IL2CPP_CLEANUP(43) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xA5, IL_00a5) } IL_00a5: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * TaskFactory_1_FromAsync_m472554AF393770AE0FD5D892C11D42D4E11DBB5F_gshared (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * __this, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method) { { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_0 = ___beginMethod0; Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_1 = ___endMethod1; RuntimeObject * L_2 = ___state2; int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2(); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_4; L_4 = (( Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * (*) (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_0, (Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_1, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * TaskFactory_1_FromAsyncImpl_m9EBBC675B53CD105D37371832F948B270E2D4E5B_gshared (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * V_0 = NULL; U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject * V_3 = NULL; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_0 = (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 10)); (( void (*) (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *, 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)); V_0 = (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *)L_0; U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_1 = V_0; Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_2 = ___endFunction1; NullCheck(L_1); L_1->set_endFunction_0(L_2); U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_3 = V_0; Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; NullCheck(L_3); L_3->set_endAction_1(L_4); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_5 = ___beginMethod0; if (L_5) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_6 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m9EBBC675B53CD105D37371832F948B270E2D4E5B_RuntimeMethod_var))); } IL_0022: { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_7 = V_0; NullCheck(L_7); Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_8 = (Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_7->get_endFunction_0(); if (L_8) { goto IL_003d; } } { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_9 = V_0; NullCheck(L_9); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_10 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_9->get_endAction_1(); if (L_10) { goto IL_003d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_11 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_11, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m9EBBC675B53CD105D37371832F948B270E2D4E5B_RuntimeMethod_var))); } IL_003d: { int32_t L_12 = ___creationOptions4; TaskFactory_CheckFromAsyncOptions_m057FCAC407F10FB9157BA7D3A38963EAD250B3A8((int32_t)L_12, (bool)1, /*hidden argument*/NULL); U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_13 = V_0; RuntimeObject * L_14 = ___state3; int32_t L_15 = ___creationOptions4; Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_16 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); NullCheck(L_13); L_13->set_promise_2(L_16); bool L_17; L_17 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_17) { goto IL_0082; } } { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_18 = V_0; NullCheck(L_18); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_19 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_18->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19); int32_t L_20; L_20 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19, /*hidden argument*/NULL); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_21 = ___beginMethod0; NullCheck((Delegate_t *)L_21); MethodInfo_t * L_22; L_22 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_21, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_22); String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22); String_t* L_24; L_24 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B((String_t*)_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092, (String_t*)L_23, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m3A018DC27992C4559B10283C06CC11513825898A((int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)((int64_t)((int64_t)0)), /*hidden argument*/NULL); } IL_0082: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_25 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_25) { goto IL_0095; } } { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_26 = V_0; NullCheck(L_26); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_27 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_26->get_promise_2(); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_28; L_28 = Task_AddToActiveTasks_m29D7B0C1AD029D86736A92EC7E36BE87209748FD((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_27, /*hidden argument*/NULL); } IL_0095: { } IL_0096: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); bool L_29 = ((BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0(); if (!L_29) { goto IL_010b; } } IL_009d: { U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_30 = (U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)); (( void (*) (U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); V_1 = (U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F *)L_30; U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_31 = V_1; U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_32 = V_0; NullCheck(L_31); L_31->set_CSU24U3CU3E8__locals1_1(L_32); U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_33 = V_1; AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_34 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)il2cpp_codegen_object_new(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); AtomicBoolean__ctor_m70B7B7EDDDEAD330A6C718C65C94223DFAB859D7(L_34, /*hidden argument*/NULL); NullCheck(L_33); L_33->set_invoked_0(L_34); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_35 = ___beginMethod0; U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_36 = V_1; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_37 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_37, (RuntimeObject *)L_36, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/NULL); RuntimeObject * L_38 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35); RuntimeObject* L_39; L_39 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); V_2 = (RuntimeObject*)L_39; RuntimeObject* L_40 = V_2; if (!L_40) { goto IL_011f; } } IL_00cc: { RuntimeObject* L_41 = V_2; NullCheck((RuntimeObject*)L_41); bool L_42; L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, (RuntimeObject*)L_41); if (!L_42) { goto IL_011f; } } IL_00d4: { U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_43 = V_1; NullCheck(L_43); AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_44 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_43->get_invoked_0(); NullCheck((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44); bool L_45; L_45 = AtomicBoolean_TryRelaxedSet_m8C68BF84E34C9F0FFEC851A81453C0E1586837FD((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_011f; } } IL_00e1: { RuntimeObject* L_46 = V_2; U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_47 = V_1; NullCheck(L_47); U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_48 = (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *)L_47->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_48); Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * L_49 = (Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_48->get_endFunction_0(); U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_50 = V_1; NullCheck(L_50); U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_51 = (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *)L_50->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_51); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_52 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_51->get_endAction_1(); U3CU3Ec__DisplayClass35_1_tDFAEABB73D8C60B81FADCC9120CCA51D9923A85F * L_53 = V_1; NullCheck(L_53); U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_54 = (U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 *)L_53->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_54); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_55 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_54->get_promise_2(); (( void (*) (RuntimeObject*, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)->methodPointer)((RuntimeObject*)L_46, (Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED *)L_49, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_52, (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); goto IL_011f; } IL_010b: { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_56 = ___beginMethod0; U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_57 = V_0; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_58 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_58, (RuntimeObject *)L_57, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)), /*hidden argument*/NULL); RuntimeObject * L_59 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56); RuntimeObject* L_60; L_60 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_58, (RuntimeObject *)L_59, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); } IL_011f: { goto IL_0169; } } // 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_0121; } throw e; } CATCH_0121: { // begin catch(System.Object) { bool L_61; L_61 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_61) { goto IL_013b; } } IL_0129: { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_62 = V_0; NullCheck(L_62); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_63 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_62->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63); int32_t L_64; L_64 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL); } IL_013b: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); bool L_65 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))))->get_s_asyncDebuggingEnabled_12(); if (!L_65) { goto IL_0152; } } IL_0142: { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_66 = V_0; NullCheck(L_66); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_67 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_66->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67); int32_t L_68; L_68 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_68, /*hidden argument*/NULL); } IL_0152: { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_69 = V_0; NullCheck(L_69); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_70 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_69->get_promise_2(); il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *)); RuntimeObject * L_71 = V_3; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_70); bool L_72; L_72 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_70, (RuntimeObject *)L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_m9EBBC675B53CD105D37371832F948B270E2D4E5B_RuntimeMethod_var))); } } // end catch (depth: 1) IL_0169: { U3CU3Ec__DisplayClass35_0_t454EDCEFB10771E6D4283E41AF8854DA19DF8DC5 * L_73 = V_0; NullCheck(L_73); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_74 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_73->get_promise_2(); return (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_74; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.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; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * TaskFactory_1_StartNew_mB6F208A85D6217FCD957241DCDBD8AE8DCA0366B_gshared (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * __this, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * ___function0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken1, int32_t ___creationOptions2, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler3, 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; { V_0 = (int32_t)1; int32_t L_0 = ___creationOptions2; IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1; L_1 = Task_InternalCurrentIfAttached_m800D1EA24F27EEB479C1ECC808C82071299834B5((int32_t)L_0, /*hidden argument*/NULL); Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_2 = ___function0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken1; int32_t L_4 = ___creationOptions2; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler3; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2)); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_6; L_6 = (( Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * (*) (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)0, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_6; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m275BD4B3DCBB279B30F09EDF17FE238E8FF9B1A6_gshared (RuntimeObject* ___iar0, Func_2_t93436DB66248BF735350EEC072257D84453153ED * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * V_1 = NULL; VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 V_2; memset((&V_2), 0, sizeof(V_2)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets; { V_0 = (Exception_t *)NULL; V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)NULL; il2cpp_codegen_initobj((&V_2), sizeof(VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )); } IL_000c: try { // begin try (depth: 1) try { // begin try (depth: 2) { Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_0 = ___endFunction1; if (!L_0) { goto IL_0019; } } IL_000f: { Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_1 = ___endFunction1; RuntimeObject* L_2 = ___iar0; NullCheck((Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_1); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_3; L_3 = (( VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 (*) (Func_2_t93436DB66248BF735350EEC072257D84453153ED *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_2 = (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_3; goto IL_0020; } IL_0019: { Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; RuntimeObject* L_5 = ___iar0; NullCheck((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4); Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA((Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m496B3017F88C8E9B82DFCC6785DF58A1AC4A49FA_RuntimeMethod_var); } IL_0020: { IL2CPP_LEAVE(0xA5, FINALLY_002b); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0025; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0028; } throw e; } CATCH_0025: { // begin catch(System.OperationCanceledException) V_1 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)IL2CPP_GET_ACTIVE_EXCEPTION(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) CATCH_0028: { // begin catch(System.Exception) V_0 = (Exception_t *)((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xA5, FINALLY_002b); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002b; } FINALLY_002b: { // begin finally (depth: 1) { OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_6 = V_1; if (!L_6) { goto IL_003e; } } IL_002e: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_7 = ___promise3; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_8 = V_1; NullCheck((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9; L_9 = OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_8, /*hidden argument*/NULL); OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_10 = V_1; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_7); bool L_11; L_11 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_7, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); goto IL_00a4; } IL_003e: { Exception_t * L_12 = V_0; if (!L_12) { goto IL_0069; } } IL_0041: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_13 = ___promise3; Exception_t * L_14 = V_0; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_13); bool L_15; L_15 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); if (!L_15) { goto IL_00a4; } } IL_004a: { Exception_t * L_16 = V_0; if (!((ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 *)IsInst((RuntimeObject*)L_16, ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153_il2cpp_TypeInfo_var))) { goto IL_00a4; } } IL_0052: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_17 = ___promise3; NullCheck(L_17); ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * L_18 = (ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_17)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); NullCheck(L_18); TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 * L_19 = (TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)((ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 *)L_18)->get_m_exceptionsHolder_2(); il2cpp_codegen_memory_barrier(); NullCheck((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19); TaskExceptionHolder_MarkAsHandled_m071FA704017944E5AF822BCD87BBEEBDC263666B((TaskExceptionHolder_tDB382D854702E5F90A8C3764236EF24FD6016684 *)L_19, (bool)0, /*hidden argument*/NULL); goto IL_00a4; } IL_0069: { bool L_20; L_20 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_20) { goto IL_007d; } } IL_0070: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_21 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21); int32_t L_22; L_22 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_21, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_22, (int32_t)1, /*hidden argument*/NULL); } IL_007d: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_23 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_23) { goto IL_008f; } } IL_0084: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_24 = ___promise3; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24); int32_t L_25; L_25 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_25, /*hidden argument*/NULL); } IL_008f: { bool L_26 = ___requiresSynchronization4; if (!L_26) { goto IL_009d; } } IL_0093: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_27 = ___promise3; VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_28 = V_2; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_27); bool L_29; L_29 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_27, (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_28, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); goto IL_00a4; } IL_009d: { Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_30 = ___promise3; VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_31 = V_2; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_30); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_30, (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); } IL_00a4: { IL2CPP_END_FINALLY(43) } } // end finally (depth: 1) IL2CPP_CLEANUP(43) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xA5, IL_00a5) } IL_00a5: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * TaskFactory_1_FromAsync_m6E863F8D30E9A4F0F23ADCCF6A765123BF6A2351_gshared (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * __this, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_t93436DB66248BF735350EEC072257D84453153ED * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method) { { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_0 = ___beginMethod0; Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_1 = ___endMethod1; RuntimeObject * L_2 = ___state2; int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2(); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_4; L_4 = (( Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * (*) (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, Func_2_t93436DB66248BF735350EEC072257D84453153ED *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_0, (Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_1, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_4; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * TaskFactory_1_FromAsyncImpl_mF618A88BA05E67B7328F5408E313599A8FC245F9_gshared (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_t93436DB66248BF735350EEC072257D84453153ED * ___endFunction1, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * V_0 = NULL; U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * V_1 = NULL; RuntimeObject* V_2 = NULL; VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 V_3; memset((&V_3), 0, sizeof(V_3)); il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_0 = (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 10)); (( void (*) (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *, 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)); V_0 = (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *)L_0; U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_1 = V_0; Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_2 = ___endFunction1; NullCheck(L_1); L_1->set_endFunction_0(L_2); U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_3 = V_0; Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_4 = ___endAction2; NullCheck(L_3); L_3->set_endAction_1(L_4); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_5 = ___beginMethod0; if (L_5) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_6 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7DEB4E83ED6644FBE7C7276D77CAEE0397BF409)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_mF618A88BA05E67B7328F5408E313599A8FC245F9_RuntimeMethod_var))); } IL_0022: { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_7 = V_0; NullCheck(L_7); Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_8 = (Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_7->get_endFunction_0(); if (L_8) { goto IL_003d; } } { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_9 = V_0; NullCheck(L_9); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_10 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_9->get_endAction_1(); if (L_10) { goto IL_003d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_11 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_11, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92BF5D2AB9AD1A68596BC5F92B31A8D6A6C3F5BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_mF618A88BA05E67B7328F5408E313599A8FC245F9_RuntimeMethod_var))); } IL_003d: { int32_t L_12 = ___creationOptions4; TaskFactory_CheckFromAsyncOptions_m057FCAC407F10FB9157BA7D3A38963EAD250B3A8((int32_t)L_12, (bool)1, /*hidden argument*/NULL); U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_13 = V_0; RuntimeObject * L_14 = ___state3; int32_t L_15 = ___creationOptions4; Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_16 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); NullCheck(L_13); L_13->set_promise_2(L_16); bool L_17; L_17 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_17) { goto IL_0082; } } { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_18 = V_0; NullCheck(L_18); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_19 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_18->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19); int32_t L_20; L_20 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_19, /*hidden argument*/NULL); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_21 = ___beginMethod0; NullCheck((Delegate_t *)L_21); MethodInfo_t * L_22; L_22 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_21, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_22); String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22); String_t* L_24; L_24 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B((String_t*)_stringLiteral19A591E076465B264D0FAFC4F98833B0673D6092, (String_t*)L_23, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m3A018DC27992C4559B10283C06CC11513825898A((int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)((int64_t)((int64_t)0)), /*hidden argument*/NULL); } IL_0082: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_25 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_25) { goto IL_0095; } } { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_26 = V_0; NullCheck(L_26); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_27 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_26->get_promise_2(); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_28; L_28 = Task_AddToActiveTasks_m29D7B0C1AD029D86736A92EC7E36BE87209748FD((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_27, /*hidden argument*/NULL); } IL_0095: { } IL_0096: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var); bool L_29 = ((BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t44EDF0C684F7241E727B341DF3896349BC34D810_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0(); if (!L_29) { goto IL_010b; } } IL_009d: { U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_30 = (U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)); (( void (*) (U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); V_1 = (U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF *)L_30; U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_31 = V_1; U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_32 = V_0; NullCheck(L_31); L_31->set_CSU24U3CU3E8__locals1_1(L_32); U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_33 = V_1; AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_34 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)il2cpp_codegen_object_new(AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E_il2cpp_TypeInfo_var); AtomicBoolean__ctor_m70B7B7EDDDEAD330A6C718C65C94223DFAB859D7(L_34, /*hidden argument*/NULL); NullCheck(L_33); L_33->set_invoked_0(L_34); Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_35 = ___beginMethod0; U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_36 = V_1; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_37 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_37, (RuntimeObject *)L_36, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/NULL); RuntimeObject * L_38 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35); RuntimeObject* L_39; L_39 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_35, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); V_2 = (RuntimeObject*)L_39; RuntimeObject* L_40 = V_2; if (!L_40) { goto IL_011f; } } IL_00cc: { RuntimeObject* L_41 = V_2; NullCheck((RuntimeObject*)L_41); bool L_42; L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, (RuntimeObject*)L_41); if (!L_42) { goto IL_011f; } } IL_00d4: { U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_43 = V_1; NullCheck(L_43); AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E * L_44 = (AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_43->get_invoked_0(); NullCheck((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44); bool L_45; L_45 = AtomicBoolean_TryRelaxedSet_m8C68BF84E34C9F0FFEC851A81453C0E1586837FD((AtomicBoolean_tF9325CA9AD434516AF1940D9607CB1009F48B97E *)L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_011f; } } IL_00e1: { RuntimeObject* L_46 = V_2; U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_47 = V_1; NullCheck(L_47); U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_48 = (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *)L_47->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_48); Func_2_t93436DB66248BF735350EEC072257D84453153ED * L_49 = (Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_48->get_endFunction_0(); U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_50 = V_1; NullCheck(L_50); U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_51 = (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *)L_50->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_51); Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 * L_52 = (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_51->get_endAction_1(); U3CU3Ec__DisplayClass35_1_t1C5EFFD4DA171B837C2E7C0AB580A1A2A7BEE9DF * L_53 = V_1; NullCheck(L_53); U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_54 = (U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D *)L_53->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_54); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_55 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_54->get_promise_2(); (( void (*) (RuntimeObject*, Func_2_t93436DB66248BF735350EEC072257D84453153ED *, Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *, Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)->methodPointer)((RuntimeObject*)L_46, (Func_2_t93436DB66248BF735350EEC072257D84453153ED *)L_49, (Action_1_tA4ED4B57984FE5F6E13A416523D6DF1DD51BEB76 *)L_52, (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); goto IL_011f; } IL_010b: { Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_56 = ___beginMethod0; U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_57 = V_0; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_58 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_58, (RuntimeObject *)L_57, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)), /*hidden argument*/NULL); RuntimeObject * L_59 = ___state3; NullCheck((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56); RuntimeObject* L_60; L_60 = Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989((Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)L_56, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)L_58, (RuntimeObject *)L_59, /*hidden argument*/Func_3_Invoke_mBECE168B72EF4B48E5CD2752E0ACC0BD5488F989_RuntimeMethod_var); } IL_011f: { goto IL_0169; } } // 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_0121; } throw e; } CATCH_0121: { // begin catch(System.Object) { bool L_61; L_61 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_61) { goto IL_013b; } } IL_0129: { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_62 = V_0; NullCheck(L_62); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_63 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_62->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63); int32_t L_64; L_64 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_63, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL); } IL_013b: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); bool L_65 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))))->get_s_asyncDebuggingEnabled_12(); if (!L_65) { goto IL_0152; } } IL_0142: { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_66 = V_0; NullCheck(L_66); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_67 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_66->get_promise_2(); NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67); int32_t L_68; L_68 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_67, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_68, /*hidden argument*/NULL); } IL_0152: { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_69 = V_0; NullCheck(L_69); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_70 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_69->get_promise_2(); il2cpp_codegen_initobj((&V_3), sizeof(VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )); VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_71 = V_3; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_70); bool L_72; L_72 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_70, (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TaskFactory_1_FromAsyncImpl_mF618A88BA05E67B7328F5408E313599A8FC245F9_RuntimeMethod_var))); } } // end catch (depth: 1) IL_0169: { U3CU3Ec__DisplayClass35_0_t0AD0181E2637A5C57084C33894CC4F0A9F7BED2D * L_73 = V_0; NullCheck(L_73); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_74 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_73->get_promise_2(); return (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_74; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mB5B850CC5A07EB2309B57152CFC7C626493F1652_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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.Nullable`1<System.Int32>>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mD69A6EB9F74679B8F1715A03B048FC1A56D64923_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mED1940FD3F30297320EC474ABD9EB72576260258_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___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); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mD656E5A92B5737FB2F8021B184A5951301B7B960_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, bool ___canceled0, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___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; } } { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`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_mF3E3FC820A363F986869E13D0F9188727A4573E2_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * ___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_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * 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_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); (( void (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, 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_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__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.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mD830C2F9EB3B3874CFF69AC31F12E2708BF631EF_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); (( void (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, (Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,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_m188D3C03D954EA2BE1F0A540C4E4D6C411972740_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m188D3C03D954EA2BE1F0A540C4E4D6C411972740_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m6462CD790900231F785326B203551E217705CD7B_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * 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_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); (( void (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, 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_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__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*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`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_mA926EFA638382A1BC04215AFB81E6A2D2225C04D_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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_mA926EFA638382A1BC04215AFB81E6A2D2225C04D_RuntimeMethod_var))); } IL_0030: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * Task_1_StartNew_m06C0F4B02DFFEA73E7B431A50D3931100900E14C_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m06C0F4B02DFFEA73E7B431A50D3931100900E14C_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m06C0F4B02DFFEA73E7B431A50D3931100900E14C_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m06C0F4B02DFFEA73E7B431A50D3931100900E14C_RuntimeMethod_var))); } IL_003c: { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * L_14 = (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * L_15 = (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * Task_1_StartNew_m85D0A3C7DD8C440191194397E599D6E73BA0726B_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m85D0A3C7DD8C440191194397E599D6E73BA0726B_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m85D0A3C7DD8C440191194397E599D6E73BA0726B_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m85D0A3C7DD8C440191194397E599D6E73BA0726B_RuntimeMethod_var))); } IL_003c: { Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * L_15 = (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * L_16 = (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)L_16; } } // System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m9FF4AE741289D747EB85DC4440A0BB90C54784A0_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___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; } } { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 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; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m2A9DAD491070BAED3D91B858CBE98B7898932066_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_1 = ___result0; NullCheck((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 Task_1_get_Result_m4C618669880436A6C911F16C9747DE36FE25098A_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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; } } { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_1 = (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )__this->get_m_result_22(); return (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )L_1; } IL_000f: { NullCheck((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_2; L_2 = (( Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )L_2; } } // TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 Task_1_get_ResultOnSuccess_m1ABBB2A69639BBAFFC1601AF06809B90172F0BD6_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, const RuntimeMethod* method) { { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )__this->get_m_result_22(); return (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )L_0; } } // TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 Task_1_GetResultCore_m2FE41126E2DA968E95659E7D74278CFA68071EE3_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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: { Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_6 = (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )__this->get_m_result_22(); return (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m9CF01548B591EE8AA8AD3C4DD371ECC429F897C6_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mB63669BF79A7F5DE3E28D500A12ED3B45BB952E1_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m8E89E9C1168118EE511F057F55AD1A878ACEDFC9_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * Task_1_get_Factory_m57E117713A00005948C7F621AC2ABB600D189717_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * L_0 = ((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 *)L_0; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m96585F12BAE391F35EC95384B2A459216A9F8E1C_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, const RuntimeMethod* method) { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * V_0 = NULL; Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)((Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_tDC30C5284AE787359DC813472C98404F72620D79 * L_2 = V_0; NullCheck((Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)L_2); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_3; L_3 = (( Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 (*) (Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Func_1_tDC30C5284AE787359DC813472C98404F72620D79 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *)((Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11))); Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *)L_6); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_8; L_8 = (( Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 (*) (Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_2_tF690BAA548D29EADC5635B1C8E7A7C6C9E4F7CFE *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB Task_1_GetAwaiter_m116B6DCFCE5A6E31C5272CDF5D1242FD90343159_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m1F051D5AD610D0280CF28B8CCED1F5992B50534C_inline((&L_0), (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return (TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 Task_1_ConfigureAwait_m5EBBE46F904AD9F43EB639ED683AAEEF76F3D26E_gshared (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m600345B217F1312DBAA54D5F2A65F594500BC368((&L_1), (Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (ConfiguredTaskAwaitable_1_t56E26468C9970BFCEFFFF3A20E5F6FC7BB2D76E1 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_mF051F5E00919A564DE6F6773F7A00ABF52F006CB_gshared (const RuntimeMethod* method) { { TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 * L_0 = (TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (TaskFactory_1_tC38251ED2F273F12DD35B9D834895E8343290094 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5 * L_1 = ((U3CU3Ec_t7C836D8868AA27F7FCB26DBEDC1023019794E8B5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA * L_2 = (Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_tACAF262312375D7D8F7883E8DA2431DDAF082BFA *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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.ValueTuple`2<System.Boolean,System.Object>>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m9B2436FE04F3F7B40F1A9DB745BF665653721679_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m8D93A0BDD69FAE135BF37AD74CE32A763015867D_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mE1C9C8E806E033BA46B80E611F9CCDB01528E768_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___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); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m9D8F408F7593E6BD750FE6C550C358749606D1DA_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, bool ___canceled0, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___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; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,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_m0A82A5F8B5700C4A6623CD67C67710D7B6D1D905_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * ___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_t8950235A894691BCD73FF9DCFB34C714190BCD52 * 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_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); (( void (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, 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_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__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.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mA94297548C913830B42654660986933B3E336083_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); (( void (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, (Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Func`1<TResult>,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_mE412C5196CBE6FBF5DBD3429EC925C1262CB62CA_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_mE412C5196CBE6FBF5DBD3429EC925C1262CB62CA_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mA696E68AFF4EA90D9FF76915B211DF174C357055_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * 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_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); (( void (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, 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_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__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*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,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_m7EBA5571720B94434F295E86EC6D8F9160C7B281_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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_m7EBA5571720B94434F295E86EC6D8F9160C7B281_RuntimeMethod_var))); } IL_0030: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * Task_1_StartNew_m3BC68AA8DEEDBE978628FA39064D2E03E8AC24F1_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m3BC68AA8DEEDBE978628FA39064D2E03E8AC24F1_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m3BC68AA8DEEDBE978628FA39064D2E03E8AC24F1_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m3BC68AA8DEEDBE978628FA39064D2E03E8AC24F1_RuntimeMethod_var))); } IL_003c: { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * L_14 = (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * L_15 = (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * Task_1_StartNew_m8DD5B6DFEC5991167DD0AA046867D455F997B869_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m8DD5B6DFEC5991167DD0AA046867D455F997B869_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m8DD5B6DFEC5991167DD0AA046867D455F997B869_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m8DD5B6DFEC5991167DD0AA046867D455F997B869_RuntimeMethod_var))); } IL_003c: { Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * L_15 = (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * L_16 = (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)L_16; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m19AB99AC4297492E7006E7BB9880DB2B842B2EA9_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___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; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE 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; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_mFF3EA07A4F473B32701C5D0016E5CA67A8194D03_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_1 = ___result0; NullCheck((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE Task_1_get_Result_mAC836E82B8F9A2A393003C99022EC10DFC86780B_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_1 = (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )__this->get_m_result_22(); return (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )L_1; } IL_000f: { NullCheck((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_2; L_2 = (( ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )L_2; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE Task_1_get_ResultOnSuccess_m04C9264CC1274CED4EDFBACC8CB898E51EB2C49F_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, const RuntimeMethod* method) { { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_0 = (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )__this->get_m_result_22(); return (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )L_0; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE Task_1_GetResultCore_mCD5453B03D2AF17A5ECFF30C99C337CE7BF86D36_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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: { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_6 = (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )__this->get_m_result_22(); return (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m4E0263DD8A0A10E047F8710EF58CEC7F5E4A804F_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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.ValueTuple`2<System.Boolean,System.Object>>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m73657E35318266D1D42B389E11C9747418CD0B7B_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mAFC7651827EA50B7BF5AB0ECEFF5E2946FF994E7_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * Task_1_get_Factory_m99FE1FDA3797B726686014CCDA4379296B3E0617_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * L_0 = ((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE *)L_0; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m2EF6D239BE59B911B500DA1603F75706065BE0AE_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, const RuntimeMethod* method) { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * V_0 = NULL; Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)((Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A * L_2 = V_0; NullCheck((Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)L_2); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_3; L_3 = (( ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE (*) (Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Func_1_t80CB617AA14D77269A8F60DD1146D8319A455B0A *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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_t8950235A894691BCD73FF9DCFB34C714190BCD52 *)((Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11))); Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *)L_6); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_8; L_8 = (( ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE (*) (Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_2_t8950235A894691BCD73FF9DCFB34C714190BCD52 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 Task_1_GetAwaiter_m73E2F03697E6015F8B14FE9FD0746B78267B97D4_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_mB5ADD7E7449228CDDB05F0FEFC0C6EBF9295181A_inline((&L_0), (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return (TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 Task_1_ConfigureAwait_m57E32DA297F6B10FA87A7210D6AD4B5F324E42DE_gshared (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mEC4AB448BBD4A61A2EE44E3298C68E0B02538197((&L_1), (Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (ConfiguredTaskAwaitable_1_tFC40475288C23C70D76923B238A9A9FCCACE7C61 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Boolean,System.Object>>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m297225EA1DB63E0771E60B0553930F0B9BBC3BC1_gshared (const RuntimeMethod* method) { { TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE * L_0 = (TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (TaskFactory_1_tB7D0FB7C5C47F2DECC1B443AD0D29EEE568E93EE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230 * L_1 = ((U3CU3Ec_t6B2D086B66833A3C7CB044883D0131EA8B196230_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E * L_2 = (Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t3BA8615E6C0E4A7217FC43067798B21C5A9EF31E *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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.ValueTuple`2<System.Int32,System.Int32>>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m64F00DBCB42B495AC2E50A4673667A2B1879D190_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mA25787B7F92EAB46CE2D90C77F9D6DB9E0FF9053_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m67C9F7725BA11557E01812CC3A5977F22DFAE2A9_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___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); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mDE5F9F22AFDC6A147909A48D74A36726F7843792_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, bool ___canceled0, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___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; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,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_mA9CDD17B26F42339C18CE9C565D89DB013B0D5BB_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * ___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_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * 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_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); (( void (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, 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_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__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.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m3D55F0D6BD75E133D3C5EDC6D7E89ADEB18B2A9A_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); (( void (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, (Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Func`1<TResult>,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_mC5F03F7E77948CA540E5B4D1EA8FBFB05204056F_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_mC5F03F7E77948CA540E5B4D1EA8FBFB05204056F_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m249ABF9192AE2015C53D8766E6B66A8AB577C8EE_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * 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_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); (( void (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, 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_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__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*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,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_m5D5F47086E99668D2927CB89006FC720F6A376C8_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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_m5D5F47086E99668D2927CB89006FC720F6A376C8_RuntimeMethod_var))); } IL_0030: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * Task_1_StartNew_m40D055F09E1C84F6332315998BEF20D4565A4C8A_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m40D055F09E1C84F6332315998BEF20D4565A4C8A_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m40D055F09E1C84F6332315998BEF20D4565A4C8A_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m40D055F09E1C84F6332315998BEF20D4565A4C8A_RuntimeMethod_var))); } IL_003c: { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * L_14 = (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * L_15 = (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * Task_1_StartNew_m47D2D432C42978338107F220668355D9F5A858A5_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m47D2D432C42978338107F220668355D9F5A858A5_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m47D2D432C42978338107F220668355D9F5A858A5_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m47D2D432C42978338107F220668355D9F5A858A5_RuntimeMethod_var))); } IL_003c: { Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * L_15 = (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * L_16 = (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)L_16; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m8822E59573A49EF6912CCE89F35BD53EED04117C_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___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; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E 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; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_mD620955ECBAC749C5D8CB622B6924F5255265F9A_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_1 = ___result0; NullCheck((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E Task_1_get_Result_mA8DDFC228E766EFBA54FBD75CC63E11DC123131F_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_1 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )__this->get_m_result_22(); return (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_1; } IL_000f: { NullCheck((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2; L_2 = (( ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_2; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E Task_1_get_ResultOnSuccess_mEC41149BFCC1B61725AF2DDC916BB6CB4EB32213_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, const RuntimeMethod* method) { { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_0 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )__this->get_m_result_22(); return (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_0; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E Task_1_GetResultCore_mB5870BE9A3428F10947D227C32C182CB29127F7E_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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: { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_6 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )__this->get_m_result_22(); return (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m033E500E4EB5CF1C3870978E8D326F54BA9DAFCF_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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.ValueTuple`2<System.Int32,System.Int32>>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m92C2CD6F89A0D58C62BEA808C5B671D765E0A716_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m4A1A3B2B194EDDF7F691A8A9188717A77B2E204A_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * Task_1_get_Factory_m29FEAE3997FAE78D190C2189A592CA7A711527B0_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * L_0 = ((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD *)L_0; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m64095E2CF299763AD3EB3114901AE63CAAF2A2C8_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, const RuntimeMethod* method) { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * V_0 = NULL; Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)((Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 * L_2 = V_0; NullCheck((Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)L_2); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3; L_3 = (( ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E (*) (Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Func_1_t8F9EC0391D7BE4C9B06367D56A03B6E5869EB7A3 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *)((Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11))); Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *)L_6); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_8; L_8 = (( ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E (*) (Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_2_tD63895C593B5ECA6D64B5913F7502BB61361F0C9 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C Task_1_GetAwaiter_m2725A7F7B008B28E10A61656D1E0752D65F59586_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, const RuntimeMethod* method) { { TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m82521D2E4BA0453CD5B0AAC5C718E61FAF912AD9_inline((&L_0), (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return (TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A Task_1_ConfigureAwait_m28783226ECE7EBFBBF7FBBEBDD5B4933FEFE24AD_gshared (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m30F02BA1CA144F1F02BACED31DEA2BA3F92AA247((&L_1), (Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (ConfiguredTaskAwaitable_1_t6195274A0F529A409D0FE46BF3C9CE7136D9836A )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`2<System.Int32,System.Int32>>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_mE68637942A877B487947035B8117309E0C62E789_gshared (const RuntimeMethod* method) { { TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD * L_0 = (TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (TaskFactory_1_t46984FB48E7F4A7873D5006D3E547C453FC417CD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC * L_1 = ((U3CU3Ec_tEE8E936E7EE8F7BAAE670E656502105E4AB410FC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D * L_2 = (Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t9FB9119855898574302D11A25F1AA03BDBDADD0D *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m58ABEB706E0123284F7B80A396878EF5828210E1_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0A0E0E490A135A54E2A425EF1F958CB47A993F1B_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mE1DE11A569CC001901C7241612591C6760B2AFEA_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___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); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7045C1E6AF42DB1BF82CC7E5187554EC85BB85EC_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, bool ___canceled0, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___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; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,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_m551F1C503D124EBD9B102109E0D077CC751F136B_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * ___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_tF844CFA728FE95C860FC4789C48947007756DEC0 * 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_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); (( void (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, 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_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__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.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mCDDEA5C76277377B6C5C36D5C4D5B98DFB849C02_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); (( void (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, (Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Func`1<TResult>,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_m0128CAAD827BB3B445723BCEA964356DE289B2AE_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m0128CAAD827BB3B445723BCEA964356DE289B2AE_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mFADCB007CEFF158038CFA4DEE65149C30C945707_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * 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_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); (( void (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, 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_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__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*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,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_mEC260F2022041E51F298A3DCCA996DFFECA1AD9C_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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_mEC260F2022041E51F298A3DCCA996DFFECA1AD9C_RuntimeMethod_var))); } IL_0030: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * Task_1_StartNew_m2463D6C0F8A9F6217E9C3B22587530B8C742C88E_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m2463D6C0F8A9F6217E9C3B22587530B8C742C88E_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m2463D6C0F8A9F6217E9C3B22587530B8C742C88E_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m2463D6C0F8A9F6217E9C3B22587530B8C742C88E_RuntimeMethod_var))); } IL_003c: { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * L_14 = (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * L_15 = (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * Task_1_StartNew_mFD072CF0D4FA0C3FB469780DADC9C580A6630A65_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mFD072CF0D4FA0C3FB469780DADC9C580A6630A65_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mFD072CF0D4FA0C3FB469780DADC9C580A6630A65_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mFD072CF0D4FA0C3FB469780DADC9C580A6630A65_RuntimeMethod_var))); } IL_003c: { Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * L_15 = (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * L_16 = (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)L_16; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m30F2AA836F4E05C8DEE121EFE903A4FF64282E0E_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___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; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 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; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_mD7DE8B379295D7D9B64BE34D8AD4111B551FB21B_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_1 = ___result0; NullCheck((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); bool L_2; L_2 = (( bool (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 Task_1_get_Result_m98EAAE1CD54DF4D87E26CB228CCD226B1E492A93_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_1 = (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )__this->get_m_result_22(); return (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )L_1; } IL_000f: { NullCheck((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_2; L_2 = (( ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )L_2; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 Task_1_get_ResultOnSuccess_mBD3B54F55463B8818BFB46636FE41160435120D2_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, const RuntimeMethod* method) { { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_0 = (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )__this->get_m_result_22(); return (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )L_0; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 Task_1_GetResultCore_mDFD5A5BF53D7747893809570BB2CB53F9BD49379_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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: { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_6 = (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )__this->get_m_result_22(); return (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m7BA54F503D24A36269BD868231856A9FE8E17AE0_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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.ValueTuple`3<System.Object,System.Object,System.Int32>>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m6F007AA88FBAB54537A4CEFE9C818DAA225C4C42_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this); bool L_1; L_1 = (( bool (*) (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mA86D376D024F18F42D4A7F8ABF5D886FF8A56644_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * Task_1_get_Factory_mCAF65032DB07D2DED898C48F55885924F21615D8_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * L_0 = ((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF *)L_0; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_mB030293AD23E318B8DE283C3697273E0AF99D5F6_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, const RuntimeMethod* method) { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * V_0 = NULL; Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)((Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD * L_2 = V_0; NullCheck((Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)L_2); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_3; L_3 = (( ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 (*) (Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Func_1_tB01389FC4106513B4A0459DF75E8520BEF0789AD *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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_tF844CFA728FE95C860FC4789C48947007756DEC0 *)((Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11))); Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *)L_6); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_8; L_8 = (( ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 (*) (Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_2_tF844CFA728FE95C860FC4789C48947007756DEC0 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 Task_1_GetAwaiter_mF48D291B7BB195EFC04485BAED8C3D385785B45E_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_mF997B5520866FAC40D262A9187226C6EB759288A_inline((&L_0), (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return (TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 Task_1_ConfigureAwait_m5D1C483BAC48E18C197417A7EC99E109B1288526_gshared (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mAE96103C73C81A6EE62267C91D0DB3D4A113819A((&L_1), (Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (ConfiguredTaskAwaitable_1_t2CBC8E1F3E39037C3799DDAD4D68774E318E8D41 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m1DCA5B3C538D07D23DB208CF0C3BB4E599F56437_gshared (const RuntimeMethod* method) { { TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF * L_0 = (TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (TaskFactory_1_t6EA59C02B8A9C74C9B81DC1C821C0CC892BE1DAF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1 * L_1 = ((U3CU3Ec_t0251D9F67C59DAC7AD4AFE9E180AD6CBB9510CB1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 * L_2 = (Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t97E22A4E70D2312410723F6A2927D66B83EAE808 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m8C5374D69730A2FC4F8796A63BF82B1D7B8DC86F_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mF2267ED71795BB77A07D31A78C08338B63D36B39_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mED3CA83FD51596DD64863D6E55DAD429D6D46BAE_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 ___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); ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m5CDD8B3A19C9730FAFC48D282E0A85C602BECA2B_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, bool ___canceled0, ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 ___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; } } { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,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_mB7EDCEB4F7783A78E2899346987B93B7867E1266_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * ___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_t72CB3EBF239634EE208478E3E190187534D1D3B0 * 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_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); (( void (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, 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_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mC51E10D3BBB78A29C2A0C7A1208D47E851492525_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); (( void (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, (Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Func`1<TResult>,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_mF8CDFA1D9A89E3EB4297E21C70F52CCB4AAA5217_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_mF8CDFA1D9A89E3EB4297E21C70F52CCB4AAA5217_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m82412FAE4C72022E226A3EF6D43AE0054906FE94_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * 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_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); (( void (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, 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_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__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*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,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_m5E54F6B19BC4DA6F248737396A4688A9A9E516E6_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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_m5E54F6B19BC4DA6F248737396A4688A9A9E516E6_RuntimeMethod_var))); } IL_0030: { return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * Task_1_StartNew_m0B71577314C26830978606737C3E1522D8652CEF_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m0B71577314C26830978606737C3E1522D8652CEF_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m0B71577314C26830978606737C3E1522D8652CEF_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m0B71577314C26830978606737C3E1522D8652CEF_RuntimeMethod_var))); } IL_003c: { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * L_14 = (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * L_15 = (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * Task_1_StartNew_mE054FA14E10B4518AFD4EC61783EF0B0539AFAF2_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE054FA14E10B4518AFD4EC61783EF0B0539AFAF2_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE054FA14E10B4518AFD4EC61783EF0B0539AFAF2_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE054FA14E10B4518AFD4EC61783EF0B0539AFAF2_RuntimeMethod_var))); } IL_003c: { Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * L_15 = (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * L_16 = (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)L_16; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_mBA4FE03FC7A33E16EE25D206BC059A42205DCC11_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 ___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; } } { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 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; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_mFB2A0FDA927E8CB35984E0DDDEE5D4C43B37F8E6_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_1 = ___result0; NullCheck((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 Task_1_get_Result_mCBC5EBF33D2CA2A94F9ED5ACB0F3BCA891631C3D_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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; } } { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_1 = (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )__this->get_m_result_22(); return (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )L_1; } IL_000f: { NullCheck((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_2; L_2 = (( ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )L_2; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 Task_1_get_ResultOnSuccess_m356F3A268C268F2F19CF7704E388B2D616D2756F_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, const RuntimeMethod* method) { { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_0 = (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )__this->get_m_result_22(); return (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )L_0; } } // TResult System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 Task_1_GetResultCore_m09371AFB7E1146B2009944E731AC9FEE9E018F4F_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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: { ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_6 = (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )__this->get_m_result_22(); return (ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 )L_6; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_mA7A693953736401DE277A462F779A29058067614_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mCDE8BBBE2AD44ED723ADF0BD6FF75CC963B616BF_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___tokenToRecord0, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___tokenToRecord0; NullCheck((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this); bool L_1; L_1 = (( bool (*) (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m5C3E6C964B85D2A59FA702D30BC9532301763B76_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * Task_1_get_Factory_m76B0DEB21454ED584D6115959EEFC07268A8CE4D_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * L_0 = ((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 *)L_0; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_mC86B99E27236F07FEF70340C23C188AA0D3C3C2E_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, const RuntimeMethod* method) { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * V_0 = NULL; Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * V_1 = NULL; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_action_5(); V_0 = (Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)((Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B * L_2 = V_0; NullCheck((Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)L_2); ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_3; L_3 = (( ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 (*) (Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Func_1_t54AE2290711DFDE912AAD7667044318672D2D54B *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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_t72CB3EBF239634EE208478E3E190187534D1D3B0 *)((Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11))); Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *)L_6); ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 L_8; L_8 = (( ValueTuple_5_t1753A6A4C916F008F49E57AC257D0484D051CF59 (*) (Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_2_t72CB3EBF239634EE208478E3E190187534D1D3B0 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 Task_1_GetAwaiter_m606536FAD302CBF2D32B9BBB20A33CCE54A23F6F_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, const RuntimeMethod* method) { { TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_mACDA3EEC014894205C1C021C410D03B7546C9B91_inline((&L_0), (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return (TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 Task_1_ConfigureAwait_m5AC97D1A062D9B57EC66D0050EBF515343C94968_gshared (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m933A565616C999D8C0EF1FD6C2F6486755A5B7A4((&L_1), (Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (ConfiguredTaskAwaitable_1_tF561D517576859AC9D2B8887ACC921BF763F18C4 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.ValueTuple`5<System.Object,System.Boolean,System.Boolean,System.Object,System.Object>>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m8DC12774CF3A7203060978BAF885D33A328AC69E_gshared (const RuntimeMethod* method) { { TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 * L_0 = (TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (TaskFactory_1_tA6A8AB0FA3BC49FD054EFE30364F59C364651CE4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D * L_1 = ((U3CU3Ec_t017141F77FD3D23C24EF7E4FD8C323E25B32436D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 * L_2 = (Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t656C16FD0C20638D62CCEC28A2C7563F702C6479 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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.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(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7F4634DD10A19BF938CE5CAEDBBEE12BD28BCCBA_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*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.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0AECE269298E443AA40D77EBF2B13E461669FEA6_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this); (( void (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,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_m512917755622E1B68D69C1B93CFD8A61C1989B7D_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m512917755622E1B68D69C1B93CFD8A61C1989B7D_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m8D430E643F0556FF47CE01B7EDEE3F887FD0A81D_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * 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_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_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*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.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * Task_1_StartNew_m58838D82F617758F77F50DDBCD9612D9268299BB_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m58838D82F617758F77F50DDBCD9612D9268299BB_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m58838D82F617758F77F50DDBCD9612D9268299BB_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m58838D82F617758F77F50DDBCD9612D9268299BB_RuntimeMethod_var))); } IL_003c: { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_14 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_15 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * Task_1_StartNew_m251868908E1112DB8F8CB1D7A2875F03075F96FF_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m251868908E1112DB8F8CB1D7A2875F03075F96FF_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m251868908E1112DB8F8CB1D7A2875F03075F96FF_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m251868908E1112DB8F8CB1D7A2875F03075F96FF_RuntimeMethod_var))); } IL_003c: { Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_15 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * L_16 = (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)L_16; } } // 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; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_mFCA0579D2F8668FF493A5D5DF71868A6C6E700EB_gshared (Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 * __this, bool ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { bool L_1 = ___result0; 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, 5)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { bool L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // 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, 6)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); 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, 7)->methodPointer)((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); 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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * Task_1_get_Factory_m8416301F9E533B05016F8C94BCD3822C9F4889D3_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 * L_0 = ((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *)L_0; } } // 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, 9))); 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, 10)->methodPointer)((Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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, 11))); 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, 12)->methodPointer)((Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __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, 14)); 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, 16)); 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, 17)); (( void (*) (TaskFactory_1_t069438A73348A2B1B34A2C68E0478EE107ECCFC7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*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, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D * L_1 = ((U3CU3Ec_t8F7CC4F3F63350A4DCEE8593B96F697EB6D4A86D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 * L_2 = (Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t24DC43D57AB022882FE433E3B16B6D7E4BD14BB4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_t9C1FE9F18F52F3409B9E970FA38801A443AE7849_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mE8362E4CEB7F328567980EAB45893EBB7DDD0FBC_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*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.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mF5A2EBBD02C15E3A900CF14F4D627EC5BB4CA06E_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,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_mFF173D9654F7A3C73AB3E90D8C364EA7637A1822_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_mFF173D9654F7A3C73AB3E90D8C364EA7637A1822_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7E69E1261F480FADF6441662016F5FAEE2B1557B_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * 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_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_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*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.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * Task_1_StartNew_m759FFB4AE9636B4AC585F8463EFA1EDC47337794_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m759FFB4AE9636B4AC585F8463EFA1EDC47337794_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m759FFB4AE9636B4AC585F8463EFA1EDC47337794_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m759FFB4AE9636B4AC585F8463EFA1EDC47337794_RuntimeMethod_var))); } IL_003c: { Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_14 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_15 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * Task_1_StartNew_mE6E93824B8D45CF8E7426EA866EBEAAC2BF04527_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE6E93824B8D45CF8E7426EA866EBEAAC2BF04527_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE6E93824B8D45CF8E7426EA866EBEAAC2BF04527_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mE6E93824B8D45CF8E7426EA866EBEAAC2BF04527_RuntimeMethod_var))); } IL_003c: { Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_15 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_16 = (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)L_16; } } // 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; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m5C1F59F54DBA60657A4A27256FD0553E05C0AA16_gshared (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * __this, int32_t ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { int32_t L_1 = ___result0; NullCheck((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { int32_t L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // 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, 6)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); 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, 7)->methodPointer)((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); 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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * Task_1_get_Factory_mA769ACA7152654C98992F8FC3FE314D4F1DA844A_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * L_0 = ((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *)L_0; } } // 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, 9))); 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, 10)->methodPointer)((Func_1_tCB4CC73D86ED9FF6219A185C0C591F956E5DD1BA *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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, 11))); 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, 12)->methodPointer)((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __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, 14)); 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, 16)); 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, 17)); (( void (*) (TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*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, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E * L_1 = ((U3CU3Ec_tBFD92240FF5C3A7C088E167754EDA4E55E636C3E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * L_2 = (Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mBEF860CE28644C7668FD061252DD08B73D440158_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*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.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mF000F9238458E12DE1EB27B1AD88C95C92514D5E_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,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_m7C819954A8BC15C00EBF37931B36F0CD1C120868_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m7C819954A8BC15C00EBF37931B36F0CD1C120868_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mC62819853016B62426C77A8E9B7D2EF2CDED375D_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * 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_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_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*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.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Object>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * Task_1_StartNew_m7D85D8D9FDCFE958C84A911E6601116CC5A14DB0_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m7D85D8D9FDCFE958C84A911E6601116CC5A14DB0_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m7D85D8D9FDCFE958C84A911E6601116CC5A14DB0_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m7D85D8D9FDCFE958C84A911E6601116CC5A14DB0_RuntimeMethod_var))); } IL_003c: { Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_14 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_15 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Object>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * Task_1_StartNew_m9E407A93FBEE2DBD938B884FE8B0D5277E0AC5B5_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m9E407A93FBEE2DBD938B884FE8B0D5277E0AC5B5_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m9E407A93FBEE2DBD938B884FE8B0D5277E0AC5B5_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m9E407A93FBEE2DBD938B884FE8B0D5277E0AC5B5_RuntimeMethod_var))); } IL_003c: { Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_15 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_16 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_16; } } // 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; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m4C3685E592D96AD3E16B2926FE685C42DC5DA42F_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { RuntimeObject * L_1 = ___result0; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { RuntimeObject * L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // 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, 6)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); 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, 7)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); 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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Object>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * Task_1_get_Factory_m496FE7F1B14ACCAE2B4C8E496245A7A63F04C0B0_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * L_0 = ((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *)L_0; } } // 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, 9))); 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, 10)->methodPointer)((Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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, 11))); 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, 12)->methodPointer)((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __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, 14)); 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, 16)); 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, 17)); (( void (*) (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*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, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950 * L_1 = ((U3CU3Ec_t80130F43AA0F2754A17EECFF27996A0AC7CDF950_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * L_2 = (Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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(System.Object,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mBA4E58B715F993063C06F8F8EFF2606E128D3223_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, RuntimeObject * ___state0, int32_t ___options1, 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; } { RuntimeObject * L_0 = ___state0; int32_t L_1 = ___options1; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m9F66B6DDA73BD278F598337C275B58C372DD05A5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*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.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mF7A46DE57DD873558656C7668426DC767B3D4352_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, 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; } { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_0, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); int32_t* L_6 = ___stackMark6; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,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_m5AC9377552673F63B277AF2471DF26BB3E569E36_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * ___valueSelector0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, 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; } { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_0 = ___valueSelector0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___parent1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_2 = ___cancellationToken2; int32_t L_3 = ___creationOptions3; int32_t L_4 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_5 = ___scheduler5; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task__ctor_m3D10764ADAA8079A58C62BE79261EFA5230D2220((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (Delegate_t *)L_0, (RuntimeObject *)NULL, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_1, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_5, /*hidden argument*/NULL); int32_t L_6 = ___internalOptions4; if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048)))) { goto IL_002f; } } { String_t* L_7; L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1__ctor_m5AC9377552673F63B277AF2471DF26BB3E569E36_RuntimeMethod_var))); } IL_002f: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m1F3CBEAA57BEF59DBB75262CC89F228B9F8DD727_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * ___valueSelector0, RuntimeObject * ___state1, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, 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; } { Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * 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_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_2, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t* L_7 = ___stackMark7; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_PossiblyCaptureContext_m027EA18025BF0A326DA9464B122B42843F7CB068((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, (int32_t*)(int32_t*)L_7, /*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.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * Task_1_StartNew_mDE577D584EF34DF69561B26D92A10056847FB993_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * ___function1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method) { { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mDE577D584EF34DF69561B26D92A10056847FB993_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler5; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mDE577D584EF34DF69561B26D92A10056847FB993_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_mDE577D584EF34DF69561B26D92A10056847FB993_RuntimeMethod_var))); } IL_003c: { Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 * L_7 = ___function1; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_8 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; int32_t L_10 = ___creationOptions3; int32_t L_11 = ___internalOptions4; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_12 = ___scheduler5; int32_t* L_13 = ___stackMark6; Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_14 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_7, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_8, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_12, (int32_t*)(int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_15 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_14; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_15, (bool)0, /*hidden argument*/NULL); return (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_15; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Threading.Tasks.Task,System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * Task_1_StartNew_m62748BC126509A6C7F89477982EB554A3177EE1D_gshared (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___parent0, Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * ___function1, RuntimeObject * ___state2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___scheduler6, int32_t* ___stackMark7, const RuntimeMethod* method) { { Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * L_0 = ___function1; 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*)&_stringLiteral7AD319493499620E43634FF644A0CEF1624086AD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m62748BC126509A6C7F89477982EB554A3177EE1D_RuntimeMethod_var))); } IL_000e: { TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_2 = ___scheduler6; if (L_2) { goto IL_001d; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA75CF6F408A626E601212712FB539C300D88CDBE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m62748BC126509A6C7F89477982EB554A3177EE1D_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___internalOptions5; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048)))) { goto IL_003c; } } { String_t* L_5; L_5 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral727134E8876CCD579799D299CAC3AC5EBD50C47C)), /*hidden argument*/NULL); 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_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57C7DAC31FE47C45D5BF06DA958542F4BFAFD003)), (String_t*)L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Task_1_StartNew_m62748BC126509A6C7F89477982EB554A3177EE1D_RuntimeMethod_var))); } IL_003c: { Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 * L_7 = ___function1; RuntimeObject * L_8 = ___state2; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___parent0; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_10 = ___cancellationToken3; int32_t L_11 = ___creationOptions4; int32_t L_12 = ___internalOptions5; TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * L_13 = ___scheduler6; int32_t* L_14 = ___stackMark7; Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_15 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)); (( void (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *, RuntimeObject *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , int32_t, int32_t, TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)(L_15, (Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)L_7, (RuntimeObject *)L_8, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_10, (int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)8192))), (TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D *)L_13, (int32_t*)(int32_t*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * L_16 = (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_15; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16); Task_ScheduleAndStart_m8B0BB3CA33030ADE7C6873A4F2CEEC7D50A070CB((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_16, (bool)0, /*hidden argument*/NULL); return (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)L_16; } } // 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; } } // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::DangerousSetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m47E33FBE1BE3D5B55A3A885C63B7565A754101FE_gshared (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 * __this, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 ___result0, const RuntimeMethod* method) { { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_parent_8(); if (!L_0) { goto IL_0011; } } { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_1 = ___result0; NullCheck((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *, VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0011: { VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 L_3 = ___result0; __this->set_m_result_22(L_3); int32_t L_4 = (int32_t)((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216)))); return; } } // 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, 6)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); 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, 7)->methodPointer)((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); 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.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Factory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * Task_1_get_Factory_mBC0B90D837902FB26AE8F4753B59EAF0B5E56D65_gshared (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B * L_0 = ((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_23(); return (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *)L_0; } } // 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, 9))); 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, 10)->methodPointer)((Func_1_t8EF98923CD51FA5183990F9211D8F90843D4A2F6 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); __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, 11))); 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, 12)->methodPointer)((Func_2_t72EDE8D5863D0BDF2B630E6BC52E7852E62098A0 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); __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, 14)); 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, 16)); 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, 17)); (( void (*) (TaskFactory_1_tFD6C5BE88624171209DEA49929EA276401AC9F4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_0, /*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, 8)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)); U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1 * L_1 = ((U3CU3Ec_t22EA2BC6A4B6ECEEF70B43822DAAF893FFFBF8A1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 19)))->get_U3CU3E9_0(); Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 * L_2 = (Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 21)); (( void (*) (Func_2_t99C75F5817AC4490145734D823B7E8ED9A840728 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 20)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); ((Task_1_t65FD5EE287B61746F015BBC8E90A97D38D258FB3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->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 Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>::.ctor(System.Func`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadSafeStore_2__ctor_mDC102BA7D7F86C387540B45B2551A16B2A7C0363_gshared (ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546 * __this, Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * ___creator0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * L_0 = ___creator0; ValidationUtils_ArgumentNotNull_m1C7092481C0F809BA56F392D6116B23139888C81((RuntimeObject *)L_0, (String_t*)_stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D, /*hidden argument*/NULL); Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * L_1 = ___creator0; __this->set__creator_1(L_1); ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 * L_2 = (ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set__concurrentStore_0(L_2); return; } } // TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>::Get(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ThreadSafeStore_2_Get_mAB0BAC6544E758CAF34E1521DF4F6165B1547B39_gshared (ThreadSafeStore_2_tA802F17653668F49F3156E71C9C615E883409546 * __this, StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725 ___key0, const RuntimeMethod* method) { { ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 * L_0 = (ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *)__this->get__concurrentStore_0(); StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725 L_1 = ___key0; Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 * L_2 = (Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 *)__this->get__creator_1(); NullCheck((ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *)L_0); RuntimeObject * L_3; L_3 = (( RuntimeObject * (*) (ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *, StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725 , Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((ConcurrentDictionary_2_t0EFEE7796AAD617F9C167A1C98DB107D218FBEB6 *)L_0, (StructMultiKey_2_t7FBC51482C2F69F7C50430F4AB628F650D9E8725 )L_1, (Func_2_t8884A984DA67FB21DF25BD60571A5E748422A591 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)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 Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Object,System.Object>::.ctor(System.Func`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadSafeStore_2__ctor_m78D9D4209EE48542217FBC5255A15516A4D70C27_gshared (ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C * __this, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___creator0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = ___creator0; ValidationUtils_ArgumentNotNull_m1C7092481C0F809BA56F392D6116B23139888C81((RuntimeObject *)L_0, (String_t*)_stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D, /*hidden argument*/NULL); Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_1 = ___creator0; __this->set__creator_1(L_1); ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 * L_2 = (ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set__concurrentStore_0(L_2); return; } } // TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Object,System.Object>::Get(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ThreadSafeStore_2_Get_m5586E54E08D45DDA632291C3A433F6FF3E1A526C_gshared (ThreadSafeStore_2_tE7904C0134AFD355505BE57507FD1114BC3C689C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 * L_0 = (ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *)__this->get__concurrentStore_0(); RuntimeObject * L_1 = ___key0; Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_2 = (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)__this->get__creator_1(); NullCheck((ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *)L_0); RuntimeObject * L_3; L_3 = (( RuntimeObject * (*) (ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *, RuntimeObject *, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((ConcurrentDictionary_2_t089158EC5B60BA9524898F4AC52FEBB3F3F48198 *)L_0, (RuntimeObject *)L_1, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)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 // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Added_1(); return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Updated_2(); return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_1 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4BF1449E72C285F5574323A0A073599470C2013A((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_2 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Added_1(); return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Updated_2(); return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * L_1 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_mEE25A4E2DF43CDA7B7226C7442AA86573C5DD0BC((NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * L_2 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Added_1(); return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Updated_2(); return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t901047647D1B0577009EA387273335B841552234 * L_1 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m40A5F82AF21A439D270A7C47B3EF7ED71716FC46((NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)(NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t901047647D1B0577009EA387273335B841552234 * L_2 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Added_1(); return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Updated_2(); return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * L_1 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m1F79B2DE3F60253E5BA64A21B9A93FFFBCA779D3((NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * L_2 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Added_1(); return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Updated_2(); return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * L_1 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m7342F965BDB96A6B8558E8E4CC1B4AD2CE86016A((NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * L_2 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Added_1(); return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Updated_2(); return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * L_1 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m7A03460B925F39E164998EA307A8B03C7F3771FC((NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * L_2 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Added_1(); return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Updated_2(); return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * L_1 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m9E8AA0143535DDBBF4E1192F6F1727B46ECEACCD((NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * L_2 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Added_1(); return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Updated_2(); return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * L_1 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4CDB60667F21D4D1FE7764439F222E38EC8583A7((NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * L_2 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Added_1(); return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Updated_2(); return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * L_1 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_mE4E70BA96485FD5663D3951C2E9F9144CECEE489((NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * L_2 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Added_1(); return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Updated_2(); return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * L_1 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m4C7EF7A95799A90878B9E7D33D9B94590D08FE23((NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * L_2 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Added_1(); return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; } } 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_inline(_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) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Updated_2(); return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; } } 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_inline(_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) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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_inline(_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; } { // 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; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0058; } } { // UnsafeUtility.MemCpy(m_Removed.GetUnsafePtr(), removedPtr, removedCount * sizeof(TrackableId)); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_16 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); void* L_17; L_17 = NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_16, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisTrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_m92549A9C2F4BEF557CB12A078D51054FA135F761_RuntimeMethod_var); void* L_18 = ___removedPtr4; int32_t L_19 = ___removedCount5; uint32_t L_20 = sizeof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ); UnsafeUtility_MemCpy_m8E335BAB1C2A8483AF8531CE8464C6A69BB98C1B((void*)(void*)L_17, (void*)(void*)L_18, (int64_t)((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)L_20)))), /*hidden argument*/NULL); } IL_0058: { // 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; } { // 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)); if (!L_0) { goto IL_0029; } } { // m_Added.Dispose(); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * L_1 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)__this->get_address_of_m_Added_1(); NativeArray_1_Dispose_m6FB8CBBAB8D901A94BDB00753991BD4B40C8E4C1((NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); // m_Updated.Dispose(); NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * L_2 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 *)__this->get_address_of_m_Updated_2(); 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_Removed.Dispose(); NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * L_3 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)__this->get_address_of_m_Removed_3(); NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C((NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mADC3E2683A04903B22C39C6FC60221504F5A680C_RuntimeMethod_var); } IL_0029: { // 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) { { // 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)); return (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 )L_1; } } 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) { { // if (trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = ___trackables0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException("trackables"); 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*)&_stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1__ctor_m81F2355461255AA98398FD4FC08A246CE6C715DC_RuntimeMethod_var))); } IL_000e: { // m_Trackables = trackables; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = ___trackables0; __this->set_m_Trackables_0(L_2); // } 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) { { // if (m_Trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_count_mBA1626835EB62D254716B1F5D3CF7B4D80CCF161_RuntimeMethod_var))); } IL_0013: { // return m_Trackables.Count; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2); int32_t L_3; L_3 = (( int32_t (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (int32_t)L_3; } } 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) { RuntimeObject * V_0 = NULL; KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * V_1 = 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(); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_RuntimeMethod_var))); } IL_0013: { } IL_0014: try { // begin try (depth: 1) // return m_Trackables[trackableId]; Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_3 = ___trackableId0; NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2); RuntimeObject * L_4; L_4 = (( RuntimeObject * (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); V_0 = (RuntimeObject *)L_4; goto IL_003b; } // 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_0023; } throw e; } CATCH_0023: { // begin catch(System.Collections.Generic.KeyNotFoundException) // catch (KeyNotFoundException e) V_1 = (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_5 = ___trackableId0; TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_6 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_5; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)), &L_6); String_t* L_8; L_8 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17((String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral812EC03C4AEF0AE76BA178C4367F385393486DE8)), (RuntimeObject *)L_7, /*hidden argument*/NULL); KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * L_9 = V_1; KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * L_10 = (KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var))); KeyNotFoundException__ctor_m6757CFA9B5CC91705866ABDD9E48681DAB1C71D9(L_10, (String_t*)L_8, (Exception_t *)L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_get_Item_m27F7E726C3E05769C81480AF6A36806C6B5B0F20_RuntimeMethod_var))); } // end catch (depth: 1) IL_003b: { // } RuntimeObject * L_11 = V_0; return (RuntimeObject *)L_11; } } 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) { { // 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_0014; } } { 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); return (int32_t)L_2; } IL_0014: { return (int32_t)0; } } 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) { { // if (!(obj is TrackableCollection<TTrackable>)) RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))) { goto IL_000a; } } { // return false; return (bool)0; } IL_000a: { // return Equals((TrackableCollection<TTrackable>) obj); RuntimeObject * L_1 = ___obj0; bool L_2; L_2 = TrackableCollection_1_Equals_mA00D6FF692FF4CECDBE047C9D5777AA7E125B008((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)__this, (TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 )((*(TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)((TrackableCollection_1_t4E8CD95BBE750C12D37A648E5531B758A0D9EAB2 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return (bool)L_2; } } 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) { { // 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(); return (bool)((((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_0) == ((RuntimeObject*)(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2))? 1 : 0); } } 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) { { // 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)); return (bool)L_1; } } // 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) { { // 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)); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // 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) { { // if (m_Trackables == null) Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("This collection has not been initialized."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F64EFE1B08A3FF98033E1C140D4EC9D12C71744)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TrackableCollection_1_TryGetTrackable_mCE7F37E8B50572974BCA69F7BA112BB867D59581_RuntimeMethod_var))); } IL_0013: { // return m_Trackables.TryGetValue(trackableId, out trackable); Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)__this->get_m_Trackables_0(); TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_3 = ___trackableId0; RuntimeObject ** L_4 = ___trackable1; NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2); bool L_5; L_5 = (( bool (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2, (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_3, (RuntimeObject **)(RuntimeObject **)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return (bool)L_5; } } 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 System.Data.RBTree`1/TreePage<System.Int32>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage__ctor_m1F8F9CA038FCA656E7F092350E8B10A045E35EE8_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___size0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)65536)))) { goto IL_0015; } } { Exception_t * L_1; L_1 = ExceptionBuilder_InternalRBTreeError_m8305960D40FCF87EABEBB85BC70288E33F41B7D3((int32_t)1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TreePage__ctor_m1F8F9CA038FCA656E7F092350E8B10A045E35EE8_RuntimeMethod_var))); } IL_0015: { int32_t L_2 = ___size0; NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* L_3 = (NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441*)(NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (uint32_t)L_2); __this->set__slots_0(L_3); int32_t L_4 = ___size0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)32))), (int32_t)1))/(int32_t)((int32_t)32)))); __this->set__slotMap_1(L_5); return; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Int32>::AllocSlot(System.Data.RBTree`1<K>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_AllocSlot_m49777AEF2BA12A2F873E5B761A0F4107287BB601_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 * ___tree0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_0 = (int32_t)0; V_1 = (int32_t)0; V_2 = (int32_t)(-1); int32_t L_0 = (int32_t)__this->get__inUseCount_2(); NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* L_1 = (NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441*)__this->get__slots_0(); NullCheck(L_1); if ((((int32_t)L_0) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_00cf; } } { int32_t L_2 = (int32_t)__this->get__nextFreeSlotLine_4(); V_0 = (int32_t)L_2; goto IL_00a6; } IL_0025: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if ((!(((uint32_t)L_6) < ((uint32_t)(-1))))) { goto IL_00a2; } } { V_2 = (int32_t)0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_11 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13 = L_12; int32_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); V_1 = (int32_t)((int32_t)((int32_t)((~L_10))&(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_15 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_16 = V_0; NullCheck(L_15); int32_t* L_17 = (int32_t*)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16))); int32_t L_18 = *((int32_t*)L_17); int32_t L_19 = V_1; *((int32_t*)L_17) = (int32_t)((int32_t)((int32_t)L_18|(int32_t)L_19)); int32_t L_20 = (int32_t)__this->get__inUseCount_2(); __this->set__inUseCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); int32_t L_21 = (int32_t)__this->get__inUseCount_2(); NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441* L_22 = (NodeU5BU5D_t6E4DE2206DDC03B22D5CD21818D60591B34D6441*)__this->get__slots_0(); NullCheck(L_22); if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))) { goto IL_007d; } } { RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 * L_23 = ___tree0; NullCheck((RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *)L_23); (( void (*) (RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *, TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *)L_23, (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_007d: { RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 * L_24 = ___tree0; RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 * L_25 = (RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *)L_24; NullCheck(L_25); int32_t L_26 = (int32_t)L_25->get__inUseNodeCount_6(); NullCheck(L_25); L_25->set__inUseNodeCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); int32_t L_27 = V_1; int32_t L_28; L_28 = (( int32_t (*) (uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((uint32_t)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_2 = (int32_t)L_28; int32_t L_29 = V_0; __this->set__nextFreeSlotLine_4(L_29); int32_t L_30 = V_0; int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_30, (int32_t)((int32_t)32))), (int32_t)L_31)); goto IL_00b4; } IL_00a2: { int32_t L_32 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00a6: { int32_t L_33 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_34 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); NullCheck(L_34); if ((((int32_t)L_33) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))) { goto IL_0025; } } IL_00b4: { int32_t L_35 = V_2; if ((!(((uint32_t)L_35) == ((uint32_t)(-1))))) { goto IL_00cf; } } { int32_t L_36 = (int32_t)__this->get__nextFreeSlotLine_4(); if (!L_36) { goto IL_00cf; } } { __this->set__nextFreeSlotLine_4(0); RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 * L_37 = ___tree0; NullCheck((TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 *)__this); int32_t L_38; L_38 = (( int32_t (*) (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 *, RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 *)__this, (RBTree_1_t58FDFB0AB43F3FE218D32B00B681D0A9AB213C11 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_2 = (int32_t)L_38; } IL_00cf: { int32_t L_39 = V_2; return (int32_t)L_39; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Int32>::get_InUseCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_get_InUseCount_m5D380F641505FDD03E0FD61A2E7BEB26DB4D563B_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__inUseCount_2(); return (int32_t)L_0; } } // System.Void System.Data.RBTree`1/TreePage<System.Int32>::set_InUseCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage_set_InUseCount_m9D93478840079B58CA49EF88AA5C96E58D505125_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__inUseCount_2(L_0); return; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Int32>::get_PageId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_get_PageId_m33A2BDD9264856DB65EB8502D8EE7AE905075189_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__pageId_3(); return (int32_t)L_0; } } // System.Void System.Data.RBTree`1/TreePage<System.Int32>::set_PageId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage_set_PageId_m0FF7A0FF11F9CE6CAE11C6B2641C0846F6A5AAE0_gshared (TreePage_tBD6DAEFB3F19160E5F9B5597848BE0C6F11BAB10 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__pageId_3(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.Data.RBTree`1/TreePage<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage__ctor_m37CB1D5D3D3316E6545DA01460E1CE7D3EB032F2_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___size0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)65536)))) { goto IL_0015; } } { Exception_t * L_1; L_1 = ExceptionBuilder_InternalRBTreeError_m8305960D40FCF87EABEBB85BC70288E33F41B7D3((int32_t)1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TreePage__ctor_m37CB1D5D3D3316E6545DA01460E1CE7D3EB032F2_RuntimeMethod_var))); } IL_0015: { int32_t L_2 = ___size0; NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* L_3 = (NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312*)(NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), (uint32_t)L_2); __this->set__slots_0(L_3); int32_t L_4 = ___size0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)32))), (int32_t)1))/(int32_t)((int32_t)32)))); __this->set__slotMap_1(L_5); return; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Object>::AllocSlot(System.Data.RBTree`1<K>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_AllocSlot_m9E42A0290E7E5EBE0E1B486D8ED23EADAED681E7_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 * ___tree0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_0 = (int32_t)0; V_1 = (int32_t)0; V_2 = (int32_t)(-1); int32_t L_0 = (int32_t)__this->get__inUseCount_2(); NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* L_1 = (NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312*)__this->get__slots_0(); NullCheck(L_1); if ((((int32_t)L_0) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_00cf; } } { int32_t L_2 = (int32_t)__this->get__nextFreeSlotLine_4(); V_0 = (int32_t)L_2; goto IL_00a6; } IL_0025: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if ((!(((uint32_t)L_6) < ((uint32_t)(-1))))) { goto IL_00a2; } } { V_2 = (int32_t)0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_11 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13 = L_12; int32_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); V_1 = (int32_t)((int32_t)((int32_t)((~L_10))&(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_15 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); int32_t L_16 = V_0; NullCheck(L_15); int32_t* L_17 = (int32_t*)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16))); int32_t L_18 = *((int32_t*)L_17); int32_t L_19 = V_1; *((int32_t*)L_17) = (int32_t)((int32_t)((int32_t)L_18|(int32_t)L_19)); int32_t L_20 = (int32_t)__this->get__inUseCount_2(); __this->set__inUseCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); int32_t L_21 = (int32_t)__this->get__inUseCount_2(); NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312* L_22 = (NodeU5BU5D_t4FBBF62047E7169B747D3B59C139E09E431C8312*)__this->get__slots_0(); NullCheck(L_22); if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))) { goto IL_007d; } } { RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 * L_23 = ___tree0; NullCheck((RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *)L_23); (( void (*) (RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *, TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *)L_23, (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_007d: { RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 * L_24 = ___tree0; RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 * L_25 = (RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *)L_24; NullCheck(L_25); int32_t L_26 = (int32_t)L_25->get__inUseNodeCount_6(); NullCheck(L_25); L_25->set__inUseNodeCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); int32_t L_27 = V_1; int32_t L_28; L_28 = (( int32_t (*) (uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((uint32_t)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_2 = (int32_t)L_28; int32_t L_29 = V_0; __this->set__nextFreeSlotLine_4(L_29); int32_t L_30 = V_0; int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_30, (int32_t)((int32_t)32))), (int32_t)L_31)); goto IL_00b4; } IL_00a2: { int32_t L_32 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00a6: { int32_t L_33 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_34 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get__slotMap_1(); NullCheck(L_34); if ((((int32_t)L_33) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))) { goto IL_0025; } } IL_00b4: { int32_t L_35 = V_2; if ((!(((uint32_t)L_35) == ((uint32_t)(-1))))) { goto IL_00cf; } } { int32_t L_36 = (int32_t)__this->get__nextFreeSlotLine_4(); if (!L_36) { goto IL_00cf; } } { __this->set__nextFreeSlotLine_4(0); RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 * L_37 = ___tree0; NullCheck((TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC *)__this); int32_t L_38; L_38 = (( int32_t (*) (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC *, RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC *)__this, (RBTree_1_tDF6F84A8D1EE6E176828EB4C2FCB56C871C78AD2 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_2 = (int32_t)L_38; } IL_00cf: { int32_t L_39 = V_2; return (int32_t)L_39; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Object>::get_InUseCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_get_InUseCount_m3F61CB754412A958E408D806ACD3B9F14A0D2D0A_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__inUseCount_2(); return (int32_t)L_0; } } // System.Void System.Data.RBTree`1/TreePage<System.Object>::set_InUseCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage_set_InUseCount_mCC556C5A54F34F15B06100602A68D9C79B47C515_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__inUseCount_2(L_0); return; } } // System.Int32 System.Data.RBTree`1/TreePage<System.Object>::get_PageId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreePage_get_PageId_m1EF03CFBE9698AB1FF29474E6FBB25E6AA54C650_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__pageId_3(); return (int32_t)L_0; } } // System.Void System.Data.RBTree`1/TreePage<System.Object>::set_PageId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreePage_set_PageId_mC0BF1730A2EBF5328631B4271CDE1F1349613248_gshared (TreePage_t6415A3A3A4888672910D5E8F3EDA0CAEDF6A50BC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__pageId_3(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.Runtime.CompilerServices.TrueReadOnlyCollection`1<System.Object>::.ctor(T[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrueReadOnlyCollection_1__ctor_mDF3EF583478D490FB15F7AB3FF61E2E73191FFA2_gshared (TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___list0, const RuntimeMethod* method) { { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___list0; NullCheck((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this); (( void (*) (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 *)__this, (RuntimeObject*)(RuntimeObject*)L_0, /*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 // T1 System.Tuple`2<System.Guid,System.Object>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Tuple_2_get_Item1_m8A951F0536E0215A434D4257CE2766C2F9EF84AA_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method) { { Guid_t L_0 = (Guid_t )__this->get_m_Item1_0(); return (Guid_t )L_0; } } // T2 System.Tuple`2<System.Guid,System.Object>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m11C2BD2566E0232F4D93EEB3D2D9C6B04F134770_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1(); return (RuntimeObject *)L_0; } } // System.Void System.Tuple`2<System.Guid,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m2872BF766DA232F87D623606965F2E34A032416B_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, Guid_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Guid_t 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.Guid,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m36874A7EC22A48151827C01E2424DEC066C79BA8_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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.Guid,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m41B65CA18600A2BB17D4D815DFD780F6664FC795_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * 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_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)((Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; Guid_t L_4 = (Guid_t )__this->get_m_Item1_0(); Guid_t L_5 = (Guid_t )L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_7 = V_0; NullCheck(L_7); Guid_t L_8 = (Guid_t )L_7->get_m_Item1_0(); Guid_t L_9 = (Guid_t )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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_004c; } } { RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_14 = V_0; NullCheck(L_14); RuntimeObject * L_15 = (RuntimeObject *)L_14->get_m_Item2_1(); NullCheck((RuntimeObject*)L_12); 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_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15); return (bool)L_16; } IL_004c: { return (bool)0; } } // System.Int32 System.Tuple`2<System.Guid,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mF4F14B10882975FD1C86FF3921C3FBD0243AAA5F_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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.Guid,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_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * 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_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)((Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * 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_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; Guid_t L_8 = (Guid_t )__this->get_m_Item1_0(); Guid_t L_9 = (Guid_t )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_11 = V_0; NullCheck(L_11); Guid_t L_12 = (Guid_t )L_11->get_m_Item1_0(); Guid_t L_13 = (Guid_t )L_12; RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13); NullCheck((RuntimeObject*)L_7); int32_t L_15; L_15 = 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_10, (RuntimeObject *)L_14); V_1 = (int32_t)L_15; int32_t L_16 = V_1; if (!L_16) { goto IL_0053; } } { int32_t L_17 = V_1; return (int32_t)L_17; } IL_0053: { RuntimeObject* L_18 = ___comparer1; RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_20 = V_0; NullCheck(L_20); RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item2_1(); NullCheck((RuntimeObject*)L_18); 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_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21); return (int32_t)L_22; } } // System.Int32 System.Tuple`2<System.Guid,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_mC92CC019B7F4E67519D23CC0FCA7B845379F1052_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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.Guid,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m5AA6FB0FBE1BC186ACBF97A4489D8A700E41734E_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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; Guid_t L_1 = (Guid_t )__this->get_m_Item1_0(); Guid_t L_2 = (Guid_t )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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; RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((RuntimeObject*)L_5); 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_5, (RuntimeObject *)L_6); int32_t L_8; L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL); return (int32_t)L_8; } } // System.String System.Tuple`2<System.Guid,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m91AF0B92D8C46FD0099D6CCE7FFBFF09D0F0AEE3_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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.Guid,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_mCAE74B50268C33FDFF4937C36701367901982981_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __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; Guid_t L_1 = (Guid_t )__this->get_m_Item1_0(); Guid_t L_2 = (Guid_t )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_4; L_4 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_6; L_6 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_7 = ___sb0; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item2_1(); NullCheck((StringBuilder_t *)L_7); StringBuilder_t * L_9; L_9 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_7, (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.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.Boolean,System.Boolean,System.Boolean,System.Boolean>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item1_m22AD4D6C6093325665A03F6530EEDA2155895B9F_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_Item1_0(); return (bool)L_0; } } // T2 System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item2_m144C0F0AA3ACBF6C8F5384DCDCD6C4205B54863B_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_Item2_1(); return (bool)L_0; } } // T3 System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::get_Item3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item3_m10321937E908956B9CB360D329F45ABF10F846E1_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_Item3_2(); return (bool)L_0; } } // T4 System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::get_Item4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item4_m79F5FB0BC6A5225E0379B9918F7306E97DEBFD62_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_Item4_3(); return (bool)L_0; } } // System.Void System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m32FAD89C8237436679603767D8CEBE51C79336C9_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __this, bool ___item10, bool ___item21, bool ___item32, bool ___item43, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); bool L_0 = ___item10; __this->set_m_Item1_0(L_0); bool L_1 = ___item21; __this->set_m_Item2_1(L_1); bool L_2 = ___item32; __this->set_m_Item3_2(L_2); bool L_3 = ___item43; __this->set_m_Item4_3(L_3); return; } } // System.Boolean System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m9F0A797B7CEEE5A57137E3F70C16EE961CF52C60_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m476ED0EACFCF15FB4032AC572792F8D1DE394E33_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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_4_t565F851AA4121F24870E4537C8F66E05587888DF * 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_4_t565F851AA4121F24870E4537C8F66E05587888DF *)((Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; bool L_4 = (bool)__this->get_m_Item1_0(); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_7 = V_0; NullCheck(L_7); bool L_8 = (bool)L_7->get_m_Item1_0(); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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_0088; } } { RuntimeObject* L_12 = ___comparer1; bool L_13 = (bool)__this->get_m_Item2_1(); bool L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_16 = V_0; NullCheck(L_16); bool L_17 = (bool)L_16->get_m_Item2_1(); bool L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &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); if (!L_20) { goto IL_0088; } } { RuntimeObject* L_21 = ___comparer1; bool L_22 = (bool)__this->get_m_Item3_2(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_25 = V_0; NullCheck(L_25); bool L_26 = (bool)L_25->get_m_Item3_2(); bool L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27); NullCheck((RuntimeObject*)L_21); bool L_29; L_29 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); if (!L_29) { goto IL_0088; } } { RuntimeObject* L_30 = ___comparer1; bool L_31 = (bool)__this->get_m_Item4_3(); bool L_32 = L_31; RuntimeObject * L_33 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_32); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_34 = V_0; NullCheck(L_34); bool L_35 = (bool)L_34->get_m_Item4_3(); bool L_36 = L_35; RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_36); NullCheck((RuntimeObject*)L_30); bool L_38; L_38 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_30, (RuntimeObject *)L_33, (RuntimeObject *)L_37); return (bool)L_38; } IL_0088: { return (bool)0; } } // System.Int32 System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m2F691CBBF14EDF135C91B020131D0CC7C428B5F9_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m0015EAD6569E4AC50988B0EACF7F3FB1CA2A1C4B_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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_4_t565F851AA4121F24870E4537C8F66E05587888DF * 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_4_t565F851AA4121F24870E4537C8F66E05587888DF *)((Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * 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_4_System_Collections_IStructuralComparable_CompareTo_m0015EAD6569E4AC50988B0EACF7F3FB1CA2A1C4B_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; bool L_8 = (bool)__this->get_m_Item1_0(); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_11 = V_0; NullCheck(L_11); bool L_12 = (bool)L_11->get_m_Item1_0(); bool L_13 = L_12; RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13); NullCheck((RuntimeObject*)L_7); int32_t L_15; L_15 = 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_10, (RuntimeObject *)L_14); V_1 = (int32_t)L_15; int32_t L_16 = V_1; if (!L_16) { goto IL_0053; } } { int32_t L_17 = V_1; return (int32_t)L_17; } IL_0053: { RuntimeObject* L_18 = ___comparer1; bool L_19 = (bool)__this->get_m_Item2_1(); bool L_20 = L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_22 = V_0; NullCheck(L_22); bool L_23 = (bool)L_22->get_m_Item2_1(); bool L_24 = L_23; RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24); NullCheck((RuntimeObject*)L_18); int32_t L_26; L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25); V_1 = (int32_t)L_26; int32_t L_27 = V_1; if (!L_27) { goto IL_0075; } } { int32_t L_28 = V_1; return (int32_t)L_28; } IL_0075: { RuntimeObject* L_29 = ___comparer1; bool L_30 = (bool)__this->get_m_Item3_2(); bool L_31 = L_30; RuntimeObject * L_32 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_31); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_33 = V_0; NullCheck(L_33); bool L_34 = (bool)L_33->get_m_Item3_2(); bool L_35 = L_34; RuntimeObject * L_36 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_35); NullCheck((RuntimeObject*)L_29); int32_t L_37; L_37 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_29, (RuntimeObject *)L_32, (RuntimeObject *)L_36); V_1 = (int32_t)L_37; int32_t L_38 = V_1; if (!L_38) { goto IL_0097; } } { int32_t L_39 = V_1; return (int32_t)L_39; } IL_0097: { RuntimeObject* L_40 = ___comparer1; bool L_41 = (bool)__this->get_m_Item4_3(); bool L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_42); Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * L_44 = V_0; NullCheck(L_44); bool L_45 = (bool)L_44->get_m_Item4_3(); bool L_46 = L_45; RuntimeObject * L_47 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_46); NullCheck((RuntimeObject*)L_40); int32_t L_48; L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_40, (RuntimeObject *)L_43, (RuntimeObject *)L_47); return (int32_t)L_48; } } // System.Int32 System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m0D99A2B10A605A2A849EFA52CA203754D5761522_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m0A52F39C037CC8E62BE96868813D63100053F90A_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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; bool L_1 = (bool)__this->get_m_Item1_0(); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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; bool L_6 = (bool)__this->get_m_Item2_1(); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &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); RuntimeObject* L_10 = ___comparer0; bool L_11 = (bool)__this->get_m_Item3_2(); bool L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_12); NullCheck((RuntimeObject*)L_10); int32_t L_14; L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13); RuntimeObject* L_15 = ___comparer0; bool L_16 = (bool)__this->get_m_Item4_3(); bool L_17 = L_16; RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_17); NullCheck((RuntimeObject*)L_15); int32_t L_19; L_19 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_15, (RuntimeObject *)L_18); int32_t L_20; L_20 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_4, (int32_t)L_9, (int32_t)L_14, (int32_t)L_19, /*hidden argument*/NULL); return (int32_t)L_20; } } // System.String System.Tuple`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m20FE94705734D1459212E1098AEADFE695833191_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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`4<System.Boolean,System.Boolean,System.Boolean,System.Boolean>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_mE90D0613C08DB890D7B138367BF15BB8A711A614_gshared (Tuple_4_t565F851AA4121F24870E4537C8F66E05587888DF * __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; bool L_1 = (bool)__this->get_m_Item1_0(); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_4; L_4 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_6; L_6 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_7 = ___sb0; bool L_8 = (bool)__this->get_m_Item2_1(); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_9); NullCheck((StringBuilder_t *)L_7); StringBuilder_t * L_11; L_11 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_7, (RuntimeObject *)L_10, /*hidden argument*/NULL); StringBuilder_t * L_12 = ___sb0; NullCheck((StringBuilder_t *)L_12); StringBuilder_t * L_13; L_13 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_12, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_14 = ___sb0; bool L_15 = (bool)__this->get_m_Item3_2(); bool L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_16); NullCheck((StringBuilder_t *)L_14); StringBuilder_t * L_18; L_18 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_14, (RuntimeObject *)L_17, /*hidden argument*/NULL); StringBuilder_t * L_19 = ___sb0; NullCheck((StringBuilder_t *)L_19); StringBuilder_t * L_20; L_20 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_19, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_21 = ___sb0; bool L_22 = (bool)__this->get_m_Item4_3(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_23); NullCheck((StringBuilder_t *)L_21); StringBuilder_t * L_25; L_25 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_21, (RuntimeObject *)L_24, /*hidden argument*/NULL); StringBuilder_t * L_26 = ___sb0; NullCheck((StringBuilder_t *)L_26); StringBuilder_t * L_27; L_27 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_26, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_28 = ___sb0; NullCheck((RuntimeObject *)L_28); String_t* L_29; L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_28); return (String_t*)L_29; } } #ifdef __clang__ #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.Int32,System.Int32,System.Int32,System.Boolean>::get_Item1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item1_mDD520EBC4036ED8B5E5FF418030D3A37CC13A92D_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_Item1_0(); return (int32_t)L_0; } } // T2 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item2_mC8AE93EDC8022CE42C9CA1B48C6D2C5FBF395DBB_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_m_Item2_1(); return (int32_t)L_0; } } // T3 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mF1E94C914EC35054CEDC1E5133A7B547C4957051_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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.Int32,System.Int32,System.Int32,System.Boolean>::get_Item4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item4_mFB9D892ABD1D546E4833688CFA37C70953D90CAC_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_m_Item4_3(); return (bool)L_0; } } // System.Void System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m110DF42D7B274045F9DB5B0DDE4AB3BFD93219AF_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, int32_t ___item10, int32_t ___item21, int32_t ___item32, bool ___item43, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___item10; __this->set_m_Item1_0(L_0); int32_t L_1 = ___item21; __this->set_m_Item2_1(L_1); int32_t L_2 = ___item32; __this->set_m_Item3_2(L_2); bool L_3 = ___item43; __this->set_m_Item4_3(L_3); return; } } // System.Boolean System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m042A5CE75B4D17100FB0E1551A63210C25A73FFB_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m4D98FC6CDD2A2F03599B851155EDAE0EB7061B1A_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * 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_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)((Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_2 = V_0; if (L_2) { goto IL_0011; } } { return (bool)0; } IL_0011: { RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_m_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_7 = V_0; NullCheck(L_7); int32_t L_8 = (int32_t)L_7->get_m_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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_0088; } } { RuntimeObject* L_12 = ___comparer1; int32_t L_13 = (int32_t)__this->get_m_Item2_1(); int32_t L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_16 = V_0; NullCheck(L_16); int32_t L_17 = (int32_t)L_16->get_m_Item2_1(); int32_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &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); if (!L_20) { goto IL_0088; } } { RuntimeObject* L_21 = ___comparer1; int32_t L_22 = (int32_t)__this->get_m_Item3_2(); int32_t L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_25 = V_0; NullCheck(L_25); int32_t L_26 = (int32_t)L_25->get_m_Item3_2(); int32_t L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27); NullCheck((RuntimeObject*)L_21); bool L_29; L_29 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); if (!L_29) { goto IL_0088; } } { RuntimeObject* L_30 = ___comparer1; bool L_31 = (bool)__this->get_m_Item4_3(); bool L_32 = L_31; RuntimeObject * L_33 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_32); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_34 = V_0; NullCheck(L_34); bool L_35 = (bool)L_34->get_m_Item4_3(); bool L_36 = L_35; RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_36); NullCheck((RuntimeObject*)L_30); bool L_38; L_38 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_30, (RuntimeObject *)L_33, (RuntimeObject *)L_37); return (bool)L_38; } IL_0088: { return (bool)0; } } // System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m36B26DE3F3643B16458329A69219006C3EA77170_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * 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_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)((Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * 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_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; int32_t L_8 = (int32_t)__this->get_m_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_11 = V_0; NullCheck(L_11); int32_t L_12 = (int32_t)L_11->get_m_Item1_0(); int32_t L_13 = L_12; RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13); NullCheck((RuntimeObject*)L_7); int32_t L_15; L_15 = 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_10, (RuntimeObject *)L_14); V_1 = (int32_t)L_15; int32_t L_16 = V_1; if (!L_16) { goto IL_0053; } } { int32_t L_17 = V_1; return (int32_t)L_17; } IL_0053: { RuntimeObject* L_18 = ___comparer1; int32_t L_19 = (int32_t)__this->get_m_Item2_1(); int32_t L_20 = L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_22 = V_0; NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_m_Item2_1(); int32_t L_24 = L_23; RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24); NullCheck((RuntimeObject*)L_18); int32_t L_26; L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25); V_1 = (int32_t)L_26; int32_t L_27 = V_1; if (!L_27) { goto IL_0075; } } { int32_t L_28 = V_1; return (int32_t)L_28; } IL_0075: { RuntimeObject* L_29 = ___comparer1; int32_t L_30 = (int32_t)__this->get_m_Item3_2(); int32_t L_31 = L_30; RuntimeObject * L_32 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_31); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_33 = V_0; NullCheck(L_33); int32_t L_34 = (int32_t)L_33->get_m_Item3_2(); int32_t L_35 = L_34; RuntimeObject * L_36 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_35); NullCheck((RuntimeObject*)L_29); int32_t L_37; L_37 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_29, (RuntimeObject *)L_32, (RuntimeObject *)L_36); V_1 = (int32_t)L_37; int32_t L_38 = V_1; if (!L_38) { goto IL_0097; } } { int32_t L_39 = V_1; return (int32_t)L_39; } IL_0097: { RuntimeObject* L_40 = ___comparer1; bool L_41 = (bool)__this->get_m_Item4_3(); bool L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_42); Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_44 = V_0; NullCheck(L_44); bool L_45 = (bool)L_44->get_m_Item4_3(); bool L_46 = L_45; RuntimeObject * L_47 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_46); NullCheck((RuntimeObject*)L_40); int32_t L_48; L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_40, (RuntimeObject *)L_43, (RuntimeObject *)L_47); return (int32_t)L_48; } } // System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m28DA0628D9C280E13AF9F542BF8FCC2863B1DE20_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3190A0B3F0D6190BF877960D6CE45D7FF2AC8C57_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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_m_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &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_m_Item2_1(); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &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); RuntimeObject* L_10 = ___comparer0; int32_t L_11 = (int32_t)__this->get_m_Item3_2(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_12); NullCheck((RuntimeObject*)L_10); int32_t L_14; L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13); RuntimeObject* L_15 = ___comparer0; bool L_16 = (bool)__this->get_m_Item4_3(); bool L_17 = L_16; RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_17); NullCheck((RuntimeObject*)L_15); int32_t L_19; L_19 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_15, (RuntimeObject *)L_18); int32_t L_20; L_20 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_4, (int32_t)L_9, (int32_t)L_14, (int32_t)L_19, /*hidden argument*/NULL); return (int32_t)L_20; } } // System.String System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m6F6C0FA75C7EC8ED752BBD3F11B41C4760F7E6A7_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_mA2E8553C515EBC17C075C2308A166E23790A96FE_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __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; int32_t L_1 = (int32_t)__this->get_m_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2); NullCheck((StringBuilder_t *)L_0); StringBuilder_t * L_4; L_4 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); StringBuilder_t * L_5 = ___sb0; NullCheck((StringBuilder_t *)L_5); StringBuilder_t * L_6; L_6 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_7 = ___sb0; int32_t L_8 = (int32_t)__this->get_m_Item2_1(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_9); NullCheck((StringBuilder_t *)L_7); StringBuilder_t * L_11; L_11 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_7, (RuntimeObject *)L_10, /*hidden argument*/NULL); StringBuilder_t * L_12 = ___sb0; NullCheck((StringBuilder_t *)L_12); StringBuilder_t * L_13; L_13 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_12, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_14 = ___sb0; int32_t L_15 = (int32_t)__this->get_m_Item3_2(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_16); NullCheck((StringBuilder_t *)L_14); StringBuilder_t * L_18; L_18 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_14, (RuntimeObject *)L_17, /*hidden argument*/NULL); StringBuilder_t * L_19 = ___sb0; NullCheck((StringBuilder_t *)L_19); StringBuilder_t * L_20; L_20 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_19, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_21 = ___sb0; bool L_22 = (bool)__this->get_m_Item4_3(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_23); NullCheck((StringBuilder_t *)L_21); StringBuilder_t * L_25; L_25 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_21, (RuntimeObject *)L_24, /*hidden argument*/NULL); StringBuilder_t * L_26 = ___sb0; NullCheck((StringBuilder_t *)L_26); StringBuilder_t * L_27; L_27 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_26, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_28 = ___sb0; NullCheck((RuntimeObject *)L_28); String_t* L_29; L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_28); return (String_t*)L_29; } } #ifdef __clang__ #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; } } // System.Void System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_mE6863E3E4159B58E5A98E9CBB854F41ED74FCD4B_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, int32_t ___item43, 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); int32_t L_2 = ___item32; __this->set_m_Item3_2(L_2); int32_t L_3 = ___item43; __this->set_m_Item4_3(L_3); return; } } // System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m810C373812C46799F30A72566664D98AC7479B75_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_mC341E26E37DC309E38C469E7ABBF5876E0968250_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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_4_t936566050E79A53330A93469CAF15575A12A114D * 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_4_t936566050E79A53330A93469CAF15575A12A114D *)((Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * 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_4_t936566050E79A53330A93469CAF15575A12A114D * 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_0088; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * 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_0088; } } { RuntimeObject* L_13 = ___comparer1; int32_t L_14 = (int32_t)__this->get_m_Item3_2(); int32_t L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_15); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_17 = V_0; NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_m_Item3_2(); int32_t L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_19); NullCheck((RuntimeObject*)L_13); bool L_21; L_21 = 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_16, (RuntimeObject *)L_20); if (!L_21) { goto IL_0088; } } { RuntimeObject* L_22 = ___comparer1; int32_t L_23 = (int32_t)__this->get_m_Item4_3(); int32_t L_24 = L_23; RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_24); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_26 = V_0; NullCheck(L_26); int32_t L_27 = (int32_t)L_26->get_m_Item4_3(); int32_t L_28 = L_27; RuntimeObject * L_29 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_28); NullCheck((RuntimeObject*)L_22); bool L_30; L_30 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_22, (RuntimeObject *)L_25, (RuntimeObject *)L_29); return (bool)L_30; } IL_0088: { return (bool)0; } } // System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m2B700CC28D1C26FB41FEBDECFE79456612AAABC5_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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_4_t936566050E79A53330A93469CAF15575A12A114D * 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_4_t936566050E79A53330A93469CAF15575A12A114D *)((Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * 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_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * 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_4_t936566050E79A53330A93469CAF15575A12A114D * 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; int32_t L_22 = (int32_t)__this->get_m_Item3_2(); int32_t L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_25 = V_0; NullCheck(L_25); int32_t L_26 = (int32_t)L_25->get_m_Item3_2(); int32_t L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &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); V_1 = (int32_t)L_29; int32_t L_30 = V_1; if (!L_30) { goto IL_0097; } } { int32_t L_31 = V_1; return (int32_t)L_31; } IL_0097: { RuntimeObject* L_32 = ___comparer1; int32_t L_33 = (int32_t)__this->get_m_Item4_3(); int32_t L_34 = L_33; RuntimeObject * L_35 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_34); Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_36 = V_0; NullCheck(L_36); int32_t L_37 = (int32_t)L_36->get_m_Item4_3(); int32_t L_38 = L_37; RuntimeObject * L_39 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_38); NullCheck((RuntimeObject*)L_32); int32_t L_40; L_40 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_32, (RuntimeObject *)L_35, (RuntimeObject *)L_39); return (int32_t)L_40; } } // System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_mBEAFF2CF8410683A95B984E1D6E7A124628B42A4_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mE07FC3048629FBAA9B0B82A519C487058250B690_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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; int32_t L_7 = (int32_t)__this->get_m_Item3_2(); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8); NullCheck((RuntimeObject*)L_6); int32_t L_10; L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9); RuntimeObject* L_11 = ___comparer0; int32_t L_12 = (int32_t)__this->get_m_Item4_3(); int32_t L_13 = L_12; RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_13); NullCheck((RuntimeObject*)L_11); int32_t L_15; L_15 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_11, (RuntimeObject *)L_14); int32_t L_16; L_16 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_2, (int32_t)L_5, (int32_t)L_10, (int32_t)L_15, /*hidden argument*/NULL); return (int32_t)L_16; } } // System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_mCAB40D7255D4673FFDD91D1A2EBC91E83E84A661_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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`4<System.Object,System.Object,System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_mB66A60246AE894A28DF4D6F01DE3AAB1AA085E6A_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __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; int32_t L_11 = (int32_t)__this->get_m_Item3_2(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_12); NullCheck((StringBuilder_t *)L_10); StringBuilder_t * L_14; L_14 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_10, (RuntimeObject *)L_13, /*hidden argument*/NULL); StringBuilder_t * L_15 = ___sb0; NullCheck((StringBuilder_t *)L_15); StringBuilder_t * L_16; L_16 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_15, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_17 = ___sb0; int32_t L_18 = (int32_t)__this->get_m_Item4_3(); int32_t L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_19); NullCheck((StringBuilder_t *)L_17); StringBuilder_t * L_21; L_21 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_17, (RuntimeObject *)L_20, /*hidden argument*/NULL); StringBuilder_t * L_22 = ___sb0; NullCheck((StringBuilder_t *)L_22); StringBuilder_t * L_23; L_23 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_22, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_24 = ___sb0; NullCheck((RuntimeObject *)L_24); String_t* L_25; L_25 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_24); return (String_t*)L_25; } } #ifdef __clang__ #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; } } // System.Void System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m8E45C17903FA22DC75D1310AB2B1C1036514FAD0_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, 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); RuntimeObject * L_3 = ___item43; __this->set_m_Item4_3(L_3); return; } } // System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m5C403AB876CFEAF4C4028B2D1EB921B708D71F6F_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m6B3ECD79C777FAA44B212F29225AF083FE0CE81B_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)((Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_0088; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1(); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_0088; } } { RuntimeObject* L_13 = ___comparer1; RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2(); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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); if (!L_17) { goto IL_0088; } } { RuntimeObject* L_18 = ___comparer1; RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item4_3(); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_20 = V_0; NullCheck(L_20); RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item4_3(); NullCheck((RuntimeObject*)L_18); bool L_22; L_22 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21); return (bool)L_22; } IL_0088: { return (bool)0; } } // System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_mF0A90DFEA25BC907CC567B76D7AE08EFACBC0DD5_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)((Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_RuntimeMethod_var))); } IL_002f: { V_1 = (int32_t)0; RuntimeObject* L_7 = ___comparer1; RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0(); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * 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); V_1 = (int32_t)L_25; int32_t L_26 = V_1; if (!L_26) { goto IL_0097; } } { int32_t L_27 = V_1; return (int32_t)L_27; } IL_0097: { RuntimeObject* L_28 = ___comparer1; RuntimeObject * L_29 = (RuntimeObject *)__this->get_m_Item4_3(); Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_30 = V_0; NullCheck(L_30); RuntimeObject * L_31 = (RuntimeObject *)L_30->get_m_Item4_3(); NullCheck((RuntimeObject*)L_28); int32_t L_32; L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_28, (RuntimeObject *)L_29, (RuntimeObject *)L_31); return (int32_t)L_32; } } // System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m3A029A56DAEEB113ABF2D3AD2DADB85639C8602C_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mCB6BD9BCC93AEBE5BA5AC38BE364147BDCFA03B5_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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); RuntimeObject* L_9 = ___comparer0; RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_Item4_3(); NullCheck((RuntimeObject*)L_9); int32_t L_11; L_11 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_9, (RuntimeObject *)L_10); int32_t L_12; L_12 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_2, (int32_t)L_5, (int32_t)L_8, (int32_t)L_11, /*hidden argument*/NULL); return (int32_t)L_12; } } // System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m76E3B38EF334DF95D2D2F5853F7F83D031AC7972_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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`4<System.Object,System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_m2889AE2B9D7612D7959D60A9860437BC14410CDA_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __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_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_13, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL); StringBuilder_t * L_15 = ___sb0; RuntimeObject * L_16 = (RuntimeObject *)__this->get_m_Item4_3(); NullCheck((StringBuilder_t *)L_15); StringBuilder_t * L_17; L_17 = StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_15, (RuntimeObject *)L_16, /*hidden argument*/NULL); StringBuilder_t * L_18 = ___sb0; NullCheck((StringBuilder_t *)L_18); StringBuilder_t * L_19; L_19 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_18, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL); StringBuilder_t * L_20 = ___sb0; NullCheck((RuntimeObject *)L_20); String_t* L_21; L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_20); return (String_t*)L_21; } } #ifdef __clang__ #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.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Start(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TweenRunner_1_Start_m25B8F14E0904DD545969F1C7F9DA8E8910CF6653_gshared (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___tweenInfo0, const RuntimeMethod* method) { { U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 * L_0 = (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 * L_1 = (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *)L_0; ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 L_2 = ___tweenInfo0; NullCheck(L_1); L_1->set_tweenInfo_2(L_2); return (RuntimeObject*)L_1; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Init(UnityEngine.MonoBehaviour) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_Init_m37947E11CE7805113E3B020DABF236702307B4DA_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___coroutineContainer0, const RuntimeMethod* method) { { // m_CoroutineContainer = coroutineContainer; MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = ___coroutineContainer0; __this->set_m_CoroutineContainer_0(L_0); // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StartTween(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_m644BE60640B50CE2B6BFF8979DAA7710B0487B82_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___info0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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*)&_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7); s_Il2CppMethodInitialized = true; } { // if (m_CoroutineContainer == null) MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { // Debug.LogWarning("Coroutine container not configured... did you forget to call Init?"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7((RuntimeObject *)_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7, /*hidden argument*/NULL); // return; return; } IL_0019: { // StopTween(); NullCheck((TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *)__this); (( void (*) (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); // if (!m_CoroutineContainer.gameObject.activeInHierarchy) MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_2 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); NullCheck((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2, /*hidden argument*/NULL); NullCheck((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3); bool L_4; L_4 = GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0044; } } { // info.TweenValue(1.0f); ColorTween_TweenValue_m5F8B59F75D4CE627BC5F6E34A1345D41941FDCC6((ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 *)(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 *)(&___info0), (float)(1.0f), /*hidden argument*/NULL); // return; return; } IL_0044: { // m_Tween = Start(info); ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 L_5 = ___info0; RuntimeObject* L_6; L_6 = (( RuntimeObject* (*) (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); __this->set_m_Tween_1(L_6); // m_CoroutineContainer.StartCoroutine(m_Tween); MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_7 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); RuntimeObject* L_8 = (RuntimeObject*)__this->get_m_Tween_1(); NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7); Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_9; L_9 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7, (RuntimeObject*)L_8, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StopTween() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StopTween_mF65C63AA3C8FD8762A7B8D89ED75269BD58659AC_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, const RuntimeMethod* method) { { // if (m_Tween != null) RuntimeObject* L_0 = (RuntimeObject*)__this->get_m_Tween_1(); if (!L_0) { goto IL_0020; } } { // m_CoroutineContainer.StopCoroutine(m_Tween); MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_1 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); RuntimeObject* L_2 = (RuntimeObject*)__this->get_m_Tween_1(); NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1); MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1, (RuntimeObject*)L_2, /*hidden argument*/NULL); // m_Tween = null; __this->set_m_Tween_1((RuntimeObject*)NULL); } IL_0020: { // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_mBF1550542F6C3B60A2B17D073075F0502BD2E5AD_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __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.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Start(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TweenRunner_1_Start_m888375722375887F4EAA7B28502CB37595BEA876_gshared (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___tweenInfo0, const RuntimeMethod* method) { { U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 * L_0 = (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 * L_1 = (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *)L_0; FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 L_2 = ___tweenInfo0; NullCheck(L_1); L_1->set_tweenInfo_2(L_2); return (RuntimeObject*)L_1; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Init(UnityEngine.MonoBehaviour) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_Init_mDBA4ABFF50732BDC4F3B367DD80840325CD893E2_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___coroutineContainer0, const RuntimeMethod* method) { { // m_CoroutineContainer = coroutineContainer; MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = ___coroutineContainer0; __this->set_m_CoroutineContainer_0(L_0); // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StartTween(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_m09DC67B7A264102E3C1B318979F603F9E5B1C05B_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___info0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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*)&_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7); s_Il2CppMethodInitialized = true; } { // if (m_CoroutineContainer == null) MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { // Debug.LogWarning("Coroutine container not configured... did you forget to call Init?"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7((RuntimeObject *)_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7, /*hidden argument*/NULL); // return; return; } IL_0019: { // StopTween(); NullCheck((TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *)__this); (( void (*) (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); // if (!m_CoroutineContainer.gameObject.activeInHierarchy) MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_2 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); NullCheck((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2, /*hidden argument*/NULL); NullCheck((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3); bool L_4; L_4 = GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0044; } } { // info.TweenValue(1.0f); FloatTween_TweenValue_mF21AE3A616B020B1D351E237D1F3145B508ACB11((FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 *)(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 *)(&___info0), (float)(1.0f), /*hidden argument*/NULL); // return; return; } IL_0044: { // m_Tween = Start(info); FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 L_5 = ___info0; RuntimeObject* L_6; L_6 = (( RuntimeObject* (*) (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); __this->set_m_Tween_1(L_6); // m_CoroutineContainer.StartCoroutine(m_Tween); MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_7 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); RuntimeObject* L_8 = (RuntimeObject*)__this->get_m_Tween_1(); NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7); Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_9; L_9 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7, (RuntimeObject*)L_8, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StopTween() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StopTween_mE31B4433E3CB227FF85C4E05730EB271D541B8A4_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, const RuntimeMethod* method) { { // if (m_Tween != null) RuntimeObject* L_0 = (RuntimeObject*)__this->get_m_Tween_1(); if (!L_0) { goto IL_0020; } } { // m_CoroutineContainer.StopCoroutine(m_Tween); MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_1 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0(); RuntimeObject* L_2 = (RuntimeObject*)__this->get_m_Tween_1(); NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1); MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1, (RuntimeObject*)L_2, /*hidden argument*/NULL); // m_Tween = null; __this->set_m_Tween_1((RuntimeObject*)NULL); } IL_0020: { // } return; } } // System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_m926D76D1F26971585F424277168031854039B194_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __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 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<UnityEngine.Color>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m5529C0F3FFF9E3B541FD5C0239931C2575237973_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __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.Color>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_mEC0F63D2F925ADACDD0D09B87C83E28BF13DDD5F_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___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) (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , 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< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::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*, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Color>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m769BC6D74C17069B97AA096698E2A1072F478C20_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_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.Color>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m6E8C5B9F56F1C10C6DF482F1DC1E3CFFBC5FF5F5_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __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`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mF26A01600BF18A3051372F4AA91E74AD1F557A12_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __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.Vector2>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m8C06062E095F203A1291F3CAB67A40EB89DF3712_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , 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< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___arg00); else GenericVirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___arg00); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00); else VirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::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*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod); } } } } } // System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::BeginInvoke(T0,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mF0799ACC3D5BF95C48D11D03FFEDE24F53C00475_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___arg00, 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, &___arg00); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m02ED2BCB3DB958F9E000563E77EC2BCA9E5659C4_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __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.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m55B3D17A5D50746ED6618952C2C745FB5A73BAA7_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __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.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m85ADA80CA03B5922F5B656382495EFED45465B72_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___call0, const RuntimeMethod* method) { { UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *)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.Boolean>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m8FD377ED71674BFC261CF0244A416C5C89AFF93D_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___call0, const RuntimeMethod* method) { { UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * 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_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * 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.Boolean>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m4737379F2E23EA022A5577626A9B77BC652C6C81_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __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.Boolean>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m85C211C6A8878EB2C829C518B2E2825592A6BAD2_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __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_t3C3B0B0B930948588A189C18F589C65343D49493 * L_2 = (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *, 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.Boolean>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_mB08C5D84E6AF7F4ED076E863ABC8924F3683531F_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_0 = ___action0; InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_1 = (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *)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.Boolean>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m93A9A80D13EE147EB2805A92EFD48453AF727D7F_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, bool ___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_t3C3B0B0B930948588A189C18F589C65343D49493 * 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_t3C3B0B0B930948588A189C18F589C65343D49493 *)((InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_6 = V_2; bool L_7 = ___arg00; NullCheck((InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_6); VirtActionInvoker1< bool >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1) */, (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_6, (bool)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(); bool L_21 = ___arg00; bool 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<UnityEngine.Color>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m632B1AC6010416860C58BFFD4788D8A11AEEB089_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __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<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m142F8EC4F0B95BE4817D1B8BAB5311BF82761B7B_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___call0, const RuntimeMethod* method) { { UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *)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<UnityEngine.Color>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3324210C9047391B2DBB94831C131C6111A43128_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___call0, const RuntimeMethod* method) { { UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * 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_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * 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<UnityEngine.Color>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m87D815FEE9AA0E17B7B827751412B54C5BB32B60_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __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<UnityEngine.Color>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m5835ECDAF9B756B926230F6D6C9E10F55C02E581_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __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_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_2 = (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *, 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<UnityEngine.Color>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m8A50FC09BAF3824EA8CE8A51E5EE425D06B1CA60_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_0 = ___action0; InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_1 = (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *)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<UnityEngine.Color>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m2C3D89FA16884071FFCCB2A7CE61A84C80F170F5_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___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_t62804E45EDA037DAA4B294959796F919EDEBA47D * 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_t62804E45EDA037DAA4B294959796F919EDEBA47D *)((InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_6 = V_2; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_7 = ___arg00; NullCheck((InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_6); VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(T1) */, (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_6, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 )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(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_21 = ___arg00; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_22 = (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 )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.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`1<System.Single>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m246DC0A35C4C4D26AD4DCE093E231B72C66C86ED_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __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.Single>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mA73838FBF3836695F5183B32B797E9499BA5E59C_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___call0, const RuntimeMethod* method) { { UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *)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.Single>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3EA4FA20F6DE6E6FC738060875193A99E19AD1C3_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___call0, const RuntimeMethod* method) { { UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * 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_t50101DC7058B3235A520FF57E827D51694843FBB * 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.Single>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m0622108A7CD81D5EF2A59382C769DC733EF3530F_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __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.Single>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m67C17B30C677E6D59E0477957BC1B3645C39EE0C_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __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_t13EC6185325262950E00B739E096E4B705195690 * L_2 = (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *, 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.Single>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m40926337FC4AF792D319B9B4879DB2A5A8F723BC_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_0 = ___action0; InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_1 = (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *)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.Single>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m1DA4CADD93DA296D31E00A263219A99A9E0AFB0E_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, float ___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_t13EC6185325262950E00B739E096E4B705195690 * 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_t13EC6185325262950E00B739E096E4B705195690 *)((InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_6 = V_2; float L_7 = ___arg00; NullCheck((InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_6); VirtActionInvoker1< float >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1) */, (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_6, (float)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(); float L_21 = ___arg00; float 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<UnityEngine.Vector2>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mF2353BD6855BD9E925E30E1CD4BC8582182DE0C7_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __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<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m69EA39B3DD1F41AAE09CE783C7D03AF61BA91E6B_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___call0, const RuntimeMethod* method) { { UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_0 = ___call0; BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1; L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *)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<UnityEngine.Vector2>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m4D54629C431821D2153C7E23584EDD379051B9DE_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___call0, const RuntimeMethod* method) { { UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * 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_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * 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<UnityEngine.Vector2>::FindMethod_Impl(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m8C7040459D38C21B6CA252658570FF207DFD5634_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __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<UnityEngine.Vector2>::GetDelegate(System.Object,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m1443B62E96235B67C0275343AE1E00E5F456E82F_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __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_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_2 = (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)); (( void (*) (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *, 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<UnityEngine.Vector2>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m46723BEB228E805D70546FE0076C2F7B923334BE_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___action0, const RuntimeMethod* method) { BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL; { UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_0 = ___action0; InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_1 = (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)); (( void (*) (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *)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<UnityEngine.Vector2>::Invoke(T0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_mB4A40E66B8302949068CCFA2E3E1C15F625EA1CD_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * 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_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)((InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_4 = V_2; V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_5 = V_3; if (!L_5) { goto IL_002f; } } { InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_6 = V_2; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = ___arg00; NullCheck((InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_6); VirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(T1) */, (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_6, (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 )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(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_21 = ___arg00; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_22 = (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 )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`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 // T UnityEngine.Rendering.UnsafeGenericPool`1<System.Object>::Get() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnsafeGenericPool_1_Get_mBF0FFB5E1BAA70AD25FC7C72C7137FBCA6DF49EF_gshared (const RuntimeMethod* method) { { // public static T Get() => s_Pool.Get(); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * L_0 = ((UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_Pool_0(); NullCheck((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0); RuntimeObject * L_1; L_1 = (( RuntimeObject * (*) (ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return (RuntimeObject *)L_1; } } // UnityEngine.Rendering.ObjectPool`1/PooledObject<T> UnityEngine.Rendering.UnsafeGenericPool`1<System.Object>::Get(T&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B UnsafeGenericPool_1_Get_m93AAE057F47DFBF320DBD60CF286D696CA610B70_gshared (RuntimeObject ** ___value0, const RuntimeMethod* method) { { // public static ObjectPool<T>.PooledObject Get(out T value) => s_Pool.Get(out value); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * L_0 = ((UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_Pool_0(); RuntimeObject ** L_1 = ___value0; NullCheck((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0); PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B L_2; L_2 = (( PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B (*) (ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *, RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0, (RuntimeObject **)(RuntimeObject **)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (PooledObject_t294E66E0DA92B6A0CFFEFFBAC29EF7DDD33B029B )L_2; } } // System.Void UnityEngine.Rendering.UnsafeGenericPool`1<System.Object>::Release(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeGenericPool_1_Release_m67DBFAB6356295B86BF245D714A37FB3DFA771AD_gshared (RuntimeObject * ___toRelease0, const RuntimeMethod* method) { { // public static void Release(T toRelease) => s_Pool.Release(toRelease); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * L_0 = ((UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_Pool_0(); RuntimeObject * L_1 = ___toRelease0; NullCheck((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0); (( void (*) (ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return; } } // System.Void UnityEngine.Rendering.UnsafeGenericPool`1<System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeGenericPool_1__cctor_m21622EF59A348BFE8203A41FFA8A186C9D6C2F8B_gshared (const RuntimeMethod* method) { { // static readonly ObjectPool<T> s_Pool = new ObjectPool<T>(null, null, false); ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB * L_0 = (ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)); (( void (*) (ObjectPool_1_tBB6FBF1657EC6C5E6DB68AD5E2436CE7B5F59BAB *, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_0, (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)NULL, (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)NULL, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ((UnsafeGenericPool_1_tE9BB1781508B7B95372791B24A5247D7BC5D32FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_Pool_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.UnwrapPromise`1<System.Object>::.ctor(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1__ctor_m27C871170344F7F1F5A18810EE70637F85418EB2_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___outerTask0, bool ___lookForOce1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD739176628254B1DE83BD6E2A756EC98E1168850); s_Il2CppMethodInitialized = true; } { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = ___outerTask0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_CreationOptions_mFFFB200145023232580498A32BCEC3263F915E16((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (RuntimeObject *)NULL, (int32_t)((int32_t)((int32_t)L_1&(int32_t)4)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); bool L_2 = ___lookForOce1; __this->set__lookForOce_26(L_2); __this->set__state_25((uint8_t)0); bool L_3; L_3 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_3) { goto IL_0037; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); int32_t L_4; L_4 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m3A018DC27992C4559B10283C06CC11513825898A((int32_t)0, (int32_t)L_4, (String_t*)_stringLiteralD739176628254B1DE83BD6E2A756EC98E1168850, (uint64_t)((int64_t)((int64_t)0)), /*hidden argument*/NULL); } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_5 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_5) { goto IL_0045; } } { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_6; L_6 = Task_AddToActiveTasks_m29D7B0C1AD029D86736A92EC7E36BE87209748FD((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); } IL_0045: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_7 = ___outerTask0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7); bool L_8; L_8 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0055; } } { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___outerTask0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); (( void (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return; } IL_0055: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_10 = ___outerTask0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_10); Task_AddCompletionAction_mE1E799EDCDFA115D1FAC40C8A5AA07403C1289F5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_10, (RuntimeObject*)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.UnwrapPromise`1<System.Object>::Invoke(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1_Invoke_mD7350B8D8D7375407C0F6800335CFDF21AB51B44_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___completingTask0, 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; } StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets; { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * L_0; L_0 = Task_get_CurrentStackGuard_m6DBCD68B1A6677D6DB6D7E2921400209A71D91A4(/*hidden argument*/NULL); V_0 = (StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D *)L_0; StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * L_1 = V_0; NullCheck((StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D *)L_1); bool L_2; L_2 = StackGuard_TryBeginInliningScope_m663FAF52A48EEE22EAE1DFA69E167AF82F090AAF((StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } IL_000e: try { // begin try (depth: 1) Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3 = ___completingTask0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); (( void (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); IL2CPP_LEAVE(0x25, FINALLY_0017); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 1) StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * L_4 = V_0; NullCheck((StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D *)L_4); StackGuard_EndInliningScope_m4EA0F5072CB4F1BC6C131A998DF50AB8E5546957((StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D *)L_4, /*hidden argument*/NULL); IL2CPP_END_FINALLY(23) } // end finally (depth: 1) IL2CPP_CLEANUP(23) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x25, IL_0025) } IL_001e: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_5 = ___completingTask0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); (( void (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); } IL_0025: { return; } } // System.Void System.Threading.Tasks.UnwrapPromise`1<System.Object>::InvokeCore(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1_InvokeCore_m11AF9FDE5DF52A54822F2F34923844E3AE865428_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___completingTask0, const RuntimeMethod* method) { uint8_t V_0 = 0x0; { uint8_t L_0 = (uint8_t)__this->get__state_25(); V_0 = (uint8_t)L_0; uint8_t L_1 = V_0; if (!L_1) { goto IL_000f; } } { uint8_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0017; } } { return; } IL_000f: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3 = ___completingTask0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); (( void (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return; } IL_0017: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_4 = ___completingTask0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); bool L_5; L_5 = (( bool (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_4, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set__state_25((uint8_t)2); return; } } // System.Void System.Threading.Tasks.UnwrapPromise`1<System.Object>::InvokeCoreAsync(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1_InvokeCoreAsync_mAA0C1A4FFC0B9B3FD59C45EE5F6F8E73AAEE6606_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___completingTask0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * G_B2_0 = NULL; WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * G_B1_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * L_0 = ((U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))->get_U3CU3E9__8_0_1(); WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * L_1 = (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 *)L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001f; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327 * L_2 = ((U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))->get_U3CU3E9_0(); WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * L_3 = (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 *)il2cpp_codegen_object_new(WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var); WaitCallback__ctor_m50EFFE5096DF1DE733EA9895CEEC8EB6F142D5D5(L_3, (RuntimeObject *)L_2, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)), /*hidden argument*/NULL); WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * L_4 = (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 *)L_3; ((U3CU3Ec_tC483E90A40B724543C6F8020CC93A42AEC30A327_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)))->set_U3CU3E9__8_0_1(L_4); G_B2_0 = L_4; } IL_001f: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_5 = ___completingTask0; Tuple_2_tAF490C903E3A79B279377D8C4ADD32E5DD367F2C * L_6; L_6 = (( Tuple_2_tAF490C903E3A79B279377D8C4ADD32E5DD367F2C * (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); bool L_7; L_7 = ThreadPool_UnsafeQueueUserWorkItem_m9B9388DD623D33685D415D639455591D4DD967C6((WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 *)G_B2_0, (RuntimeObject *)L_6, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.UnwrapPromise`1<System.Object>::ProcessCompletedOuterTask(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1_ProcessCompletedOuterTask_mAE8077349DF33993A048345C823BF53D7CAF6353_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Result_m57166DE3DB3CD426F6F13A3DBB97503E85A12477_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA * V_1 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B5_0 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B4_0 = NULL; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * G_B6_0 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B6_1 = NULL; { __this->set__state_25((uint8_t)1); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0); int32_t L_1; L_1 = Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)5))) { goto IL_0027; } } { int32_t L_3 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)6))) <= ((uint32_t)1)))) { goto IL_004a; } } { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_4 = ___task0; bool L_5 = (bool)__this->get__lookForOce_26(); NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); bool L_6; L_6 = (( bool (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_4, (bool)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0027: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_7 = ___task0; V_1 = (Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA *)((Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA *)IsInst((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9))); Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA * L_8 = V_1; G_B4_0 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(__this)); if (L_8) { G_B5_0 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(__this)); goto IL_003f; } } { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_9 = ___task0; NullCheck((Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 *)((Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 *)Castclass((RuntimeObject*)L_9, Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_il2cpp_TypeInfo_var))); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_10; L_10 = Task_1_get_Result_m57166DE3DB3CD426F6F13A3DBB97503E85A12477((Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 *)((Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284 *)Castclass((RuntimeObject*)L_9, Task_1_t24E932728D4BE67BFA41487F43AE4FAEBBAC7284_il2cpp_TypeInfo_var)), /*hidden argument*/Task_1_get_Result_m57166DE3DB3CD426F6F13A3DBB97503E85A12477_RuntimeMethod_var); G_B6_0 = L_10; G_B6_1 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(G_B4_0)); goto IL_0045; } IL_003f: { Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA * L_11 = V_1; NullCheck((Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA *)L_11); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_12; L_12 = (( Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * (*) (Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Task_1_t4A805773480425D0A659D93F81B4A3568D8C50CA *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); G_B6_0 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)(L_12)); G_B6_1 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(G_B5_0)); } IL_0045: { NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)G_B6_1); (( void (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)G_B6_1, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)G_B6_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); } IL_004a: { return; } } // System.Boolean System.Threading.Tasks.UnwrapPromise`1<System.Object>::TrySetFromTask(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnwrapPromise_1_TrySetFromTask_m2EB07C6E2580C0C5AF6CE6D70C65B345D27EFD96_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, bool ___lookForOce1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_m50CCE73BA6E5F7A70E98B4609F8C502AB185317F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Item_m9CC93AE940BF7F2FF355CADB19E2FBC2B3774BE2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * V_2 = NULL; ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * V_3 = NULL; OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * V_4 = NULL; Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * V_5 = NULL; RuntimeObject * V_6 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B17_0 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B16_0 = NULL; RuntimeObject * G_B18_0 = NULL; UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * G_B18_1 = NULL; { bool L_0; L_0 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_0) { goto IL_0014; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); int32_t L_1; L_1 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationRelation_m02292CC8909AD62A9B3292C224943E396AC1821E((int32_t)1, (int32_t)L_1, (int32_t)1, /*hidden argument*/NULL); } IL_0014: { V_0 = (bool)0; Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2); int32_t L_3; L_3 = Task_get_Status_m322B3FEDAED081C1EA55F6E2922007475E7CAAED((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_2, /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)5))) { case 0: { goto IL_0097; } case 1: { goto IL_0036; } case 2: { goto IL_004e; } } } { goto IL_00e3; } IL_0036: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_5 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_5); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_6; L_6 = Task_get_CancellationToken_m95864774C9D967684A3BE04AC9A1F80874B19CC1((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_5, /*hidden argument*/NULL); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_7 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7); ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * L_8; L_8 = Task_GetCancellationExceptionDispatchInfo_mA814E950BDF6926C765498C6EBD4BD7AEC9049F8((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7, /*hidden argument*/NULL); NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_9; L_9 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_6, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); V_0 = (bool)L_9; goto IL_00e3; } IL_004e: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_10 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_10); ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * L_11; L_11 = Task_GetExceptionDispatchInfos_mA9149E4C9DDC833EE7BA35D4B0DB948709A77403((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_10, /*hidden argument*/NULL); V_2 = (ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *)L_11; bool L_12 = ___lookForOce1; if (!L_12) { goto IL_008d; } } { ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * L_13 = V_2; NullCheck((ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *)L_13); int32_t L_14; L_14 = ReadOnlyCollection_1_get_Count_m50CCE73BA6E5F7A70E98B4609F8C502AB185317F((ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *)L_13, /*hidden argument*/ReadOnlyCollection_1_get_Count_m50CCE73BA6E5F7A70E98B4609F8C502AB185317F_RuntimeMethod_var); if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_008d; } } { ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * L_15 = V_2; NullCheck((ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *)L_15); ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * L_16; L_16 = ReadOnlyCollection_1_get_Item_m9CC93AE940BF7F2FF355CADB19E2FBC2B3774BE2((ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 *)L_15, (int32_t)0, /*hidden argument*/ReadOnlyCollection_1_get_Item_m9CC93AE940BF7F2FF355CADB19E2FBC2B3774BE2_RuntimeMethod_var); ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * L_17 = (ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 *)L_16; V_3 = (ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 *)L_17; if (!L_17) { goto IL_008d; } } { ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * L_18 = V_3; NullCheck((ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 *)L_18); Exception_t * L_19; L_19 = ExceptionDispatchInfo_get_SourceException_m461A8748D61FCC7EF8D71D2784D851B0523B9B30_inline((ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 *)L_18, /*hidden argument*/NULL); OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_20 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)IsInst((RuntimeObject*)L_19, OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var)); V_4 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_20; if (!L_20) { goto IL_008d; } } { OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_21 = V_4; NullCheck((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_21); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_22; L_22 = OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)L_21, /*hidden argument*/NULL); ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * L_23 = V_3; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_24; L_24 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_22, (RuntimeObject *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); V_0 = (bool)L_24; goto IL_00e3; } IL_008d: { ReadOnlyCollection_1_tE4F4AF26C53FE635F7A2ABDA686B166581386E80 * L_25 = V_2; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_26; L_26 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_0 = (bool)L_26; goto IL_00e3; } IL_0097: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_27 = ___task0; V_5 = (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)IsInst((RuntimeObject*)L_27, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14))); bool L_28; L_28 = AsyncCausalityTracer_get_LoggingOn_mE0A03E121425371B1D1B65640172137C3B8EEA15(/*hidden argument*/NULL); if (!L_28) { goto IL_00b3; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); int32_t L_29; L_29 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m0C6FCD513830A060B436A11137CE4C7B114F26FC((int32_t)0, (int32_t)L_29, (int32_t)1, /*hidden argument*/NULL); } IL_00b3: { IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); bool L_30 = ((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields*)il2cpp_codegen_static_fields_for(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_30) { goto IL_00c5; } } { NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this); int32_t L_31; L_31 = Task_get_Id_m34DAC27D91939B78DCD73A26085505A0B4D7235C((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_m04918871919D56DC087D50937093E8FA992CAE3F((int32_t)L_31, /*hidden argument*/NULL); } IL_00c5: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_32 = V_5; G_B16_0 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(__this)); if (L_32) { G_B17_0 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(__this)); goto IL_00d6; } } { il2cpp_codegen_initobj((&V_6), sizeof(RuntimeObject *)); RuntimeObject * L_33 = V_6; G_B18_0 = L_33; G_B18_1 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(G_B16_0)); goto IL_00dd; } IL_00d6: { Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_34 = V_5; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_34); RuntimeObject * L_35; L_35 = (( RuntimeObject * (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)L_34, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); G_B18_0 = L_35; G_B18_1 = ((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)(G_B17_0)); } IL_00dd: { NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)G_B18_1); bool L_36; L_36 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)G_B18_1, (RuntimeObject *)G_B18_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); V_0 = (bool)L_36; } IL_00e3: { bool L_37 = V_0; return (bool)L_37; } } // System.Void System.Threading.Tasks.UnwrapPromise`1<System.Object>::ProcessInnerTask(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnwrapPromise_1_ProcessInnerTask_m8204D5A9CFE2E5CB8AE3A8D341BAF9BE7F183FE2_gshared (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 * __this, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, const RuntimeMethod* method) { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0; memset((&V_0), 0, sizeof(V_0)); { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_0 = ___task0; if (L_0) { goto IL_001b; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = V_0; NullCheck((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this); bool L_2; L_2 = (( bool (*) (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 *)__this, (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); __this->set__state_25((uint8_t)2); return; } IL_001b: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_3 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3); bool L_4; L_4 = Task_get_IsCompleted_m7EF73EE6C4F400997345371FFB10137D8E9B4E1E((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0034; } } { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_5 = ___task0; NullCheck((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this); bool L_6; L_6 = (( bool (*) (UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((UnwrapPromise_1_t796FCE75A82CA4AEBFA954738506694F736CF378 *)__this, (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_5, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set__state_25((uint8_t)2); return; } IL_0034: { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_7 = ___task0; NullCheck((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7); Task_AddCompletionAction_mE1E799EDCDFA115D1FAC40C8A5AA07403C1289F5((Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *)L_7, (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.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m9A7B7A7031418C73CFBBAF27D337EFF69BC589AA_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m9A7B7A7031418C73CFBBAF27D337EFF69BC589AA_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 ValueCollection_GetEnumerator_m9AC2C31C8484A4A1A173F0978766D9F1CCC09097_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB((&L_1), (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m1C1206BF2A67DD45177C21D7F0998B6CDC9FEF4B_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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*)&ValueCollection_CopyTo_m1C1206BF2A67DD45177C21D7F0998B6CDC9FEF4B_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m1C1206BF2A67DD45177C21D7F0998B6CDC9FEF4B_RuntimeMethod_var))); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_11 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m1C1206BF2A67DD45177C21D7F0998B6CDC9FEF4B_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_14 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_16 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_17 = (EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mF0151FDC9E7A1399F037D6D533922126B65AB10B_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mB044791B89C3B94474E06CB2DBB6B1C0C2A9D7EF_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m21AD6156F6E590DB0C1C0FD8D173A0E12D52B9AF_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m21AD6156F6E590DB0C1C0FD8D173A0E12D52B9AF_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC36870187D0582746A2DB4C93D71A482EFC8A016_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC36870187D0582746A2DB4C93D71A482EFC8A016_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1EA30B4694BECC4C9D4CEF10D4CF1492D826D5E1_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1EA30B4694BECC4C9D4CEF10D4CF1492D826D5E1_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m6D6CF2341443B87C518891923F11834B31D9049E_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m02641FE570AF632D2EE03BF5ADF91EE7A775815D_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB((&L_1), (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 L_2 = (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mB084251060AA0678BF6B86A28B922F65335CE094_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mCBEA86DC87DB1F5C0857A2565DFC6F2D6DBE48AB((&L_1), (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 L_2 = (Enumerator_t325D275FD3D1A59999D48315F6C8024D9DA80271 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __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; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_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; Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_19 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 *)__this); (( void (*) (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_29 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_31 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_32 = (EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t81FB818E905AD2220A0DE842530A8487BD4012EB* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (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_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m764A4525DAF0EDCF30AA58543F0B5E2D835B437B_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m8C4115C424B9C76ACFFADC40B9DDBA374C6E810B_gshared (ValueCollection_t83828FF0295E2343CDB5B6CEEBCDE06DC9E8F151 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC * L_0 = (Dictionary_2_t566A209E736949D0B3724EC641026283478A9CBC *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE ValueCollection_GetEnumerator_mE341C9F571D357B99C6263388DA500B7DA5378DC_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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*)&ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var))); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_11 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_14 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_16 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_17 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m3A6480A92C53F9F10A69F264ADBE59689171C16C_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mA9394B10CF2FA77D51848624487B80E98CE70E67_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m6DFFBF6521DC0FE2335BF47FD5644C3A4749DD26_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mFD822DDDB171CC6F877FA7AE541FE3E0AB074EFD_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_2 = (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m0537D5C80D7040F58779A2F999A9D514BB9813F8_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_2 = (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __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; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_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; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_19 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *)__this); (( void (*) (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_29 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_31 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_32 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (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_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_mDD08F85D750A4C3BE7F9955045055ECE8E5F95BA_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.Guid,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m844E7D05C891D0F6ADCF5FA367AD929983928EF5_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m844E7D05C891D0F6ADCF5FA367AD929983928EF5_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 ValueCollection_GetEnumerator_mB5AB142280C81370F0EA2893F088434A453E8D7E_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92((&L_1), (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m327DD62959332BC99B7C1FF957ABB36AAAAB1DC5_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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*)&ValueCollection_CopyTo_m327DD62959332BC99B7C1FF957ABB36AAAAB1DC5_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m327DD62959332BC99B7C1FF957ABB36AAAAB1DC5_RuntimeMethod_var))); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_11 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m327DD62959332BC99B7C1FF957ABB36AAAAB1DC5_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_14 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_16 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_17 = (EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mF02F84C66C9C9059D7B4D27838187AA7FE393B37_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m57A82A86E0C6524845999E099ADF57892F80D9FB_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m47EDCBC522FC2CFD2A565A5CBFA36C4895356848_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m47EDCBC522FC2CFD2A565A5CBFA36C4895356848_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m544416E0E15A149F0795F3310957F5D6DC2495E6_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, RuntimeObject * ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m544416E0E15A149F0795F3310957F5D6DC2495E6_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m4F6805267303716564AC210A8FC964A67B66480B_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m4F6805267303716564AC210A8FC964A67B66480B_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m7B71126124A7D8CE6B77959FAC246F3314EBA21C_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mB23B1A84E41DB226694F30DD11CF082A82D31176_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92((&L_1), (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 L_2 = (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m93451766C4175858F8A23F48D5EBF5B58F925160_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE3DEECC56795FE9F56E4EC85091B252CCA6D3B92((&L_1), (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 L_2 = (Enumerator_t3F06FACA957A4A572C82D1BD1FCD1A4600E878E0 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __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; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_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*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_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; Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_19 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 *)__this); (( void (*) (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_29 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_31 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_32 = (EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t594BD3E1FDBAA69AFBD261D71312D0BB1DA6366B* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (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_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_mC559D3CB019163FE9CBB333EB44A28FAF6CD9CB4_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m376BBE3695429DE85B807431F252FE7FC8E9032C_gshared (ValueCollection_tE4DB1E879CE94FE56A80EA83884B246819CB9778 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB * L_0 = (Dictionary_2_t68FA25B39EC8179DDB6C36003288B86442B82ECB *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m19207EEE0E72F26ACEAE3E62A25EF29A4863353A_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m19207EEE0E72F26ACEAE3E62A25EF29A4863353A_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF ValueCollection_GetEnumerator_m40E458FDD2E467A0283AAA2E04F7550AB5708854_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1((&L_1), (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m947413C62F14FBE03F5243F73FBECB790DC5964B_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* V_1 = NULL; int32_t V_2 = 0; { XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* 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*)&ValueCollection_CopyTo_m947413C62F14FBE03F5243F73FBECB790DC5964B_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m947413C62F14FBE03F5243F73FBECB790DC5964B_RuntimeMethod_var))); } IL_002e: { XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_11 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m947413C62F14FBE03F5243F73FBECB790DC5964B_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_14 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_16 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_17 = (EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_26 = (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // 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, 2)->methodPointer)((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m32C9256E553319AF14DB871CA42A3B4E2F1F9CBA_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mB7F714F6650B6F41AF4FAE3F67B5F53263CA5E95_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mB7F714F6650B6F41AF4FAE3F67B5F53263CA5E95_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m982FA239C06F8E8A04923CC8974760A3C73D95A6_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m982FA239C06F8E8A04923CC8974760A3C73D95A6_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m6F76D814A553C3EB330DFEA0D028D934EF118C50_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m6F76D814A553C3EB330DFEA0D028D934EF118C50_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m046D1D25FAB12516D01F9841AE081186DE138052_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___item0, const RuntimeMethod* method) { { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_1 = ___item0; NullCheck((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m6C416039F8131100137422E13BD63F3BFF6E81C9_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1((&L_1), (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF L_2 = (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mB6E4F99ED75E5933ED141085718558FA28A0442A_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m07D19F0B9C8E8F5FC7A84C8A4FF5F96D64535FF1((&L_1), (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF L_2 = (Enumerator_t1C2680508D3BD8602A13F50A93E321AD44AF8CEF )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __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; } XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_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; Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_19 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*)((XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_23 = V_0; if (!L_23) { goto IL_0096; } } { XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C *)__this); (( void (*) (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C *, XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C *)__this, (XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_29 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_31 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_32 = (EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t84A4059B1323E446642888BDE95E4DF83F62F322* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_41 = (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_42 = (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (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_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m4DABC19A1AE08A844223769EB9AAF9EA5C208F6A_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m0543529DA9EE6D783868E985D16D9EC90DB638C0_gshared (ValueCollection_tF53EAC075C536C6BBEDD4AF0E2FC653DF9EE866C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF * L_0 = (Dictionary_2_t1D971BA151CCF2A891990C13C7561FEC253BC7CF *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mBEEB9F6D2AB93D5347F5DF52274AD574D6897108_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_mBEEB9F6D2AB93D5347F5DF52274AD574D6897108_RuntimeMethod_var))); } IL_0014: { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 ValueCollection_GetEnumerator_mDE7E6FB170D9915FC061271EC78E01353844C506_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE((&L_1), (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m3786E0DC1833570C9FF5EE8C2715148B3973667A_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* V_1 = NULL; int32_t V_2 = 0; { XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* 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*)&ValueCollection_CopyTo_m3786E0DC1833570C9FF5EE8C2715148B3973667A_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m3786E0DC1833570C9FF5EE8C2715148B3973667A_RuntimeMethod_var))); } IL_002e: { XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_11 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m3786E0DC1833570C9FF5EE8C2715148B3973667A_RuntimeMethod_var))); } IL_004b: { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_14 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_16 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_17 = (EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_26 = (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // 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, 2)->methodPointer)((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m5499C7BA2B0901C736096B6C32657B7F7E1ED651_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m87BEE064947D6BBE168831D970101BB2C9A5ACE3_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m87BEE064947D6BBE168831D970101BB2C9A5ACE3_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m46448EE0D6B8CDD6FDFCFA059F14F483F0573386_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m46448EE0D6B8CDD6FDFCFA059F14F483F0573386_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0AD55A9ACFC6C7E72395E06370615B9D3F721F72_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0AD55A9ACFC6C7E72395E06370615B9D3F721F72_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m78D07054DD8E544992402B6A299D78AB03C1E2CA_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___item0, const RuntimeMethod* method) { { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_1 = ___item0; NullCheck((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mC0A4E0D5F7B140D0A8AE5DC1A51E3F74F4F304F1_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE((&L_1), (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 L_2 = (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m6FBF88A3EE40A6ED75E10D13B8459703AFCA3A68_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD30DDDDD554E4F48B0F3463EEC72E963FC6CC2CE((&L_1), (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 L_2 = (Enumerator_tE481EC5E0FEE4EC0AC199DBADC2A46214803FD12 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __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; } XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_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; Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_19 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*)((XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_23 = V_0; if (!L_23) { goto IL_0096; } } { XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 *)__this); (( void (*) (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 *, XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 *)__this, (XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_29 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_31 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_32 = (EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tCD8BDA5B2A67DEE8CEE6A3807AC3D344EE81C341* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_41 = (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_42 = (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (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_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m6797BF31F605C7E36A2B5E96A242D5B06B12B1AA_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_mA8529B0A1E029FD8E8E1AB1BE1C54A2685F62662_gshared (ValueCollection_t81F32731B188197DB536DAA1C51819F2ABAC35C4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 * L_0 = (Dictionary_2_tBD3577D7455E9C9FDAB004AF818DFD67809849A3 *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m8913600B23FF73BCF799088F6273D9AD3A611D34_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m8913600B23FF73BCF799088F6273D9AD3A611D34_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 ValueCollection_GetEnumerator_m3AF1BEBD3FE59AF39ABBE35320997A0F670D3F12_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52((&L_1), (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m90481287360DEBE64875412B912FBDAA50AF796D_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* V_1 = NULL; int32_t V_2 = 0; { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* 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*)&ValueCollection_CopyTo_m90481287360DEBE64875412B912FBDAA50AF796D_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m90481287360DEBE64875412B912FBDAA50AF796D_RuntimeMethod_var))); } IL_002e: { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_11 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m90481287360DEBE64875412B912FBDAA50AF796D_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_14 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_16 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_17 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); bool L_26 = (bool)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (bool)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m8F3CA354CDEF92DBBF8EF13B3E5A5B33D9D696A7_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m28C34861DBEF2EE25B7C3EE8805FF09413F38D4C_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEAAF035C50899D22251ED355FAA0D6C9CD680CD5_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, bool ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEAAF035C50899D22251ED355FAA0D6C9CD680CD5_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1843A7477532DDB72182CD6CA00784DD37C2EDEE_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, bool ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1843A7477532DDB72182CD6CA00784DD37C2EDEE_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB21A458B911C5B098866D90CBA76A9FB84B16149_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB21A458B911C5B098866D90CBA76A9FB84B16149_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mAD53FA171AAB058CF4CAE001699D96F0F0294927_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, bool ___item0, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); bool L_1 = ___item0; NullCheck((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m0FC44B07080525934E2C793469065B7092AEEB64_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52((&L_1), (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 L_2 = (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m93EEA5EEC5A3E9F6F6BE67609AE3CD251BBB7891_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52((&L_1), (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 L_2 = (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __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; } BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_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; Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_19 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)((BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_23 = V_0; if (!L_23) { goto IL_0096; } } { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC *)__this); (( void (*) (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC *, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC *)__this, (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_29 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_31 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_32 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); bool L_41 = (bool)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); bool L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (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_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m2F4D71DD403D473FA3990F25CCAEE21BA25711AB_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m2E49710C91A0E3F19929447242CBE74B5FAB9D17_gshared (ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)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.Dictionary`2/ValueCollection<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m6D8B574E1F62F8D531363246A8D60C4CB232AA4E_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { 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*)&_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection__ctor_m6D8B574E1F62F8D531363246A8D60C4CB232AA4E_RuntimeMethod_var))); } IL_0014: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 ValueCollection_GetEnumerator_mBD2CE5FF0C0786A287CC76A834574197ADCEEDDB_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156((&L_1), (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 )L_1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m6B4AC01603BFBDAA2C503C016191780A0FEDBCC6_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* V_1 = NULL; int32_t V_2 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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*)&ValueCollection_CopyTo_m6B4AC01603BFBDAA2C503C016191780A0FEDBCC6_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), (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*)&ValueCollection_CopyTo_m6B4AC01603BFBDAA2C503C016191780A0FEDBCC6_RuntimeMethod_var))); } IL_002e: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_11 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_11); int32_t L_12; L_12 = (( int32_t (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); 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_12))) { goto IL_004b; } } { 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_m6B4AC01603BFBDAA2C503C016191780A0FEDBCC6_RuntimeMethod_var))); } IL_004b: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_14 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_16 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_17 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m9C27376ACE75A30397407255AF08499C5C2DC68A_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0); int32_t L_1; L_1 = (( int32_t (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mD307B9473900B453EE99A2CA17E3F973BF845EA6_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1A3372ADDF931075CF711D2D4DF47901CE8B34DA_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, int32_t ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1A3372ADDF931075CF711D2D4DF47901CE8B34DA_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m35A8A667DFD7F85B42F787C8FA60C0CCC08F246D_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, int32_t ___item0, 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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m35A8A667DFD7F85B42F787C8FA60C0CCC08F246D_RuntimeMethod_var))); } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0BD918E2104C63F093B294CF5D87CAE31A31E050_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __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*)&_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0BD918E2104C63F093B294CF5D87CAE31A31E050_RuntimeMethod_var))); } } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m106FF012A1057B9EDC2B47C8A72D21CA1D067A07_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); int32_t L_1 = ___item0; NullCheck((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0); bool L_2; L_2 = (( bool (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m38147E76F89D456576C522EAE560A750B8066B0A_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156((&L_1), (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 L_2 = (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m1A08C83B9120A11C93ED1F0C455058874D6015D2_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156((&L_1), (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 L_2 = (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 )L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __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; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* V_3 = NULL; int32_t V_4 = 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*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_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*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_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; Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_19 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_19); int32_t L_20; L_20 = (( int32_t (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_RuntimeMethod_var))); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)((Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23 = V_0; if (!L_23) { goto IL_0096; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 *)__this); (( void (*) (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (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_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_RuntimeMethod_var))); } IL_00b0: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_29 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_31 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_32 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // 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_0104; } throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (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_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_System_Collections_ICollection_CopyTo_m9E9EBEEB9063094DA84A072F4BBB929B3B293AAD_RuntimeMethod_var))); } // end catch (depth: 1) IL_0115: { return; } } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ValueCollection_System_Collections_ICollection_get_SyncRoot_m3C6AA6FA56131C65461D46FB46512F9BB2466926_gshared (ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, (RuntimeObject*)L_0); return (RuntimeObject *)L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD OperationCanceledException_get_CancellationToken_m1755384EF3D1F01B524D2B545723709D5B3487DA_inline (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * __this, const RuntimeMethod* method) { { CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = __this->get__cancellationToken_17(); 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 Exception_t * ExceptionDispatchInfo_get_SourceException_m461A8748D61FCC7EF8D71D2784D851B0523B9B30_inline (ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get_m_Exception_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m1F051D5AD610D0280CF28B8CCED1F5992B50534C_gshared_inline (TaskAwaiter_1_t0DDD39236688E641BC1BA82334634B02170172BB * __this, Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * ___task0, const RuntimeMethod* method) { { Task_1_tED731EAB7D7EFFDDCCF3DBB2843566C8B0A5C581 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mB5ADD7E7449228CDDB05F0FEFC0C6EBF9295181A_gshared_inline (TaskAwaiter_1_t55A83B1BFE72A7A4518C6654958A0B75FAA26917 * __this, Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * ___task0, const RuntimeMethod* method) { { Task_1_tD5FF1ABE58A851D9DA6514B814B72C956DDB8AAF * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m82521D2E4BA0453CD5B0AAC5C718E61FAF912AD9_gshared_inline (TaskAwaiter_1_tF064DFF375B11D4881EDB98659784DC4229B216C * __this, Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * ___task0, const RuntimeMethod* method) { { Task_1_tB6E0730C54CFC03F4471315756CF85D05B71C05F * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mF997B5520866FAC40D262A9187226C6EB759288A_gshared_inline (TaskAwaiter_1_t69B89459822B2B555FC732C4CD75E9625E73B1E2 * __this, Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * ___task0, const RuntimeMethod* method) { { Task_1_t22DDA242EA1C7046D5A9032F5D09F87CC099007B * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mACDA3EEC014894205C1C021C410D03B7546C9B91_gshared_inline (TaskAwaiter_1_t663DB33680BBFDAB44EB7A50BF65B32B50938D93 * __this, Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___task0, const RuntimeMethod* method) { { Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } 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 NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_added_m5D8DDA57FC99B1791E1E685A1307524DF46734E3_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Added_1(); return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 TrackableChanges_1_get_updated_mF311940D2CD71DEE58C73FD15EB4B479AB24FBA5_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )__this->get_m_Updated_2(); return (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DE03ED3BBD30D8C75CCED949A87B8DE4162B2_gshared_inline (TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_added_mE29D4663DA3DB7CB058D0F1DE5B93F3D4DB2D624_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Added_1(); return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 TrackableChanges_1_get_updated_mD0E5F69927C728B1138EE8E5F85FFF5734A7FC57_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 L_0 = (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )__this->get_m_Updated_2(); return (NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m1D97F8933EC726E914D9E9EDA60362239BC853D5_gshared_inline (TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_added_m5F510AA3B95A7EB6986D1CBD26CB3D9125E63B0C_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Added_1(); return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t901047647D1B0577009EA387273335B841552234 TrackableChanges_1_get_updated_m46BE9C4D82C22D932C8DC356F7ABE845B9F0E6FE_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t901047647D1B0577009EA387273335B841552234 L_0 = (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )__this->get_m_Updated_2(); return (NativeArray_1_t901047647D1B0577009EA387273335B841552234 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m287C96B382C552FE4158C67FB1B8E29C60B0C506_gshared_inline (TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_added_m10100365EBAEAE4EA0300C58DEB802F249C90B6A_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Added_1(); return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 TrackableChanges_1_get_updated_m2DEF8770C183851CFC7BFC15B73E95D148FE2F44_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 L_0 = (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )__this->get_m_Updated_2(); return (NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m9A62C1E5CE45BA830496FF2AF2F2688FAD90FE3D_gshared_inline (TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_added_m883CB0BE299D0C20D81A678CD354CF685420CA72_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Added_1(); return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 TrackableChanges_1_get_updated_m9CA28EF7F763206F6F2037802F675743A5D672CB_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 L_0 = (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )__this->get_m_Updated_2(); return (NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mBE38A6863EC0DF6C3D6596328163619CCCF6B05F_gshared_inline (TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_added_mE2DAB671C35440089855E3FA56312B779914939F_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Added_1(); return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 TrackableChanges_1_get_updated_mDD1EA7192EFEFC4A8FB5949F6F995268E940D5AC_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 L_0 = (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )__this->get_m_Updated_2(); return (NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEF24C86CF94D54D18AE8E112F4CA05CB76E8933D_gshared_inline (TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_added_mEBA03313D9F609CBFED6C642548C871B5B379C9E_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Added_1(); return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA TrackableChanges_1_get_updated_mBD290DC76278209A657F6FDBBCE2D14B2E4BD320_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA L_0 = (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )__this->get_m_Updated_2(); return (NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mEC30FED77E34A88C364F2E362FE32EC698BEB887_gshared_inline (TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_added_m0797E1DB4C52760E27051CBE6751A4980EB361AD_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Added_1(); return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E TrackableChanges_1_get_updated_m4F429D31B14F299B22C10D36710CB6D9BCCC9C40_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E L_0 = (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )__this->get_m_Updated_2(); return (NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m5AEA71BD82CC210CF004B8CC44A08383E3D582EB_gshared_inline (TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_added_mD119E1CA7E2DF0EF892FC325BA2FB8991D001898_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Added_1(); return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 TrackableChanges_1_get_updated_mF25DBAC3C0D01EF317AB076B280A9A9146D3405F_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 L_0 = (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )__this->get_m_Updated_2(); return (NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m948634C0C3C7BD7A998A406072363329879E18F0_gshared_inline (TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_added_m1C78A908CC8E8DE4C512F434D31D822E9C8BBAD2_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Added_1(); return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F TrackableChanges_1_get_updated_m8302E916BBCD4888C3A0536084B94BE17D378DDC_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F L_0 = (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )__this->get_m_Updated_2(); return (NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_m125D9D557247BB9617DD25C04BEC844F552047D3_gshared_inline (TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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 NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_added_mEFA7156931A3E6AD8ED11F5588EC70E93360CF02_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { { // public NativeArray<T> added { get { return m_Added; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Added_1(); return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 TrackableChanges_1_get_updated_m2766D496DFD049C88E7B774447402316BB771B47_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { { // public NativeArray<T> updated { get { return m_Updated; } } NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 L_0 = (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )__this->get_m_Updated_2(); return (NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 TrackableChanges_1_get_removed_mCF5DB61959C97EFB7FD0864432150198B5882D9E_gshared_inline (TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 * __this, const RuntimeMethod* method) { { // public NativeArray<TrackableId> removed { get { return m_Removed; } } NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 L_0 = (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )__this->get_m_Removed_3(); return (NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 )L_0; } } 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; } }
2287584ee077df344f275ec2d81b54214b5711dd
7b4771e86acf56523c6dd6e445ee98e1539e0f0d
/send.cpp
982b0d957b9f5ba4a4d34d5afbbf1e8c1dc3ceff
[ "MIT" ]
permissive
wiatrak2/traceroute
a19cc1d88edeb6a0422c5035ff4120e6b53130ac
a01889bcdf9ed295bd7145da7ce792a5b9d0e5ea
refs/heads/master
2021-01-18T15:53:16.832191
2017-03-28T18:20:48
2017-03-28T18:20:48
85,489,269
0
0
null
null
null
null
UTF-8
C++
false
false
1,427
cpp
/* * Wojciech Pratkowiecki nr indeksu: 281417 * Sieci Komputerowe II UWr * traceroute */ #include "send.h" /* poniższe funkcje zostały utowrzone na podstawie materiałów z wykładu */ Sender::Sender( ) { throw std::runtime_error( " Wrong Sender constructor " ); } Sender::Sender( const char* ip_addr ) { /* uzupełnianie struktury adresata */ bzero( &recipient, sizeof( recipient ) ); recipient.sin_family = AF_INET; if( inet_pton( AF_INET, ip_addr, &recipient.sin_addr ) != 1 ) throw std::runtime_error( " Converting IP address fault " ); } void Sender::send_packet( int ttl, const int& socket, int id, int seq ) { /* wysyłanie pakietu o określonych wartościach */ struct icmphdr header = create_icmphdr( id, seq ); setsockopt ( socket, IPPROTO_IP, IP_TTL, &ttl, sizeof( int ) ); ssize_t bytes_sent = sendto( socket, &header, sizeof( header ), 0, ( struct sockaddr* ) &recipient, sizeof( recipient ) ); if( bytes_sent <= 0 ) throw std::runtime_error( " Couldn't sent a packet " ); } struct icmphdr Sender::create_icmphdr ( int echo_id, int echo_seq ) { /* tworzenie struktury icmphdr */ struct icmphdr icmp_header; icmp_header.type = ICMP_ECHO; icmp_header.code = 0; icmp_header.un.echo.id = echo_id; icmp_header.un.echo.sequence = echo_seq; icmp_header.checksum = 0; icmp_header.checksum = compute_icmp_checksum ( (u_int16_t*)&icmp_header, sizeof( icmp_header ) ); return icmp_header; }
f95e768272b5845b6e114935bde5866317d65401
655a320f9dc3db9b8fe8197e97ae624053118ab6
/list_test/main.cpp
6c6f8a6edcb6551937c20e017b0ccc075caf1ccf
[]
no_license
adidos/aditest
eeb6d1d398a4662d6599e89217940c801d19cf0c
596039c7d9b4387f7ad1aa12ff1deee8d931800b
refs/heads/master
2020-05-19T08:54:12.561847
2013-10-29T15:18:15
2013-10-29T15:18:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,139
cpp
#include <iostream> using namespace std; struct mylist { mylist* next; int data; }; mylist* reverseList(mylist* pList) { mylist* pre = pList; mylist* cur = pList->next; mylist* next = NULL; while(cur != NULL) { next = cur->next; cur->next = pre; pre = cur; cur = next; } pList->next = NULL; return pre; }; mylist* mergeList(mylist* p1, mylist* p2) { if(p1 == NULL) return p2; if(p2 == NULL) return p1; mylist* rst = (p1->data < p2->data ? p1 : p2); mylist* idx1 = p1; mylist* idx2 = p2; mylist* tmp = new mylist; mylist* cur = tmp; while( idx1 != NULL && idx2 != NULL) { if(idx1->data > idx2->data) { cur->next = idx1; cur = cur->next; idx1 = idx1->next; } else { cur->next = idx2; cur = cur->next; idx2 = idx2->next; } } if(idx1 == NULL) cur->next = idx2; if(idx2 == NULL) cur->next = idx1; delete tmp; return rst; }; mylist* initList(mylist* plist, int arry[], int len) { plist->data = arry[0]; mylist* idx = plist; for(int i = 1; i < len; ++i) { mylist* tmp = new mylist(); tmp->data = arry[i]; idx->next = tmp; idx = tmp; } idx->next = NULL; return plist; }; void printList(mylist* plist) { mylist* idx = plist; while(idx != NULL) { cout << idx->data << "\t"; idx = idx->next; } cout <<endl; } int main() { int arry1[] = {0,1,2,3,4}; int arry2[] = {5,6,7,8,9}; int arry3[] = {0,2,4,6,8}; int arry4[] = {1,3,5,7,9}; int arry5[] = {1,2,6,7,9}; int arry6[] = {0,3,4,5,8}; mylist* one = initList(new mylist, arry1, 5); mylist* two = initList(new mylist, arry2, 5); mylist* three = initList(new mylist, arry3, 5); mylist* four = initList(new mylist, arry4, 5); mylist* five = initList(new mylist, arry5, 5); mylist* six = initList(new mylist, arry6, 5); printList(mergeList(one,two)); printList(mergeList(two, one)); printList(mergeList(three, four)); printList(mergeList(four, three)); printList(mergeList(five, six)); printList(mergeList(six, five)); printList(mergeList(one,three)); printList(mergeList(two,three)); printList(mergeList(four, five)); printList(mergeList(one, six)); return 0; }
1bb0a3863fc657b0d224af9ace244932c1f1a02e
9884a5a7fbbdde2d26ba728fa595358a4a785229
/ui/base/test/skia_gold_pixel_diff_unittest.cc
cac9a87365db18818dd0f885ff7e9b4ce5f9ad8f
[ "BSD-3-Clause" ]
permissive
darius-iko/chromium
3d560da5f0bf75a463d58f9a9827355e81a86090
2aa9fa878859e42e15cacf755b6fc41b85e0fa35
refs/heads/master
2022-12-31T00:07:06.483046
2020-10-29T12:48:26
2020-10-29T12:48:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,854
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/base/test/skia_gold_pixel_diff.h" #include "base/command_line.h" #include "base/files/file_util.h" #include "base/test/test_switches.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "third_party/skia/include/core/SkImageInfo.h" #include "ui/base/test/skia_gold_matching_algorithm.h" #include "ui/gfx/image/image.h" #include "ui/gfx/native_widget_types.h" using ::testing::_; using ::testing::AllOf; using ::testing::AnyNumber; using ::testing::HasSubstr; using ::testing::Property; namespace ui { namespace test { class MockSkiaGoldPixelDiff : public SkiaGoldPixelDiff { public: MockSkiaGoldPixelDiff() = default; MOCK_CONST_METHOD1(LaunchProcess, int(const base::CommandLine&)); }; class SkiaGoldPixelDiffTest : public ::testing::Test { public: SkiaGoldPixelDiffTest() { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("git-revision", "test"); CreateTestBitmap(); } ~SkiaGoldPixelDiffTest() override {} SkBitmap GetTestBitmap() { return test_bitmap_; } void CreateTestBitmap() { SkImageInfo info = SkImageInfo::Make(10, 10, SkColorType::kBGRA_8888_SkColorType, SkAlphaType::kPremul_SkAlphaType); test_bitmap_.allocPixels(info, 10 * 4); } protected: DISALLOW_COPY_AND_ASSIGN(SkiaGoldPixelDiffTest); private: SkBitmap test_bitmap_; }; TEST_F(SkiaGoldPixelDiffTest, CompareScreenshotBySkBitmap) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(3); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, BypassSkiaGoldFunctionality) { base::CommandLine::ForCurrentProcess()->AppendSwitch( "bypass-skia-gold-functionality"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(0); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, FuzzyMatching) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf( Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=image_matching_algorithm:fuzzy"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_max_different_pixels:1"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_pixel_delta_threshold:2")))))) .Times(1); mock_pixel.Init("Prefix"); FuzzySkiaGoldMatchingAlgorithm algorithm(1, 2); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap(), &algorithm); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, FuzzyMatchingWithIgnoredBorder) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf( Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=image_matching_algorithm:fuzzy"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_max_different_pixels:1"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_pixel_delta_threshold:2"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--add-test-optional-key=fuzzy_" "ignored_border_thickness:3")))))) .Times(1); mock_pixel.Init("Prefix"); FuzzySkiaGoldMatchingAlgorithm algorithm(1, 2, 3); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap(), &algorithm); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, SobelMatching) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf( Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=image_matching_algorithm:sobel"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_max_different_pixels:1"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=fuzzy_pixel_delta_threshold:2"))), Property(&base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=sobel_edge_threshold:3"))), Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--add-test-optional-key=fuzzy_" "ignored_border_thickness:4")))))) .Times(1); mock_pixel.Init("Prefix"); SobelSkiaGoldMatchingAlgorithm algorithm(1, 2, 3, 4); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap(), &algorithm); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, DefaultCorpus) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL(mock_pixel, LaunchProcess(AllOf(Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--corpus=gtest-pixeltests")))))) .Times(1); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, ExplicitCorpus) { MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL(mock_pixel, LaunchProcess(AllOf( Property(&base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--corpus=corpus")))))) .Times(1); mock_pixel.Init("Prefix", "corpus"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, DefaultCodeReviewSystem) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("gerrit-issue", "1"); cmd_line->AppendSwitchASCII("gerrit-patchset", "2"); cmd_line->AppendSwitchASCII("buildbucket-id", "3"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL(mock_pixel, LaunchProcess(AllOf(Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--crs=gerrit")))))) .Times(1); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, ExplicitCodeReviewSystem) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("gerrit-issue", "1"); cmd_line->AppendSwitchASCII("gerrit-patchset", "2"); cmd_line->AppendSwitchASCII("buildbucket-id", "3"); cmd_line->AppendSwitchASCII("code-review-system", "new-crs"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL(mock_pixel, LaunchProcess( AllOf(Property(&base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--crs=new-crs"))), Property(&base::CommandLine::GetCommandLineString, Not(HasSubstr(FILE_PATH_LITERAL("gerrit"))))))) .Times(1); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, DoNotMakeGerritCommentHasRetryLeft) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("gerrit-issue", "1"); cmd_line->AppendSwitchASCII("gerrit-patchset", "2"); cmd_line->AppendSwitchASCII("buildbucket-id", "3"); cmd_line->AppendSwitchASCII(switches::kTestLauncherRetriesLeft, "1"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf(Property( &base::CommandLine::GetCommandLineString, HasSubstr(FILE_PATH_LITERAL("--add-test-optional-key=ignore:1")))))) .Times(1); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, DoNotMakeGerritCommentForCIJob) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII(switches::kTestLauncherRetriesLeft, "0"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf(Property(&base::CommandLine::GetCommandLineString, Not(HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=ignore:1"))))))) .Times(3); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, MakeGerritCommentNoRetryLeft) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("gerrit-issue", "1"); cmd_line->AppendSwitchASCII("gerrit-patchset", "2"); cmd_line->AppendSwitchASCII("buildbucket-id", "3"); cmd_line->AppendSwitchASCII(switches::kTestLauncherRetriesLeft, "0"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf(Property(&base::CommandLine::GetCommandLineString, Not(HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=ignore:1"))))))) .Times(3); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } TEST_F(SkiaGoldPixelDiffTest, MakeGerritCommentInvalidFlag) { auto* cmd_line = base::CommandLine::ForCurrentProcess(); cmd_line->AppendSwitchASCII("gerrit-issue", "1"); cmd_line->AppendSwitchASCII("gerrit-patchset", "2"); cmd_line->AppendSwitchASCII("buildbucket-id", "3"); cmd_line->AppendSwitchASCII(switches::kTestLauncherRetriesLeft, "NotANumber"); MockSkiaGoldPixelDiff mock_pixel; EXPECT_CALL(mock_pixel, LaunchProcess(_)).Times(AnyNumber()); EXPECT_CALL( mock_pixel, LaunchProcess(AllOf(Property(&base::CommandLine::GetCommandLineString, Not(HasSubstr(FILE_PATH_LITERAL( "--add-test-optional-key=ignore:1"))))))) .Times(3); mock_pixel.Init("Prefix"); bool ret = mock_pixel.CompareScreenshot("test", GetTestBitmap()); EXPECT_TRUE(ret); } } // namespace test } // namespace ui
270ed8a50aa8ddeed87e3db2be02b4477a87fa7d
87a2896f868dc13f89ecbb629d897f0ffe8a57e6
/Code/861c.cpp
b1ab27d333c35f3d85c1ecc6fa227efcd2ee8af6
[]
no_license
sahashoo/Daily
a20a4bce60b0903fde23bea9d5244c65a9ea3928
c209cf800cbae850e2233a149d3cc8181b49fb5e
refs/heads/master
2020-04-23T04:31:13.770829
2019-02-15T20:00:34
2019-02-15T20:00:34
170,910,172
0
0
null
null
null
null
UTF-8
C++
false
false
680
cpp
///age yekam bekeshi beham is no problem ._. //vowel 'a', 'e', 'i', 'o' and 'u' #include<bits/stdc++.h> #define ld long double #define int long long #define F first #define S second #define pb push_back using namespace std; void null(){return ;} const int maxn=1e5+7,INF=3e18+9237,mod=1e9+7; int m[maxn]; bool mrk[maxn]; int32_t main(){ ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); string s,t;s="";t=""; cin>>s; m['a']=m['e']=m['i']=m['o']=m['u']=1; for(int i=0;i<s.size();i++){ if(mrk[i]){ cout<<s[i]<<" "; continue; } else cout<<s[i]; if(i+2<s.size()) if(m[s[i]]+m[s[i+1]]+m[s[i+2]]==0&&(s[i]!=s[i+1]||s[i+1]!=s[i+2]))mrk[i+1]=true; } }
404f8631a64b462a196b082926fd0849f6f7f3f0
5e11b8e634d05af2f5f26da171e51a9981fc5bb6
/my program/doubly.cpp
eddb1ece931c5186627a79308b7ae370be23e6a5
[]
no_license
shubhlpu/Data-Structure-and-Algorithm-Program-List
4e01d45afc5b6a27c08755e8eaa574d79ed00f40
cd303fbb2ccccf034a81408a4136e9d4bcf29de4
refs/heads/master
2021-01-05T00:39:58.912486
2020-02-16T03:34:09
2020-02-16T03:34:09
240,817,437
0
0
null
null
null
null
UTF-8
C++
false
false
1,129
cpp
#include<iostream> using namespace std; struct node{ node *prev; int data; node *next; }*start=NULL; void creation() { int i,d; cin>>d; cout<<"Enter element in linked list-"; for(i=0;i<d;i++) { start=new node; cin>>start->data; start->next=NULL; start->prev=NULL; } } void insertion(node *p) { while(p->next!=NULL) { p=p->next; } node *temp=new node; int e; cout<<"Enter element-"; cin>>e; temp->data=e; temp->next=NULL; p->next=temp; temp->prev=p; } int deletion(node *ptr) { if(ptr==NULL) { cout<<"List is empty-"<<endl; return 0; } int val; cin>>val; while((ptr!=NULL) && (ptr->data!=val)) { ptr=ptr->next; } if(ptr==NULL) { cout<<"Value doesn't exis"<<endl; return 0; } else if(ptr->prev==NULL) { start=start->next; delete ptr; } else { (ptr->prev)->next=ptr->next; delete ptr; } } void display(node *p) { while(p!=NULL) { cout<<p->data<<"<<===>>"; p=p->next; } cout<<"NULL"; } main() { if(start==NULL) { creation(); } display(start); }
882e87beae0f68494a4c56a34ee22a483e46808f
85e7ac745ec2b3b0fb71849630a11359d588d79f
/DSLessons/88_Merge_Sorted_Array.cpp
e5e776818ab924699a5291e97d2481c2da9395f1
[]
no_license
lhaquoc/DS
f22a927342728592f2e5399b0c9b3ef068b72523
446dbcd9b99d48414db69dfebc8f9fcbdd05a21f
refs/heads/main
2023-06-09T01:23:39.972493
2021-06-29T01:17:45
2021-06-29T01:17:45
346,310,191
0
0
null
null
null
null
UTF-8
C++
false
false
954
cpp
#include <iostream> #include <vector> using namespace std; void merge(vector<int>& ai, int ni, vector<int>& aj, int nj) { int i = ni - 1; int j = nj - 1; int k = ni + nj - 1; while (i >= 0 || j >=0) { if(i >=0 && j >= 0) { // ca i va j deu hop le if(ai[i] >= aj[j]) { ai[k--] = ai[i--]; } else { aj[k--] = aj[j--]; } } else if(i >= 0) { // chi co i hop le ai[k--] = ai[i--]; } else { // chi co j hop le aj[k--] = aj[j--]; } } } int main() { int n1 = 3; int n2 = 3; int arr1[] = {1, 2, 3, 0, 0, 0}; int arr2[] = {2, 5, 6}; vector<int> v1(arr1, arr1 + sizeof(arr1) / sizeof(int)); vector<int> v2(arr2, arr2 + sizeof(arr2) / sizeof(int)); merge(v1, n1, v2, n2); for(int i = 0; i < v1.size(); i++) { cout << v1[i] << " "; } return 0; }
323cde6c01be1616ba5cf143ff391d4e386a3016
ef820e650e48766af92694770f30d4c1e6fa7fbf
/LinkedLists/list.h
43dd80b429b38dcc4959461dc9e389a6d70517b3
[ "MIT" ]
permissive
kdungs/cpp-interview
41285488997af33afb14d03e6557dd15b8831008
e228f0d2e056959be4bf5a081c42343e884add9a
refs/heads/master
2016-09-06T04:41:20.112121
2015-03-01T18:06:42
2015-03-01T18:06:42
28,990,156
0
1
null
null
null
null
UTF-8
C++
false
false
3,655
h
#pragma once #include <memory> #include <type_traits> #include <utility> template <typename T> class List { public: List(T data, std::shared_ptr<List<T>> tail) : data_{std::move(data)}, tail_{tail} {} explicit List(T data) : List{std::move(data), nullptr} {} auto data() const -> T { return data_; } template <typename PT> auto set_data(PT&& data) -> void { data_ = data; } auto tail() -> std::shared_ptr<List<T>> { return tail_; } auto set_tail(std::shared_ptr<List<T>> tail) -> void { tail_ = tail; } private: T data_; std::shared_ptr<List<T>> tail_; }; template <typename T> using ListPtr = std::shared_ptr<List<T>>; template <typename T> auto EmptyList() -> ListPtr<T> { return ListPtr<T>{nullptr}; } template <typename T, typename... Ts> auto MakeList(T data, Ts... other) -> ListPtr<T> { return std::make_shared<List<T>>(data, other...); } template <typename T, typename FN> auto ForEach(ListPtr<T> head, FN f) -> void { if (head != nullptr) { f(head->data()); ForEach(head->tail(), f); } } template <typename T> auto Append(ListPtr<T> head, T data) -> ListPtr<T> { if (head == nullptr) { return MakeList(data); } head->set_tail(Append(head->tail(), data)); return head; } template <typename T> auto Remove(ListPtr<T> head, T data) -> ListPtr<T> { if (head->data() == data) { return head->tail(); } if (head->tail() != nullptr) { head->set_tail(Remove(head->tail(), data)); } return head; } template <typename T> auto Insert(ListPtr<T> head, T data, std::size_t position) -> ListPtr<T> { if (head == nullptr || position == 0) { return MakeList(data, head); } head->set_tail(Insert(head->tail(), data, position - 1)); return head; } template <typename T> auto Length(ListPtr<T> head) -> std::size_t { if (head == nullptr) { return 0; } return 1 + Length(head->tail()); } // map :: [a] -> (a -> b) -> [b] template <typename T, typename FN, typename RT = typename std::result_of<FN(T)>::type> auto Map(ListPtr<T> head, FN f) -> ListPtr<RT> { if (head == nullptr) { return EmptyList<RT>(); } return MakeList<RT>(f(head->data()), Map(head->tail(), f)); } // fold :: [a] -> (a -> b -> b) -> b -> b template <typename T, typename RT, typename FN> auto Fold(ListPtr<T> head, FN f, RT acc) -> RT { if (head == nullptr) { return acc; } return Fold(head->tail(), f, f(head->data(), acc)); } // filter :: [a] -> (a -> bool) -> [a] template <typename T, typename PRED> auto Filter(ListPtr<T> head, PRED p) -> ListPtr<T> { return Fold(head, [&](T x, ListPtr<T> acc) { if (p(x)) { Append(acc, x); } return acc; }, EmptyList<T>()); } template <typename T> auto RemoveDuplicates(ListPtr<T> head) -> ListPtr<T> { if (head != nullptr) { head->set_tail( Filter(head->tail(), [&](T x) { return x == head->data(); })); head->set_tail(RemoveDuplicates(head->tail())); } return head; } template <typename T> auto NthToLast(ListPtr<T> head, std::size_t n) -> ListPtr<T> { // might want to check that n is less than the size of the list if (head == nullptr) { return head; // or error (e.g. return type could be Maybe<ListPtr<T>>) } ListPtr<T> ahead = head, behind = head; for (auto i = 0u; i <= n; ++i) { ahead = ahead->tail(); } while (ahead != nullptr) { ahead = ahead->tail(); behind = behind->tail(); } return behind; } template <typename T> auto RemoveInPlace(ListPtr<T> elem) -> void { if (elem->tail() == nullptr) { elem.reset(); } else { elem->set_data(elem->tail()->data()); elem->set_tail(elem->tail()->tail()); } }
6a5a22640707ac2a913dec4cd236438e4f79a81f
b365761797ef03e2161b6e1c7b9c9dea98493602
/src/task2.cpp
048ec7be00d79b99b29ff259540a6f0d0f4c9bb2
[]
no_license
ipetrovanton/C-lab-1
3db3f7bb0b335ed17f1c8977e63296b17335917e
93e638161e684e3a5174039e4cccab7117b11b80
refs/heads/master
2020-04-09T05:53:12.853597
2018-12-05T19:16:55
2018-12-05T19:16:55
159,006,365
0
0
null
null
null
null
UTF-8
C++
false
false
415
cpp
const char * greet(int hour, int min) { if ((hour >= 0 && hour < 6) && (min >=0&& min < 60)) return "Good night!"; else if ((hour >= 6 && hour < 12) && (min >= 0 && min < 60)) return "Good morning!"; else if ((hour >=12 && hour < 18) && (min >= 0 && min < 60)) return "Good day!"; else if ((hour >= 18 && hour <=23) && (min >= 0 && min < 60)) return "Good evening!"; else return "Uncorrect time!"; }
d3de909d7a3fa95c58ca7d8bd34a5f610e4a53a7
c31951f7862c5e3ee903a718a796f366993c16b5
/src/mm/stmatch/stmatch_app_config.cpp
eacd3652cc3b546aa698f9a1786adee678458ec6
[ "Apache-2.0" ]
permissive
dkondor/fmm
1267a75a42800227f15af125b4dc9a8aa92abc50
4ba187a052efb7df1de40b874d4c976a3f2b21fa
refs/heads/master
2022-04-20T23:13:29.428193
2020-04-15T11:40:59
2020-04-15T11:40:59
255,889,353
0
0
Apache-2.0
2020-04-15T10:59:33
2020-04-15T10:59:33
null
UTF-8
C++
false
false
6,510
cpp
// // Created by Can Yang on 2020/4/1. // #include "mm/stmatch/stmatch_app_config.hpp" #include "util/debug.hpp" #include "util/util.hpp" using namespace FMM; using namespace FMM::CORE; using namespace FMM::NETWORK; using namespace FMM::MM; using namespace FMM::CONFIG; STMATCHAppConfig::STMATCHAppConfig(int argc, char **argv){ spdlog::set_pattern("[%^%l%$][%s:%-3#] %v"); if (argc==2) { std::string configfile(argv[1]); if (UTIL::check_file_extension(configfile,"xml,XML")) load_xml(configfile); else { load_arg(argc,argv); } } else { load_arg(argc,argv); } spdlog::set_level((spdlog::level::level_enum) log_level); if (!help_specified) print(); }; void STMATCHAppConfig::load_xml(const std::string &file){ SPDLOG_INFO("Start with reading stmatch xml configuration {}", file); // Create empty property tree object boost::property_tree::ptree tree; boost::property_tree::read_xml(file, tree); network_config = NetworkConfig::load_from_xml(tree); gps_config = GPSConfig::load_from_xml(tree); result_config = CONFIG::ResultConfig::load_from_xml(tree); stmatch_config = STMATCHConfig::load_from_xml(tree); log_level = tree.get("config.other.log_level",2); step = tree.get("config.other.step",100); use_omp = !(!tree.get_child_optional("config.other.use_omp")); SPDLOG_INFO("Finish with reading stmatch xml configuration"); }; void STMATCHAppConfig::load_arg(int argc, char **argv){ SPDLOG_INFO("Start reading stmatch configuration from arguments"); cxxopts::Options options("stmatch_config", "Configuration parser"); options.add_options() ("network","Network file name", cxxopts::value<std::string>()->default_value("")) ("network_id","Network id name", cxxopts::value<std::string>()->default_value("id")) ("source","Network source name", cxxopts::value<std::string>()->default_value("source")) ("target","Network target name", cxxopts::value<std::string>()->default_value("target")) ("gps","GPS file name", cxxopts::value<std::string>()->default_value("")) ("gps_id","GPS file id", cxxopts::value<std::string>()->default_value("id")) ("gps_x","GPS x name", cxxopts::value<std::string>()->default_value("x")) ("gps_y","GPS y name", cxxopts::value<std::string>()->default_value("y")) ("gps_geom","GPS file geom column name", cxxopts::value<std::string>()->default_value("geom")) ("gps_timestamp", "GPS file timestamp column name", cxxopts::value<std::string>()->default_value("timestamp")) ("k,candidates","Number of candidates", cxxopts::value<int>()->default_value("8")) ("r,radius","Search radius", cxxopts::value<double>()->default_value("300.0")) ("e,error","GPS error", cxxopts::value<double>()->default_value("50.0")) ("vmax","Maximum speed", cxxopts::value<double>()->default_value("80.0")) ("factor","Scale factor", cxxopts::value<double>()->default_value("1.5")) ("o,output","Output file name", cxxopts::value<std::string>()->default_value("")) ("m,output_fields","Output fields", cxxopts::value<std::string>()->default_value("")) ("l,log_level","Log level",cxxopts::value<int>()->default_value("2")) ("s,step","Step report",cxxopts::value<int>()->default_value("100")) ("h,help","Help information") ("gps_point","GPS point or not") ("use_omp","Use omp or not"); if (argc==1) { help_specified = true; return; } auto result = options.parse(argc, argv); network_config = NetworkConfig::load_from_arg(result); gps_config = GPSConfig::load_from_arg(result); result_config = CONFIG::ResultConfig::load_from_arg(result); stmatch_config = STMATCHConfig::load_from_arg(result); log_level = result["log_level"].as<int>(); step = result["step"].as<int>(); use_omp = result.count("use_omp")>0; if (result.count("help")>0){ help_specified = true; } SPDLOG_INFO("Finish with reading stmatch arg configuration"); }; void STMATCHAppConfig::print() const { SPDLOG_INFO("---- Print configuration ----") network_config.print(); gps_config.print(); result_config.print(); stmatch_config.print(); SPDLOG_INFO("Log level {}",UTIL::LOG_LEVESLS[log_level]) SPDLOG_INFO("Step {}",step) SPDLOG_INFO("Use omp {}",(use_omp ? "true" : "false")) SPDLOG_INFO("---- Print configuration done ----") }; void STMATCHAppConfig::print_help(){ std::cout<<"stmatch argument lists:\n"; std::cout<<"--network (required) <string>: Network file name\n"; std::cout<<"--network_id (optional) <string>: Network id name (id)\n"; std::cout<<"--source (optional) <string>: Network source name (source)\n"; std::cout<<"--target (optional) <string>: Network target name (target)\n"; std::cout<<"--gps (required) <string>: GPS file name\n"; std::cout<<"--gps_id (optional) <string>: GPS id name (id)\n"; std::cout<<"--gps_x (optional) <string>: GPS x name (x)\n"; std::cout<<"--gps_y (optional) <string>: GPS y name (y)\n"; std::cout<<"--gps_timestamp (optional) <string>: " "GPS timestamp name (timestamp)\n"; std::cout<<"--gps_geom (optional) <string>: GPS geometry name (geom)\n"; std::cout<<"-k/--candidates (optional) <int>: number of candidates (8)\n"; std::cout<<"-r/--radius (optional) <double>: search " "radius (network data unit) (300)\n"; std::cout<<"-e/--error (optional) <double>: GPS error " "(network data unit) (50)\n"; std::cout<<"-f/--factor (optional) <double>: scale factor (1.5)\n"; std::cout<<"-v/--vmax (optional) <double>: " " Maximum speed (unit: network_data_unit/s) (30)\n"; std::cout<<"-o/--output (required) <string>: Output file name\n"; std::cout<<"-m/--output_fields (optional) <string>: Output fields\n"; std::cout<<" opath,cpath,tpath,ogeom,mgeom,pgeom,\n"; std::cout<<" offset,error,spdist,tp,ep,length,all\n"; std::cout<<"--log_level (optional) <int>: log level (2)\n"; std::cout<<"--step (optional) <int>: progress report step (100)\n"; std::cout<<"--use_omp: use OpenMP for multithreaded map matching\n"; std::cout<<"-h/--help:print help information\n"; std::cout<<"For xml configuration, check example folder\n"; } bool STMATCHAppConfig::validate() const { if (!gps_config.validate()) { return false; } if (!result_config.validate()) { return false; } if (!network_config.validate()) { return false; } if (!stmatch_config.validate()) { return false; } return true; };
2f72dc01aa2890730c8ff0082b877f9b421cf52e
c87e0b73d208a64c898aa8415f937cab2c233091
/src/RtMidiRouterLib/webchannel/wcmidiout.cpp
eff13cd330f9316e5a55b6b60bf4a73f7488fc71
[ "MIT" ]
permissive
shemeshg/RtMidiWrap
dbc1177b96397f7565fbb722ec9ec1447b68f4e1
86b724c877a0d335defc6b8d411321ced1ed5218
refs/heads/master
2023-01-28T02:27:46.576202
2023-01-03T18:33:05
2023-01-03T18:33:05
236,789,355
2
0
null
2022-09-27T13:05:23
2020-01-28T17:03:46
C++
UTF-8
C++
false
false
5,907
cpp
#include "wcmidiout.h" //#include <QStringList> //#include <QVariantMap> //#include <string> //#include "RtMidiWrap/playmidiout.h" namespace Webchannel { WcMidiOut::WcMidiOut(QObject *parent) : QObject(parent) { midiout = std::unique_ptr<RtMidiWrap::MidiOut>(new RtMidiWrap::MidiOut()); } bool WcMidiOut::msgToServer(const QString &msg){ emit msgToClient("Just received msg from client of " + msg); return true; } int WcMidiOut::getPortCount(){ return (int)midiout->getPortCount(); }; QString WcMidiOut::getPortName(int i){ return QString::fromStdString( midiout->getPortName(i) ); } int WcMidiOut::getPortNumber(const QString &s){ return midiout->getPortNumber(s.toStdString()); } QVariantMap WcMidiOut::getPorts(){ QVariantMap qm; int nPorts = (int)midiout->getPortCount(); for ( int i=0; i<nPorts; i++ ) { qm[QString::number(i)] = QString::fromStdString( midiout->getPortName(i)); } return qm; } QVariantMap WcMidiOut::getOpenedPorts(){ QVariantMap qm; for(auto const& imap: openedMidiOutObj){ qm[QString::number(imap.first)] = QString::fromStdString(imap.second->midiout->getOpenedPortName()); } return qm; } void WcMidiOut::openPort( int portNumber){ if ( openedMidiOutObj.find(portNumber) == openedMidiOutObj.end() ) { // not found openedMidiOutObj[portNumber] = std::unique_ptr<RtMidiWrap::PlayMidiOut>(new RtMidiWrap::PlayMidiOut()); openedMidiOutObj[portNumber]->openPort(portNumber); } else { // found return; } } void WcMidiOut::openVirtualPort(const QString &s){ return midiout->openVirtualPort(s.toStdString()); } bool WcMidiOut::isPortOpen( int portNumber){ bool isOpened = openedMidiOutObj[portNumber]->midiout->isPortOpen(); return isOpened; } void WcMidiOut::playNote( int portNumber, QStringList notes, QStringList channels, int velocity){ openPort(portNumber); openedMidiOutObj[portNumber]->playNote(qStringListToVectorString(notes), qStringListToVectorByte(channels), velocity); } void WcMidiOut::stopNote( int portNumber, QStringList notes, QStringList channels, int velocity){ openPort(portNumber); openedMidiOutObj[portNumber]->stopNote(qStringListToVectorString(notes), qStringListToVectorByte(channels), velocity); } void WcMidiOut::sendKeyAftertouch( int portNumber, QStringList notes, QStringList channels, int pressure){ openPort(portNumber); openedMidiOutObj[portNumber]->sendKeyAftertouch(qStringListToVectorString(notes), qStringListToVectorByte(channels), pressure); } void WcMidiOut::sendChannelMode( int portNumber, int command, int value, QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->sendChannelMode((RtMidiWrap::CommonStatic::MIDI_CHANNEL_MODE_MESSAGES)command, value, qStringListToVectorByte(channels)); } void WcMidiOut::sendChannelAftertouch( int portNumber, int pressurer, QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->sendChannelAftertouch( pressurer, qStringListToVectorByte(channels)); } void WcMidiOut::sendPitchBend( int portNumber, float bend, QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->sendPitchBend( bend, qStringListToVectorByte(channels)); } void WcMidiOut::sendPitchBendLsbMsb( int portNumber, int lsb, int msb, QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->sendPitchBendLsbMsb( lsb, msb, qStringListToVectorByte(channels)); } void WcMidiOut::decrementRegisteredParameter( int portNumber,int parameter ,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->decrementRegisteredParameter( (RtMidiWrap::CommonStatic::MIDI_REGISTERED_PARAMETER)parameter, qStringListToVectorByte(channels)); } void WcMidiOut::incrementRegisteredParameter( int portNumber,int parameter ,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->incrementRegisteredParameter( (RtMidiWrap::CommonStatic::MIDI_REGISTERED_PARAMETER)parameter, qStringListToVectorByte(channels)); } void WcMidiOut::setRegisteredParameter( int portNumber,int parameter,QStringList data ,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->setRegisteredParameter( (RtMidiWrap::CommonStatic::MIDI_REGISTERED_PARAMETER)parameter, qStringListToVectorByte(data), qStringListToVectorByte(channels)); } void WcMidiOut::setModulationRange( int portNumber,int semitones,int cents,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->setModulationRange( semitones, cents, qStringListToVectorByte(channels)); } void WcMidiOut::setPitchBendRange( int portNumber,int semitones,int cents,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->setPitchBendRange( semitones, cents, qStringListToVectorByte(channels)); } void WcMidiOut::sendControlChange( int portNumber,int controller,int value,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->sendControlChange( controller, value, qStringListToVectorByte(channels)); } void WcMidiOut::setNonRegisteredParameter( int portNumber,QStringList parameter,QStringList data,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->setNonRegisteredParameter( qStringListToVectorByte(parameter), qStringListToVectorByte(data), qStringListToVectorByte(channels)); } void WcMidiOut::setNonRegisteredParameterInt( int portNumber,int parameter,int data,QStringList channels){ openPort(portNumber); openedMidiOutObj[portNumber]->setNonRegisteredParameterInt( parameter, data, qStringListToVectorByte(channels)); } void WcMidiOut::sendMessage( int portNumber,QStringList message){ openPort(portNumber); auto msg = qStringListToVectorByte(message); openedMidiOutObj[portNumber]->midiout->sendMessage( &msg); } }
20ddbbd0fccdf38c5e23cbeff9c2b9f7a7947fc3
a1fbf16243026331187b6df903ed4f69e5e8c110
/cs/engine/xrGame/autosave_manager.h
f4cbbe3b806e356664c7d277e812e07042879c07
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
OpenXRay/xray-15
ca0031cf1893616e0c9795c670d5d9f57ca9beff
1390dfb08ed20997d7e8c95147ea8e8cb71f5e86
refs/heads/xd_dev
2023-07-17T23:42:14.693841
2021-09-01T23:25:34
2021-09-01T23:25:34
23,224,089
64
23
NOASSERTION
2019-04-03T17:50:18
2014-08-22T12:09:41
C++
UTF-8
C++
false
false
1,181
h
//////////////////////////////////////////////////////////////////////////// // Module : autosave_manager.h // Created : 04.11.2004 // Modified : 04.11.2004 // Author : Dmitriy Iassenev // Description : Autosave manager //////////////////////////////////////////////////////////////////////////// #pragma once class CAutosaveManager : public ISheduled { private: typedef ISheduled inherited; private: u32 m_autosave_interval; u32 m_last_autosave_time; u32 m_delay_autosave_interval; u32 m_not_ready_count; public: CAutosaveManager (); virtual ~CAutosaveManager (); virtual shared_str shedule_Name () const { return shared_str("autosave_manager"); } virtual void shedule_Update (u32 dt); virtual float shedule_Scale (); virtual bool shedule_Needed () { return true; } void on_game_loaded (); public: IC u32 autosave_interval () const; IC u32 last_autosave_time () const; IC u32 not_ready_count () const; IC void inc_not_ready (); IC void dec_not_ready (); IC void update_autosave_time (); IC void delay_autosave (); IC bool ready_for_autosave (); }; #include "autosave_manager_inline.h"
f6f6f5ebd9de64d1a7bd4064b6889443b4ab5a84
8ed2068bffc4759c42d40b430a8426da3535df82
/PWGHF/hfe/AliAnalysisTaskHFEIPCorrection.cxx
4f413072975bfce20db63dc540eeeaea0b3e76fb
[]
permissive
jisatsunotenshi/AliPhysics
a0ff132f3eeef16d5ddd23c60711045971dfc372
b041470123d81db9eec00dc0ef60cfbb6e447258
refs/heads/master
2020-12-13T03:16:21.134570
2020-01-16T10:40:35
2020-01-16T10:40:35
234,293,201
0
0
BSD-3-Clause
2020-01-16T10:19:26
2020-01-16T10:19:25
null
UTF-8
C++
false
false
74,694
cxx
#include "TChain.h" #include "TTree.h" #include "TH1F.h" #include "TH2F.h" #include "TH3F.h" #include "TRandom3.h" #include "TFile.h" #include "THnSparse.h" #include "TCanvas.h" #include "TSpline.h" #include "TNtuple.h" #include "AliAnalysisTask.h" #include "AliAnalysisManager.h" #include "AliESDEvent.h" #include "AliESDInputHandler.h" #include "AliAODEvent.h" #include "AliAODInputHandler.h" #include "AliMCEventHandler.h" #include "AliAODv0KineCuts.h" #include "AliMCEvent.h" #include "AliMCParticle.h" #include "AliCentrality.h" #include "AliESDVZERO.h" #include "AliESDpid.h" #include "AliESDtrack.h" #include "AliAnalysisTaskHFEIPCorrection.h" #include "AliHFEpidTOF.h" #include "AliHFEpid.h" #include "AliHFEtools.h" //#include "AliESDTrdTracklet.h" //#include "AliTRDgeometry.h" //#include "AliHFEcuts.h" #include "AliHFEpid.h" #include "AliHFEpidQAmanager.h" #include "AliHFEtools.h" #include "AliHFEVZEROEventPlane.h" #include "AliEventplane.h" #include <AliOADBContainer.h> #include "AliMultSelection.h" #include "AliVertexerTracks.h" // This analysis builds histograms to enable and check the impact parameter // correction in phi, z, and pT for the 15o and 18qr PbPb data set // Author: Martin Voelkl ClassImp(AliAnalysisTaskHFEIPCorrection) //________________________________________________________________________ AliAnalysisTaskHFEIPCorrection::AliAnalysisTaskHFEIPCorrection() : AliAnalysisTaskSE(), fAOD(0), fOutputContainer(0), fRd(0), fSplineCorr(0), fIPData(0), fCentrality(0), EP2040(0), EP2040Corrected(0), EP2040V0A(0), EP2040V0C(0), TPCnSigma(0), fTPCnSigmaCentIP(0), fTPCnSigmaCentOOP(0), fEleV0TPCnSigmaCentIP(0), fEleV0TPCnSigmaCentOOP(0), EPCent(0), EPCentUncorrected(0), EPCentV0A(0), EPCentV0C(0), DeltaPhi(0), fExtraCuts(0), fpTIP2040IP(0), fpTIP2040OOP(0), fpTIP3050IP(0), fpTIP3050OOP(0), EventSelectionSteps(0), fPionV0pTRNoCuts(0), fPionV0pTRWithCuts(0), fPionV0pTRNoCutsIP(0), fPionV0pTRWithCutsIP(0), fPionV0pTRNoCutsOOP(0), fPionV0pTRWithCutsOOP(0), fPionV0pTTPC(0), fPionV0pTTPCWithCuts(0), fPionV0pTTPCIP(0), fPionV0pTTPCOOP(0), fPionV0pTTPCIPWTOF(0), fPionV0pTTPCOOPWTOF(0), fPionV0pTTPCIPnoFirst(0), fPionV0pTTPCOOPnoFirst(0), fPionV0pTTPCIPWTOFnoFirst(0), fPionV0pTTPCOOPWTOFnoFirst(0), fEPLowHighCent(0), fEPLowVZEROCent(0), fEPHighVZEROCent(0), fEPLowHighCent2(0), fEPLowVZEROCent2(0), fEPHighVZEROCent2(0), fAODV0Cuts(0), fDCARegionRun(0), fDCAPhiZHadrons(0), fDCAPhiZHadronsEarlyRuns(0), fDCAPhiZHadronsLateRuns(0), fDCAPhiZHadronsC(0), fDCAPhipTHadrons(0), fDCAPhipTHadronsEarlyRuns(0), fDCAPhipTHadronsLateRuns(0), fDCAPhipTHadronsC(0), fDCAPhiZKaons(0), fDCAPhiZKaonsC(0), fDCAPhipTKaons(0), fDCAPhipTKaonsC(0), fpTPhiZHadrons(0), fDCAWErrHadrons(0), fDCAHadrons(0), fDCAHadronsFineBins(0), fDCAKaons(0), fDCAWErrKaons(0), fDCAKaonsFineBins(0) { // default Constructor // Define input and output slots here // HFE cuts /*hfetrackCuts = new AliHFEcuts("V0trackCuts", "Track Cuts for tagged track Analysis"); hfetrackCuts->CreateStandardCuts(); hfetrackCuts->SetMinNClustersTPC(110); hfetrackCuts->SetMinNClustersTPCPID(80); hfetrackCuts->SetFractionOfSharedTPCClusters(1.1); hfetrackCuts->SetMinRatioTPCclusters(0.6); hfetrackCuts->SetTPCmodes(3,4); hfetrackCuts->SetMinNClustersITS(4); hfetrackCuts->SetCutITSpixel(AliHFEextraCuts::kBoth); hfetrackCuts->SetCheckITSLayerStatus(kFALSE); //hfetrackCuts->UnsetVertexRequirement(); hfetrackCuts->SetTOFPIDStep(kTRUE); hfetrackCuts->Initialize();*/ //fExtraCuts = new AliHFEextraCuts("hfeExtraCuts","HFE Extra Cuts"); // end HFE cuts } //________________________________________________________________________ AliAnalysisTaskHFEIPCorrection::AliAnalysisTaskHFEIPCorrection(const char *name) : AliAnalysisTaskSE(name), fAOD(0), fOutputContainer(0), fRd(0), fSplineCorr(0), fIPData(0), fCentrality(0), EP2040(0), EP2040Corrected(0), EP2040V0A(0), EP2040V0C(0), TPCnSigma(0), fTPCnSigmaCentIP(0), fTPCnSigmaCentOOP(0), fEleV0TPCnSigmaCentIP(0), fEleV0TPCnSigmaCentOOP(0), EPCent(0), EPCentUncorrected(0), EPCentV0A(0), EPCentV0C(0), DeltaPhi(0), fExtraCuts(0), fpTIP2040IP(0), fpTIP2040OOP(0), fpTIP3050IP(0), fpTIP3050OOP(0), EventSelectionSteps(0), fPionV0pTRNoCuts(0), fPionV0pTRWithCuts(0), fPionV0pTRNoCutsIP(0), fPionV0pTRWithCutsIP(0), fPionV0pTRNoCutsOOP(0), fPionV0pTRWithCutsOOP(0), fPionV0pTTPC(0), fPionV0pTTPCWithCuts(0), fPionV0pTTPCIP(0), fPionV0pTTPCOOP(0), fPionV0pTTPCIPWTOF(0), fPionV0pTTPCOOPWTOF(0), fPionV0pTTPCIPnoFirst(0), fPionV0pTTPCOOPnoFirst(0), fPionV0pTTPCIPWTOFnoFirst(0), fPionV0pTTPCOOPWTOFnoFirst(0), fEPLowHighCent(0), fEPLowVZEROCent(0), fEPHighVZEROCent(0), fEPLowHighCent2(0), fEPLowVZEROCent2(0), fEPHighVZEROCent2(0), fAODV0Cuts(0), fDCARegionRun(0), fDCAPhiZHadrons(0), fDCAPhiZHadronsEarlyRuns(0), fDCAPhiZHadronsLateRuns(0), fDCAPhiZHadronsC(0), fDCAPhipTHadrons(0), fDCAPhipTHadronsEarlyRuns(0), fDCAPhipTHadronsLateRuns(0), fDCAPhipTHadronsC(0), fDCAPhiZKaons(0), fDCAPhiZKaonsC(0), fDCAPhipTKaons(0), fDCAPhipTKaonsC(0), fpTPhiZHadrons(0), fDCAWErrHadrons(0), fDCAHadrons(0), fDCAHadronsFineBins(0), fDCAKaons(0), fDCAWErrKaons(0), fDCAKaonsFineBins(0) { // HFE cuts /*hfetrackCuts = new AliHFEcuts("V0trackCuts", "Track Cuts for tagged track Analysis"); hfetrackCuts->CreateStandardCuts(); hfetrackCuts->SetMinNClustersTPC(110); hfetrackCuts->SetMinNClustersTPCPID(80); hfetrackCuts->SetFractionOfSharedTPCClusters(1.1); hfetrackCuts->SetMinRatioTPCclusters(0.6); hfetrackCuts->SetTPCmodes(3,4); hfetrackCuts->SetMinNClustersITS(4); hfetrackCuts->SetCutITSpixel(AliHFEextraCuts::kBoth); hfetrackCuts->SetCheckITSLayerStatus(kFALSE); //hfetrackCuts->UnsetVertexRequirement(); hfetrackCuts->SetTOFPIDStep(kTRUE); hfetrackCuts->Initialize(); //fExtraCuts = new AliHFEextraCuts("hfeExtraCuts","HFE Extra Cuts"); */ // end HFE cuts // Constructor // Define input and output slots here // Input slot #0 works with a TChain DefineInput(0, TChain::Class()); // Output slot #0 writes into a TH1 container //DefineOutput(1, TObjArray::Class()); DefineOutput(1, TList::Class()); // DefineOutput(2, TNtuple::Class()); } AliAnalysisTaskHFEIPCorrection::~AliAnalysisTaskHFEIPCorrection() { } //________________________________________________________________________ void AliAnalysisTaskHFEIPCorrection::UserCreateOutputObjects() { // Create histograms // Called once Double_t ptbinningX[19] = {0., 0.1, 0.3, 0.5, 0.7, 0.9, 1.1, 1.3, 1.5, 2., 2.5, 3., 4., 6., 8., 10., 12., 16., 20.}; // Apr 2018 binning //Double_t IPBinning[401]; fCentrality = new TH1D(Form("fCentrality"),Form("fCentrality"), 100, 0., 100.); EPCent = new TH2D(Form("EPCent"),Form("EPCent"), 20, 0., TMath::Pi(), 10, 0., 100.); EPCentV0A = new TH2D(Form("EPCentV0A"),Form("EPCentV0A"), 20, 0., TMath::Pi(), 10, 0., 100.); EPCentV0C = new TH2D(Form("EPCentV0C"),Form("EPCentV0C"), 20, 0., TMath::Pi(), 10, 0., 100.); EPCentUncorrected = new TH2D(Form("EPCentUncorrected"),Form("EPCentUncorrected"), 20, 0., TMath::Pi(), 10, 0., 100.); DeltaPhi = new TH1D(Form("DeltaPhi"),Form("DeltaPhi"), 40, 0., TMath::Pi()); fExtraCuts = new AliHFEextraCuts("hfeExtraCuts","HFE Extra Cuts"); fpTIP2040IP = new TH2D("pTIP2040IP", "", 18, ptbinningX, 400, -0.2, 0.2); fpTIP2040OOP = new TH2D("pTIP2040OOP", "", 18, ptbinningX, 400, -0.2, 0.2); fpTIP3050IP = new TH2D("pTIP3050IP", "", 18, ptbinningX, 400, -0.2, 0.2); fpTIP3050OOP = new TH2D("pTIP3050OOP", "", 18, ptbinningX, 400, -0.2, 0.2); EP2040 = new TH1D(Form("EP2040"),Form("EP2040"), 100, 0., TMath::Pi()); EP2040Corrected = new TH1D(Form("EP2040Corrected"),Form("EP2040Corrected"), 100, 0., TMath::Pi()); EP2040V0A = new TH1D(Form("EP2040V0A"),Form("EP2040V0A"), 100, 0., TMath::Pi()); EP2040V0C = new TH1D(Form("EP2040V0C"),Form("EP2040V0C"), 100, 0., TMath::Pi()); TPCnSigma = new TH2D("TPCnSigma", "", 18, ptbinningX, 100, -10., 5.); fTPCnSigmaCentIP = new TH3D("fTPCnSigmaCentIP", "", 20, 0., 5., 100, -10., 5., 10, 0, 100); fTPCnSigmaCentOOP = new TH3D("fTPCnSigmaCentOOP", "", 20, 0., 5., 100, -10., 5., 10, 0, 100); fEleV0TPCnSigmaCentIP = new TH3D("fEleV0TPCnSigmaCentIP", "", 20, 0., 5., 100, -10., 5., 10, 0, 100); fEleV0TPCnSigmaCentOOP = new TH3D("fEleV0TPCnSigmaCentOOP", "", 20, 0., 5., 100, -10., 5., 10, 0, 100); fIPData = new TH2D("fIPData", "", 18, ptbinningX, 400, -0.2, 0.2); fPionV0pTRNoCuts = new TH3D(Form("fPionV0pTRNoCuts"),Form("fPionV0pTRNoCuts"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTRWithCuts = new TH3D(Form("fPionV0pTRWithCuts"),Form("fPionV0pTRWithCuts"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTRNoCutsIP = new TH3D(Form("fPionV0pTRNoCutsIP"),Form("fPionV0pTRNoCutsIP"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTRWithCutsIP = new TH3D(Form("fPionV0pTRWithCutsIP"),Form("fPionV0pTRWithCutsIP"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTRNoCutsOOP = new TH3D(Form("fPionV0pTRNoCutsOOP"),Form("fPionV0pTRNoCutsOOP"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTRWithCutsOOP = new TH3D(Form("fPionV0pTRWithCutsOOP"),Form("fPionV0pTRWithCutsOOP"), 40, 0., 10., 80, 0., 20., 10, 0., 100.); fPionV0pTTPC = new TH2D(Form("fPionV0pTTPC"),Form("fPionV0pTTPC"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCWithCuts = new TH2D(Form("fPionV0pTTPCWithCuts"),Form("fPionV0pTTPCWithCuts"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCIP = new TH2D(Form("fPionV0pTTPCIP"),Form("fPionV0pTTPCIP"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCOOP = new TH2D(Form("fPionV0pTTPCOOP"),Form("fPionV0pTTPCOOP"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCIPWTOF = new TH2D(Form("fPionV0pTTPCIPWTOF"),Form("fPionV0pTTPCIPWTOF"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCOOPWTOF = new TH2D(Form("fPionV0pTTPCOOPWTOF"),Form("fPionV0pTTPCOOPWTOF"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCIPnoFirst = new TH2D(Form("fPionV0pTTPCIPnoFirst"),Form("fPionV0pTTPCIPnoFirst"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCOOPnoFirst = new TH2D(Form("fPionV0pTTPCOOPnoFirst"),Form("fPionV0pTTPCOOPnoFirst"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCIPWTOFnoFirst = new TH2D(Form("fPionV0pTTPCIPWTOFnoFirst"),Form("fPionV0pTTPCIPWTOFnoFirst"), 18, ptbinningX, 200, -10., 10.); fPionV0pTTPCOOPWTOFnoFirst = new TH2D(Form("fPionV0pTTPCOOPWTOFnoFirst"),Form("fPionV0pTTPCOOPWTOFnoFirst"), 18, ptbinningX, 200, -10., 10.); fAODV0Cuts = new AliAODv0KineCuts(); EventSelectionSteps = new TH1D(Form("EventSelectionSteps"),Form("EventSelectionSteps"), 10, -0.5, 9.5); fEPLowHighCent = new TH3D(Form("fEPLowHighCent"),Form("fEPLowHighCent"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fEPLowVZEROCent = new TH3D(Form("fEPLowVZEROCent"),Form("fEPLowVZEROCent"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fEPHighVZEROCent = new TH3D(Form("fEPHighVZEROCent"),Form("fEPHighVZEROCent"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fEPLowHighCent2 = new TH3D(Form("fEPLowHighCent2"),Form("fEPLowHighCent2"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fEPLowVZEROCent2 = new TH3D(Form("fEPLowVZEROCent2"),Form("fEPLowVZEROCent2"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fEPHighVZEROCent2 = new TH3D(Form("fEPHighVZEROCent2"),Form("fEPHighVZEROCent2"), 100, 0., 3.14159, 100, 0., 3.14159, 30, 20., 50.); fDCARegionRun = new TH3D(Form("fDCARegionRun"),Form("fDCARegionRun"), 400, -0.05, 0.05, 5, 0.5, 5.5, 183, 0.5, 183.5); fpTPhiZHadrons = new TH3D(Form("fpTPhiZHadrons"),Form("fpTPhiZHadrons"), 40, 0., 2.*3.14159, 40, 0., 10., 12, -12., 12.); fDCAPhiZHadrons = new TH3D(Form("fDCAPhiZHadrons"),Form("fDCAPhiZHadrons"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhiZHadronsEarlyRuns = new TH3D(Form("fDCAPhiZHadronsEarlyRuns"),Form("fDCAPhiZHadronsEarlyRuns"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhiZHadronsLateRuns = new TH3D(Form("fDCAPhiZHadronsLateRuns"),Form("fDCAPhiZHadronsLateRuns"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhiZHadronsC = new TH3D(Form("fDCAPhiZHadronsC"),Form("fDCAPhiZHadronsC"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhipTHadrons = new TH3D(Form("fDCAPhipTHadrons"),Form("fDCAPhipTHadrons"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAPhipTHadronsEarlyRuns = new TH3D(Form("fDCAPhipTHadronsEarlyRuns"),Form("fDCAPhipTHadronsEarlyRuns"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAPhipTHadronsLateRuns = new TH3D(Form("fDCAPhipTHadronsLateRuns"),Form("fDCAPhipTHadronsLateRuns"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAPhipTHadronsC = new TH3D(Form("fDCAPhipTHadronsC"),Form("fDCAPhipTHadronsC"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAPhiZKaons = new TH3D(Form("fDCAPhiZKaons"),Form("fDCAPhiZKaons"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhiZKaonsC = new TH3D(Form("fDCAPhiZKaonsC"),Form("fDCAPhiZKaonsC"), 40, 0., 2.*3.14159, 400, -0.05, 0.05, 12, -12., 12.); fDCAPhipTKaons = new TH3D(Form("fDCAPhipTKaons"),Form("fDCAPhipTKaons"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAPhipTKaonsC = new TH3D(Form("fDCAPhipTKaonsC"),Form("fDCAPhipTKaonsC"), 400, -0.05, 0.05, 40, 0., 2.*3.14159, 40, 0., 10.); fDCAWErrHadrons = new TH3D(Form("fDCAWErrHadrons"),Form("fDCAWErrHadrons"), 80, 0., 10., 400, -0.2, 0.2, 100, 0.0, 0.01); fDCAHadrons = new TH2D(Form("fDCAHadrons"),Form("fDCAHadrons"), 18, ptbinningX, 400, -0.2, 0.2); fDCAHadronsFineBins = new TH3D(Form("fDCAHadronsFineBins"),Form("fDCAHadronsFineBins"), 80, 0., 10., 400, -0.2, 0.2, 10, 0., 100.); fDCAKaons = new TH2D(Form("fDCAKaons"),Form("fDCAKaons"), 18, ptbinningX, 400, -0.2, 0.2); fDCAWErrKaons = new TH3D(Form("fDCAWErrKaons"),Form("fDCAWErrKaons"), 80, 0., 10., 400, -0.2, 0.2, 100, 0.0, 0.01); fDCAKaonsFineBins = new TH3D(Form("fDCAKaonsFineBins"),Form("fDCAKaonsFineBins"), 80, 0., 10., 400, -0.2, 0.2, 10, 0., 100.); fRd = new TRandom3(0); double xspline[8] = {0.19635, 0.589049, 0.981748, 1.37445, 1.76715, 2.15984, 2.55254, 2.94524}; double ysplinecorr[8] = {0.921943, 0.916581, 0.929437, 0.963846, 0.960518, 0.925982, 0.911671, 0.919443}; fSplineCorr = new TSpline3("fSplineCorr", xspline, ysplinecorr, 8, "b2e2"); fOutputContainer = new TObjArray(1); fOutputContainer->SetName(GetName()); fOutputContainer->SetOwner(); fOutputContainer->Add(fCentrality); fOutputContainer->Add(EPCent); fOutputContainer->Add(EPCentV0A); fOutputContainer->Add(EPCentV0C); fOutputContainer->Add(EPCentUncorrected); fOutputContainer->Add(DeltaPhi); fOutputContainer->Add(fpTIP2040IP); fOutputContainer->Add(fpTIP2040OOP); fOutputContainer->Add(fpTIP3050IP); fOutputContainer->Add(fpTIP3050OOP); fOutputContainer->Add(EP2040); fOutputContainer->Add(EP2040Corrected); fOutputContainer->Add(EP2040V0A); fOutputContainer->Add(EP2040V0C); fOutputContainer->Add(TPCnSigma); fOutputContainer->Add(fTPCnSigmaCentIP); fOutputContainer->Add(fTPCnSigmaCentOOP); fOutputContainer->Add(fEleV0TPCnSigmaCentIP); fOutputContainer->Add(fEleV0TPCnSigmaCentOOP); fOutputContainer->Add(fIPData); fOutputContainer->Add(fPionV0pTRNoCuts); fOutputContainer->Add(fPionV0pTRWithCuts); fOutputContainer->Add(fPionV0pTRNoCutsIP); fOutputContainer->Add(fPionV0pTRWithCutsIP); fOutputContainer->Add(fPionV0pTRNoCutsOOP); fOutputContainer->Add(fPionV0pTRWithCutsOOP); fOutputContainer->Add(fPionV0pTTPC); fOutputContainer->Add(fPionV0pTTPCWithCuts); fOutputContainer->Add(fPionV0pTTPCIP); fOutputContainer->Add(fPionV0pTTPCOOP); fOutputContainer->Add(fPionV0pTTPCIPWTOF); fOutputContainer->Add(fPionV0pTTPCOOPWTOF); fOutputContainer->Add(fPionV0pTTPCIPnoFirst); fOutputContainer->Add(fPionV0pTTPCOOPnoFirst); fOutputContainer->Add(fPionV0pTTPCIPWTOFnoFirst); fOutputContainer->Add(fPionV0pTTPCOOPWTOFnoFirst); fOutputContainer->Add(EventSelectionSteps); // works up to here fOutputContainer->Add(fDCARegionRun); fOutputContainer->Add(fDCAPhiZHadrons); fOutputContainer->Add(fDCAPhiZHadronsEarlyRuns); fOutputContainer->Add(fDCAPhiZHadronsLateRuns); fOutputContainer->Add(fDCAPhiZHadronsC); fOutputContainer->Add(fDCAPhipTHadrons); fOutputContainer->Add(fDCAPhipTHadronsEarlyRuns); fOutputContainer->Add(fDCAPhipTHadronsLateRuns); fOutputContainer->Add(fDCAPhipTHadronsC); // works up to here fOutputContainer->Add(fDCAPhiZKaons); fOutputContainer->Add(fDCAPhiZKaonsC); fOutputContainer->Add(fDCAPhipTKaons); fOutputContainer->Add(fDCAPhipTKaonsC); fOutputContainer->Add(fpTPhiZHadrons); fOutputContainer->Add(fDCAWErrHadrons); fOutputContainer->Add(fDCAHadrons); fOutputContainer->Add(fDCAHadronsFineBins); // works, but slowly fOutputContainer->Add(fDCAKaons); fOutputContainer->Add(fDCAWErrKaons); fOutputContainer->Add(fDCAKaonsFineBins); // up to here: slow/nothing fOutputContainer->Add(fEPLowHighCent); fOutputContainer->Add(fEPLowVZEROCent); fOutputContainer->Add(fEPHighVZEROCent); fOutputContainer->Add(fEPLowHighCent2); fOutputContainer->Add(fEPLowVZEROCent2); fOutputContainer->Add(fEPHighVZEROCent2); PostData(1, fOutputContainer); } //_____________________________________________________________________________ void AliAnalysisTaskHFEIPCorrection::UserExec(Option_t *) { // // Called for each event // //AliESDInputHandler *esdH = dynamic_cast<AliESDInputHandler*> (AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()); //AliAODInputHandler *aodH = dynamic_cast<AliAODInputHandler*> (AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()); fAOD = dynamic_cast<AliAODEvent*>(InputEvent()); if (!fAOD) { printf("ERROR: Could not get AODInputHandler \n"); } else fAOD = dynamic_cast<AliAODEvent*>(InputEvent()); Process(fAOD); // Post output data. //PostData(1, fOutput); //PostData(1, fOutputContainer); // PostData(2, rec); // PostData(2, treeoutput); } Bool_t AliAnalysisTaskHFEIPCorrection::PassesTrackCuts(AliAODTrack *track) { if(TMath::Abs(track->Eta())>0.8) return kFALSE; ULong_t status = track->GetStatus(); // Basic tracking if(!((status & AliVTrack::kITSrefit) && (status & AliVTrack::kTPCrefit))) return kFALSE; // ITS tracking if(!(track->HasPointOnITSLayer(0) && track->HasPointOnITSLayer(1) && track->GetITSNcls()>=4)) return kFALSE; Int_t nclustersITS(track->GetITSclusters(NULL)), nclustersTPC(track->GetTPCNcls()), nclustersTPCall(track->GetTPCClusterMap().CountBits()), nclustersTPCshared(0); UChar_t nfindableTPC = track->GetTPCNclsF(); Double_t FoundOverFindable = (nfindableTPC ? static_cast<Float_t>(nclustersTPC)/static_cast<Float_t>(nfindableTPC) : 0); // TPC Quality if(!(track->GetTPCNcls()>=110 && track->GetTPCsignalN()>=80 && FoundOverFindable>0.6 && track->GetTPCchi2()/Double_t(nclustersTPC)<4.)) return kFALSE; // ITS Quality if(track->GetITSchi2()/double(track->GetITSNcls()) > 10.) return kFALSE; UChar_t ITSShared = track->GetITSSharedClusterMap(); Int_t nSharedITS = 0; for(int i=0;i<6;i++) if((ITSShared >> i) & 1) nSharedITS++; if(nSharedITS > 3) return kFALSE; // TOF quality //if(track->GetTOFsignal()>=99999) return kFALSE; return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesTrackCutsNoFirst(AliAODTrack *track) { if(TMath::Abs(track->Eta())>0.8) return kFALSE; ULong_t status = track->GetStatus(); // Basic tracking if(!((status & AliVTrack::kITSrefit) && (status & AliVTrack::kTPCrefit))) return kFALSE; // ITS tracking if(!(!(track->HasPointOnITSLayer(0)) && track->HasPointOnITSLayer(1) && track->GetITSNcls()>=4)) return kFALSE; Int_t nclustersITS(track->GetITSclusters(NULL)), nclustersTPC(track->GetTPCNcls()), nclustersTPCall(track->GetTPCClusterMap().CountBits()), nclustersTPCshared(0); UChar_t nfindableTPC = track->GetTPCNclsF(); Double_t FoundOverFindable = (nfindableTPC ? static_cast<Float_t>(nclustersTPC)/static_cast<Float_t>(nfindableTPC) : 0); // TPC Quality if(!(track->GetTPCNcls()>=110 && track->GetTPCsignalN()>=80 && FoundOverFindable>0.6 && track->GetTPCchi2()/Double_t(nclustersTPC)<4.)) return kFALSE; // ITS Quality if(track->GetITSchi2()/double(track->GetITSNcls()) > 10.) return kFALSE; UChar_t ITSShared = track->GetITSSharedClusterMap(); Int_t nSharedITS = 0; for(int i=0;i<6;i++) if((ITSShared >> i) & 1) nSharedITS++; if(nSharedITS > 3) return kFALSE; // TOF quality //if(track->GetTOFsignal()>=99999) return kFALSE; return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesElectronPID(AliAODTrack *track, AliPIDResponse *pid) { if(pid->NumberOfSigmasTPC(track, AliPID::kElectron) >3. || pid->NumberOfSigmasTPC(track, AliPID::kElectron) <-0.5) return kFALSE; if(TMath::Abs(pid->NumberOfSigmasTOF(track, AliPID::kElectron))>3.) return kFALSE; return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesPionPID(AliAODTrack *track, AliPIDResponse *pid) { if(pid->NumberOfSigmasTPC(track, AliPID::kPion) > 3. || pid->NumberOfSigmasTPC(track, AliPID::kPion) < -1.) return kFALSE; if(TMath::Abs(pid->NumberOfSigmasTOF(track, AliPID::kPion))>3.) return kFALSE; // Should be basically same as electron return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesKaonPID(AliAODTrack *track, AliPIDResponse *pid) { if(pid->NumberOfSigmasTPC(track, AliPID::kKaon) >3. || pid->NumberOfSigmasTPC(track, AliPID::kKaon) <-3.) return kFALSE; if(TMath::Abs(pid->NumberOfSigmasTOF(track, AliPID::kKaon))>2.) return kFALSE; return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesMinimalTrackCuts(AliAODTrack *track) { if(TMath::Abs(track->Eta())>0.8) return kFALSE; ULong_t status = track->GetStatus(); // Basic tracking if(!((status & AliVTrack::kITSrefit) && (status & AliVTrack::kTPCrefit))) return kFALSE; return kTRUE; } Bool_t AliAnalysisTaskHFEIPCorrection::PassesITSTrackCuts(AliAODTrack *track) { if(TMath::Abs(track->Eta())>0.8) return kFALSE; ULong_t status = track->GetStatus(); // Basic tracking if(!((status & AliVTrack::kITSrefit) && (status & AliVTrack::kTPCrefit))) return kFALSE; // ITS tracking if(!(track->HasPointOnITSLayer(0) && track->HasPointOnITSLayer(1) && track->GetITSNcls()>=4)) return kFALSE; Int_t nclustersITS(track->GetITSclusters(NULL)), nclustersTPC(track->GetTPCNcls()), nclustersTPCall(track->GetTPCClusterMap().CountBits()), nclustersTPCshared(0); // ITS Quality if(track->GetITSchi2()/double(track->GetITSNcls()) > 10.) return kFALSE; UChar_t ITSShared = track->GetITSSharedClusterMap(); Int_t nSharedITS = 0; for(int i=0;i<6;i++) if((ITSShared >> i) & 1) nSharedITS++; if(nSharedITS > 3) return kFALSE; return kTRUE; } Int_t AliAnalysisTaskHFEIPCorrection::IsInMisalignedRegion(AliAODTrack *track, double vtxz) { double halfstavephi = 2. * TMath::Pi() / 40.; double phi = track->Phi(); double zSPD = vtxz+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta()))); // z position of track at first layer if(phi>6.*halfstavephi && phi<=9.*halfstavephi && zSPD>0.) return 1; if(phi>17.*halfstavephi && phi<=19.*halfstavephi && zSPD>0.) return 2; if(phi>21.*halfstavephi && phi<=23.*halfstavephi) return 3; if(phi>25.*halfstavephi && phi<=27.*halfstavephi && zSPD<0.) return 4; return 0; } AliAODVertex * AliAnalysisTaskHFEIPCorrection::CorrectVertex(AliAODEvent *aodEvent, double vtxz) // Vertex without using excluded regions { AliAODVertex * vtxcorr; AliAODTrack *track = 0x0; Int_t * skippedTracks = new Int_t[fInputEvent->GetNumberOfTracks()]; Int_t nskipped = 0; // First fill array of tracks to be disregarded in primary vertex estimation for(Int_t itrack = 0; itrack < fInputEvent->GetNumberOfTracks(); itrack++) { // Run track loop track = dynamic_cast<AliAODTrack *>(fInputEvent->GetTrack(itrack)); if(track->Pt()>0.5 && TMath::Abs(track->Eta())<1.) { if(IsInMisalignedRegion(track, vtxz)>0) { if(((Int_t) track->GetID())>0) { skippedTracks[nskipped] = (Int_t) track->GetID(); nskipped++; } } } } // Now reconstruct the primary vertex without these tracks AliVertexerTracks vertexer(aodEvent->GetMagneticField()); vertexer.SetITSMode(); vertexer.SetMinClusters(3); vertexer.SetConstraintOff(); vertexer.SetSkipTracks(nskipped,skippedTracks); AliESDVertex *vtxESDNew = vertexer.FindPrimaryVertex(aodEvent); // convert to AliAODVertex -- copied from hfe task Double_t pos[3],cov[6],chi2perNDF; vtxESDNew->GetXYZ(pos); // position vtxESDNew->GetCovMatrix(cov); //covariance matrix chi2perNDF = vtxESDNew->GetChi2toNDF(); delete vtxESDNew; vtxESDNew=NULL; vtxcorr = new AliAODVertex(pos,cov,chi2perNDF); // Makes AOD vertex delete[] skippedTracks; return vtxcorr; } void AliAnalysisTaskHFEIPCorrection::GetTrackImpactParameter(AliAODEvent *aodEvent, AliAODTrack *track, AliAODVertex * pvtx, Double_t &dcaxy) { Double_t dcaD[3]; // 2 should be sufficient, 3 to check if reason for crash Double_t covD[3]; Double_t fMagField; const Double_t kBeampiperadius=3.; AliAODTrack aodtrack(*track); AliExternalTrackParam etp; etp.CopyFromVTrack(&aodtrack); fMagField = aodEvent->GetMagneticField(); etp.PropagateToDCA(pvtx, fMagField, kBeampiperadius, dcaD, covD); dcaxy = dcaD[0]; } void AliAnalysisTaskHFEIPCorrection::GetCorrectedImpactParameter(AliAODEvent *aodEvent, AliAODTrack *track, Double_t primVertexZ, Double_t &dcaxy) { // primVertexZ is the z Position of the primary vertex // Using 40 phi bins, 12 z bins (-12 to +12 cm) and smooth pT correction int PhiBin = int(track->Phi()/(2.*TMath::Pi())*40); // phi bin double z_SPD1 = primVertexZ+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta()))); // z position of track in inner SPD layer int zBin = int((z_SPD1+12.)/24.*12.); // z bin double pt = track->Pt(); double oldIP, dcaErr; fExtraCuts->GetHFEImpactParameters((AliVTrack *)track,oldIP,dcaErr); // changed double correctionMatrixEarlyRuns[40][12] = { { -0.000683 , -0.00104 , -0.000436 , -0.000785 , -0.001 , -0.00117 , -0.00103 , -0.000972 , -0.00149 , -0.0014 , -0.00147 , -0.00158 }, { -0.000429 , -0.000331 , -0.000925 , -0.00097 , -0.000927 , -0.00109 , -0.00088 , -0.000629 , -0.000606 , -0.000768 , -0.000875 , -0.000799 }, { 9.07e-05 , -0.000232 , -0.000481 , -0.000671 , -0.000605 , -0.000969 , -0.000581 , -0.000624 , -0.000443 , 0.000108 , -0.000173 , -0.00068 }, { -0.000188 , -0.000327 , -0.000773 , -0.00087 , -0.00092 , -0.000998 , -0.000481 , 9.87e-05 , 1.33e-05 , -0.000173 , -5.06e-05 , -0.000686 }, { -0.00151 , -0.00167 , -0.00194 , -0.00157 , -0.00123 , -0.00122 , -0.000314 , -0.00038 , -0.000235 , 0.000169 , -0.000415 , -0.000513 }, { -0.00181 , -0.00122 , -0.00145 , -0.00142 , -0.00114 , -0.00115 , -0.000569 , 0.000239 , 0.000207 , -5e-05 , -0.000104 , -0.000634 }, { -0.000947 , -0.000512 , -0.000538 , -0.000851 , -0.000932 , -0.00113 , -0.00405 , -0.00372 , -0.00334 , -0.00351 , -0.00297 , -0.00292 }, { -0.000949 , -0.000806 , -0.00121 , -0.000865 , -0.000237 , -0.001 , -0.00561 , -0.00621 , -0.00594 , -0.00551 , -0.00464 , -0.004 }, { -0.00142 , -0.00111 , -0.00216 , -0.00132 , -0.000642 , -0.00153 , -0.00284 , -0.00295 , -0.00314 , -0.00349 , -0.00267 , -0.00226 }, { 0 , 0 , 0 , 0 , 0 , 0.00153 , 0.000849 , 0.000952 , 0.000799 , 0.000527 , 0.000224 , 0.000269 }, { 0 , 0 , 0 , 0 , 0 , 0.000431 , -0.000211 , 0.000241 , 0.00019 , -9.1e-05 , 0.000373 , -0.000161 }, { 0 , 0 , 0 , 0 , 0 , -0.000518 , -0.000786 , -0.000138 , -0.000261 , -0.000291 , 0.000237 , -9.44e-05 }, { 0 , 0 , 0 , 0 , 0 , -0.000486 , -0.000984 , 1.7e-05 , 0.000154 , -0.0004 , 0.000312 , 0.000181 }, { 0 , 0 , 0 , 0 , 0 , -0.000825 , -0.00171 , -0.0012 , -0.00113 , -0.000976 , -0.000555 , -0.000574 }, { 0.00528 , 0.00546 , 0.00561 , 0.0053 , 0.00782 , 0.00596 , -0.00188 , -0.00094 , -0.000935 , -0.00146 , -0.000619 , -0.00122 }, { -0.000379 , -0.000128 , -0.000382 , -0.000331 , 0.000108 , 7.47e-06 , -0.000598 , -9.11e-06 , -0.000398 , -0.000601 , 5.74e-05 , -0.000298 }, { 4.06e-05 , 0.000116 , -0.000144 , -0.00012 , -9.49e-06 , -0.000392 , -0.000871 , -0.000249 , -0.00042 , -0.000808 , -0.000448 , -0.000573 }, { -0.000487 , -0.000342 , -0.000591 , -0.000453 , -0.000259 , -0.000576 , 5.04e-05 , 0.00179 , 0.00162 , 0.00171 , 0.00157 , 0.000738 }, { -0.000837 , -0.000198 , -0.00133 , -0.000705 , -0.000506 , -0.000963 , -0.00114 , 0.00114 , 0.0012 , 0.000515 , 0.000815 , 0.000431 }, { -0.000696 , -8.76e-05 , -0.000227 , -0.000296 , -0.000356 , -0.000756 , -0.000786 , -0.000473 , -0.000626 , -0.00091 , -0.000828 , -0.000739 }, { -0.000317 , -0.000368 , -0.000625 , -0.00042 , -0.000556 , -0.000786 , -0.000867 , -0.001 , -0.000915 , -0.00108 , -0.000911 , -0.000861 }, { -0.00264 , -0.00284 , -0.00345 , -0.00373 , -0.00395 , -0.00415 , -0.00475 , -0.00518 , -0.00455 , -0.00389 , -0.00374 , -0.00383 }, { -0.003 , -0.00298 , -0.00348 , -0.00363 , -0.00436 , -0.00443 , -0.00512 , -0.00489 , -0.00516 , -0.00505 , -0.00461 , -0.00453 }, { -0.00201 , -0.00196 , -0.00182 , -0.00186 , -0.00201 , -0.00184 , -0.00139 , 0 , 0 , 0 , 0 , 0 }, { -0.00226 , -0.0022 , -0.00268 , -0.00234 , -0.00166 , -0.00256 , -0.00262 , -0.00311 , -0.00336 , -0.00292 , -0.00268 , -0.00203 }, { -0.00359 , -0.00288 , -0.00304 , -0.0031 , -0.00305 , -0.00314 , -0.0031 , -0.0027 , -0.0028 , -0.00293 , -0.00291 , -0.00201 }, { -0.00257 , -0.0031 , -0.00341 , -0.00355 , -0.00353 , -0.00368 , -0.00232 , -0.00279 , -0.00294 , -0.00252 , -0.00274 , -0.00221 }, { 0 , 0 , 0 , 0 , 0 , 0 , -0.00229 , -0.0025 , -0.00262 , -0.00274 , -0.00266 , -0.0024 }, { 0.000774 , -0.000295 , -5.94e-05 , 0.000142 , -0.000405 , -0.000619 , -0.0011 , -0.00163 , -0.0019 , -0.0014 , -0.00187 , -0.00209 }, { -0.00156 , -0.000174 , -0.000509 , -0.000816 , -0.000144 , -0.000683 , -0.00159 , -0.00121 , -0.00134 , -0.00222 , -0.00196 , -0.00176 }, { -0.00022 , 0.00105 , 0.00124 , 0.000443 , 0.000713 , 0.00162 , -0.00128 , -0.00204 , -0.00173 , -0.00154 , -0.00213 , -0.0013 }, { 0.000455 , 0.000776 , 0.000464 , 0.000417 , 0.000714 , 0.00041 , -0.00131 , -0.00149 , -0.0019 , -0.00193 , -0.000986 , -0.00151 }, { -0.000248 , -0.000424 , -0.000149 , -0.000592 , -0.00101 , -0.00134 , -0.0018 , -0.00161 , -0.00156 , -0.00167 , -0.00185 , -0.0019 }, { -4.59e-05 , -0.000561 , -0.000717 , -0.000926 , -0.00118 , -0.00157 , -0.00227 , -0.0022 , -0.00251 , -0.00231 , -0.00231 , -0.00205 }, { 0.000267 , 5.08e-05 , 0.000296 , -0.000128 , -1.75e-05 , -0.000261 , 0.000354 , 0 , 0 , 0 , 0 , 0 }, { -0.000259 , -0.000225 , -0.000134 , -0.000399 , -0.00022 , 5.61e-05 , 1.45e-05 , -0.000399 , -0.00145 , -0.00201 , -0.000793 , -0.00092 }, { -0.00117 , -0.00129 , -0.000751 , -0.00122 , -0.00143 , -0.00104 , -0.00138 , -0.00108 , -0.00121 , -0.00102 , -0.000913 , -0.00132 }, { -0.00186 , -0.00166 , -0.00158 , -0.00174 , -0.00167 , -0.0019 , -0.00102 , -0.000805 , -0.000779 , -0.000263 , -0.000164 , -0.000461 }, { -0.00151 , -0.00135 , -0.0013 , -0.00134 , -0.00132 , -0.00143 , -0.000603 , -0.000576 , -0.000571 , -7.53e-05 , -4.39e-05 , -0.000317 }, { -0.00166 , -0.00161 , -0.00148 , -0.00148 , -0.00129 , -0.00169 , -0.00119 , -0.00086 , -0.00172 , -0.0018 , -0.00125 , -0.00151 } }; // Hardcoded, 15o correction matrix for the amplitude parameter of the correction function, bins are [phibin][zbin] double correctionMatrixLateRuns[40][12] = { { 0.000114 , -8.83e-05 , 0.000528 , -8.9e-05 , -0.00022 , -0.000357 , -0.000213 , -0.000163 , -0.000792 , -0.000666 , -0.000543 , -0.000764 }, { 0.000446 , 0.000558 , -7.86e-05 , -0.000105 , -9.73e-05 , -0.000263 , -0.000173 , 0.000129 , -4.93e-05 , -6.08e-05 , -0.000176 , -0.00029 }, { 0.000953 , 0.000763 , 0.000427 , 0.000145 , 0.000363 , -2.55e-05 , 0.000359 , 0.000305 , 0.000352 , 0.000879 , 0.000528 , 6.47e-05 }, { 0.00088 , 0.000752 , 0.000357 , 0.000185 , 0.000142 , 1.42e-06 , 0.000368 , 0.000811 , 0.000901 , 0.000543 , 0.000828 , 0.000172 }, { -0.000738 , -0.000591 , -0.000974 , -0.000571 , -0.000404 , -0.000397 , 0.000505 , 0.000376 , 0.00053 , 0.000898 , 0.00044 , 6.72e-05 }, { -0.000963 , -0.000277 , -0.000583 , -0.000642 , -0.000338 , -0.000361 , 0.000167 , 0.00103 , 0.000815 , 0.00071 , 0.000591 , 0.000152 }, { 0.000426 , 0.000499 , 0.000576 , 0.000281 , 0.00011 , -5.69e-05 , -0.00305 , -0.0028 , -0.00235 , -0.00273 , -0.00219 , -0.00196 }, { 0.000178 , 0.000189 , -0.000147 , 0.000163 , 0.00077 , 1.37e-05 , -0.00465 , -0.00543 , -0.00505 , -0.0047 , -0.00394 , -0.00305 }, { -0.000225 , -0.000128 , -0.000944 , -0.000217 , 0.000501 , -0.000481 , -0.00216 , -0.00246 , -0.00255 , -0.00293 , -0.00197 , -0.00162 }, { 0 , 0 , 0 , 0 , 0 , 0.00143 , 0.00135 , 0.00139 , 0.00132 , 0.000918 , 0.000703 , 0.000998 }, { 0 , 0 , 0 , 0 , 0 , 0.000747 , 0.000278 , 0.000759 , 0.000592 , 0.000288 , 0.000902 , 0.000388 }, { 0 , 0 , 0 , 0 , 0 , 0.000283 , -0.000195 , 0.000452 , 0.000454 , 0.000362 , 0.000776 , 0.000565 }, { 0 , 0 , 0 , 0 , 0 , -9.02e-05 , -0.000432 , 0.000709 , 0.000771 , 3.08e-06 , 0.000861 , 0.000676 }, { 0 , 0 , 0 , 0 , 0 , -0.00115 , -0.00114 , -0.000507 , -0.000299 , -0.000238 , 0.00016 , 0.000344 }, { 0 , 0 , 0.0104 , 0.0109 , 0.0154 , 0 , -0.00107 , -0.000138 , -0.000275 , -0.000841 , 0.0001 , -0.000255 }, { 0.000763 , 0.001 , 0.000771 , 0.000781 , 0.00131 , 0.00108 , 0.000179 , 0.000676 , 0.00026 , -8.63e-05 , 0.000926 , 0.000429 }, { 0.000838 , 0.00111 , 0.000807 , 0.000881 , 0.000947 , 0.00062 , -9.65e-05 , 0.000507 , 0.000344 , -0.000205 , 0.000252 , 0.000238 }, { 0.000909 , 0.000858 , 0.000463 , 0.000592 , 0.000875 , 0.000575 , 0.00113 , 0.00277 , 0.00287 , 0.00287 , 0.00259 , 0.00146 }, { 5.73e-05 , 0.000894 , -0.000269 , 0.000742 , 0.00078 , 9.85e-05 , 5.43e-05 , 0.00232 , 0.00233 , 0.00171 , 0.00188 , 0.00161 }, { 0.000354 , 0.00126 , 0.000932 , 0.000969 , 0.000791 , 0.000384 , 0.000298 , 0.000732 , 0.000442 , 0.000268 , 0.000245 , 0.000317 }, { 0.000907 , 0.00114 , 0.000664 , 0.000916 , 0.000624 , 0.000659 , 0.000404 , 0.000142 , 0.000299 , -1.87e-05 , 0.000312 , 0.000397 }, { -0.0021 , -0.00186 , -0.00232 , -0.00254 , -0.00282 , -0.00313 , -0.00368 , -0.00414 , -0.0035 , -0.00277 , -0.00258 , -0.00275 }, { -0.00185 , -0.00184 , -0.00238 , -0.00253 , -0.00328 , -0.00332 , -0.00405 , -0.00389 , -0.00411 , -0.00388 , -0.00347 , -0.00355 }, { -0.000455 , -0.000429 , -0.00048 , -0.000618 , -0.000634 , -0.000348 , 0.00017 , 0 , 0 , 0 , 0 , 0 }, { -0.000758 , -0.000642 , -0.00118 , -0.00106 , -0.000257 , -0.00116 , -0.00131 , -0.00208 , -0.00211 , -0.00167 , -0.00139 , -0.000702 }, { -0.0021 , -0.00156 , -0.00168 , -0.00185 , -0.00194 , -0.002 , -0.00184 , -0.0015 , -0.0015 , -0.00154 , -0.00159 , -0.000732 }, { -0.00126 , -0.00168 , -0.00245 , -0.00245 , -0.00266 , -0.00241 , -0.00103 , -0.00156 , -0.00185 , -0.00119 , -0.00135 , -0.000824 }, { 0 , 0 , 0 , 0 , 0 , 0 , -0.00114 , -0.0013 , -0.00144 , -0.00147 , -0.00133 , -0.00124 }, { 0.00153 , 0.000797 , 0.00115 , 0.00136 , 0.000833 , 0.000597 , 0.000257 , -0.000188 , -0.000506 , -0.000139 , -0.000359 , -0.00043 }, { -0.000104 , 0.000889 , 0.000451 , 0.000561 , 0.0011 , 0.000489 , -0.000186 , 0.000132 , -9.97e-05 , -0.000682 , -0.000475 , -3.75e-07 }, { 0.000518 , 0.00193 , 0.00214 , 0.00138 , 0.00169 , 0.00273 , -7.75e-05 , -0.000903 , -0.000568 , -0.00031 , -0.000771 , 7.98e-05 }, { 0.00112 , 0.0013 , 0.00135 , 0.0014 , 0.00151 , 0.00137 , -0.00021 , -0.000277 , -0.000672 , -0.000424 , 0.000329 , -4.97e-05 }, { 0.000295 , 8.55e-05 , 0.000501 , 5.88e-06 , -0.000251 , -0.000605 , -0.000998 , -0.00077 , -0.000605 , -0.00068 , -0.000894 , -0.000468 }, { -4.39e-05 , 9.05e-05 , -0.000151 , -0.000384 , -0.000385 , -0.000908 , -0.00145 , -0.00138 , -0.00154 , -0.00148 , -0.00141 , -0.00108 }, { 0.000924 , 0.000762 , 0.00087 , 0.000478 , 0.000699 , 0.000349 , 0.00135 , 0 , 0 , 0 , 0 , 0 }, { 0.000534 , 0.000273 , 0.000512 , 0.000367 , 0.000547 , 0.000747 , 0.000785 , 0.00025 , -0.00042 , -0.000993 , -0.000249 , -0.000247 }, { -0.000631 , -0.000784 , -0.000278 , -0.000822 , -0.00087 , -0.000478 , -0.00085 , -0.000419 , -0.000445 , -0.000433 , -0.000376 , -0.000552 }, { -0.00109 , -0.000822 , -0.000965 , -0.00104 , -0.000902 , -0.00119 , -0.000429 , -9.94e-05 , -1.34e-05 , 0.000677 , 0.000541 , 0.000417 }, { -0.00102 , -0.000594 , -0.000451 , -0.000547 , -0.000505 , -0.000739 , 0.000298 , 0.000266 , 0.000262 , 0.000761 , 0.000835 , 0.000457 }, { -0.000854 , -0.000851 , -0.000773 , -0.000646 , -0.000455 , -0.00103 , -0.000426 , -0.0001 , -0.00087 , -0.000856 , -0.000199 , -0.000902 } }; double correctionMatrix18qr[40][12] = { { 3.01e-05 , -0.000348 , 0.000175 , -0.000178 , -0.000352 , -0.00048 , -9.39e-05 , -4.02e-05 , -0.000781 , -0.000814 , -0.000994 , -0.00118 }, { -3.66e-05 , 0.000134 , -0.000278 , -0.000282 , -0.000312 , -0.000596 , -0.000377 , -0.000285 , -0.000605 , -0.000816 , -0.00089 , -0.000993 }, { 0.000444 , 0.000189 , -0.000126 , -0.00023 , -0.00029 , -0.000784 , -0.000513 , -0.000792 , -0.000915 , -0.000563 , -0.00083 , -0.00115 }, { 0.000303 , 0.000198 , -0.000101 , -0.000236 , -0.000379 , -0.0006 , -0.000392 , -0.00017 , -0.000497 , -0.00079 , -0.000801 , -0.00132 }, { -5.63e-05 , -0.000232 , -0.000446 , -0.000258 , -0.000222 , -0.000611 , 0.00046 , 8.04e-05 , -0.000261 , -0.000168 , -0.000738 , -0.00104 }, { -0.000382 , 0.000214 , -0.000113 , -0.000266 , -0.000282 , -0.000571 , -7.03e-06 , 0.000378 , -0.000145 , -0.000658 , -0.000851 , -0.00126 }, { -0.000314 , -0.000131 , -0.000121 , -0.000658 , -0.00108 , -0.00127 , -0.000857 , -0.000313 , -0.00131 , -0.00222 , -0.0019 , -0.00216 }, { -0.000168 , -0.000175 , -0.000693 , -0.000546 , -0.00034 , -0.00122 , -0.00156 , -0.00148 , 0.00147 , 0.00485 , 0 , 0 }, { -0.000493 , -0.00042 , -0.0014 , -0.00105 , -0.000674 , -0.00177 , 0.00374 , 0.00464 , 0.00363 , 0.00285 , 0.00209 , 0.00217 }, { 0 , 0 , 0.00296 , -0.00198 , 0.00383 , 0.00409 , 0.00394 , 0.00364 , 0.00296 , 0.0023 , 0.00196 , 0.00182 }, { 0 , 0 , 0.0022 , -0.000315 , 0.00249 , 0.00136 , 0.00183 , 0.00176 , 0.00128 , 0.00089 , 0.0014 , 0.000997 }, { 0 , 0 , -0.000491 , -0.00314 , 0.000415 , -0.000828 , -0.000804 , -0.000343 , -0.000612 , -0.000756 , -9.92e-05 , -0.000223 }, { 0 , 0 , 0 , -0.00338 , -0.00133 , -0.0016 , -0.00148 , -0.000542 , -0.000532 , -0.00108 , -0.000266 , 5.56e-05 }, { 0 , 0 , -0.00197 , -0.000121 , 0.00274 , -0.00164 , -0.000737 , -0.000457 , -0.000738 , -0.000795 , -0.000303 , -0.000253 }, { 0.0381 , 0.0384 , 0.0382 , 0.0381 , 0.0327 , -0.00213 , -0.000641 , -0.000153 , -0.000493 , -0.00117 , -0.000505 , -0.000819 }, { 0.000697 , 0.000796 , 0.000488 , 0.000319 , 0.000648 , 0.000447 , -0.000593 , -0.000189 , -0.000621 , -0.000989 , -0.000166 , -0.000565 }, { 0.000641 , 0.000943 , 0.000484 , 0.00032 , 0.000398 , -7.95e-05 , -0.000884 , -0.000349 , -0.000552 , -0.000854 , -0.000398 , -0.000603 }, { 0.000994 , 0.00106 , 0.000681 , 0.000833 , 0.000968 , 0.000618 , 0.000948 , 0.00259 , 0.00247 , 0.00249 , 0.00254 , 0.00157 }, { -0.000193 , 0.000555 , -0.000574 , 0.000213 , 0.00032 , -0.000205 , -0.000259 , 0.00197 , 0.00202 , 0.0014 , 0.00175 , 0.00169 }, { -0.000254 , 0.000575 , 0.000249 , 0.000504 , 0.00055 , 0.000391 , 0.000349 , 0.000883 , 0.000766 , 0.000502 , 0.000708 , 0.00072 }, { 5.68e-05 , 0.000157 , -8.23e-05 , 0.000346 , 0.000356 , 0.000554 , 0.000616 , 0.000546 , 0.000718 , 0.000471 , 0.000653 , 0.000714 }, { -0.000778 , -0.00107 , -0.00155 , -0.0016 , -0.00175 , -0.00162 , -0.00174 , -0.00208 , -0.00142 , -0.000867 , -0.000789 , -0.000997 }, { -0.00152 , -0.00143 , -0.00212 , -0.00227 , -0.00274 , -0.00266 , -0.00292 , -0.00272 , -0.00297 , -0.00272 , -0.00239 , -0.00209 }, { -0.0157 , -0.0137 , -0.0128 , -0.0115 , -0.0105 , -0.009 , -0.00968 , -0.00967 , -0.00915 , -0.00824 , -0.00682 , -0.00729 }, { -0.00153 , -0.00165 , -0.00162 , -0.00109 , -0.00057 , -0.00013 , -0.000355 , -0.000806 , -0.00106 , -0.000644 , -2.2e-05 , 0.000153 }, { -0.00273 , -0.00193 , -0.00176 , -0.00144 , -0.00105 , -0.000498 , -0.000788 , -0.000203 , -0.000165 , -0.000284 , -0.000306 , 0.000395 }, { -0.00255 , -0.00264 , -0.00307 , -0.00271 , -0.00246 , -0.00186 , -0.00136 , -0.00145 , -0.00121 , -0.000624 , -0.000667 , -0.000184 }, { 0 , 0 , -0.000458 , -0.00131 , -0.00172 , 0.000326 , -0.00126 , -0.00105 , -0.000865 , -0.000789 , -0.000634 , -0.000581 }, { 0.00102 , -1.05e-06 , 2.36e-05 , 0.000512 , 0.000199 , 0.00039 , 7.07e-05 , -0.000186 , -0.000294 , 0.000207 , -0.000492 , -0.00066 }, { -0.00147 , -0.000115 , -0.00053 , -0.000636 , 0.000462 , 0.000681 , -0.000226 , 0.000333 , 0.000304 , -0.000599 , -0.000279 , 0.000134 }, { 0.000101 , 0.00133 , 0.00168 , 0.00163 , 0.00296 , 0.0066 , 0.000729 , -0.000416 , 0.000343 , 0.000614 , 7.65e-05 , 0.000909 }, { 0.000838 , 0.000816 , 0.00058 , 0.000685 , 0.000788 , 0.000709 , 0.000573 , 0.000725 , 0.000386 , 0.000624 , 0.00141 , 0.000649 }, { 0.000745 , 0.000744 , 0.000829 , 0.000603 , 0.00048 , 0.000523 , 0.000111 , 0.00048 , 0.00091 , 0.000984 , 0.000839 , 0.000888 }, { 0.000875 , 0.000709 , 0.000517 , 0.000414 , 0.000593 , 0.000453 , 0.00012 , 0.000404 , 0.000407 , 0.000602 , 0.000663 , 0.000876 }, { 0.00138 , 0.000892 , 0.00106 , 0.000703 , 0.00102 , 0.000924 , 0.00108 , -0.00381 , -0.00114 , 0 , 0 , 0 }, { 0.000745 , 0.000634 , 0.000695 , 0.000339 , 0.000852 , 0.0015 , 0.000817 , 0.000745 , 0.000152 , -0.000477 , 0.000581 , 0.000734 }, { -0.000665 , -0.000774 , -0.000275 , -0.00044 , -0.00036 , 0.000261 , -0.000452 , -2.83e-05 , 8.24e-05 , 0.000268 , 0.000279 , 6e-05 }, { -0.00102 , -0.000869 , -0.00086 , -0.00101 , -0.000839 , -0.000936 , -0.000224 , -1.18e-05 , 0.000113 , 0.000639 , 0.000569 , 0.00054 }, { -0.000759 , -0.000534 , -0.000496 , -0.000637 , -0.000512 , -0.000621 , 0.00024 , 8.03e-05 , -3.65e-06 , 0.000345 , 0.000294 , 0.000111 }, { -0.000334 , -0.000479 , -0.00044 , -0.00059 , -0.00033 , -0.000797 , -0.000106 , 0.000207 , -0.000844 , -0.000963 , -0.000238 , -0.000428 } }; Double_t correctedDCA = 1.; TString lProductionName = GetPeriodNameByLPM("LPMProductionTag"); if(lProductionName.Contains("LHC15o")) { if(aodEvent->GetRunNumber() <= 246276 && pt > 0.) correctedDCA = oldIP - correctionMatrixEarlyRuns[PhiBin][zBin]*1.22/(1.+1./(0.57+9.8/(pt*pt))); if(aodEvent->GetRunNumber() > 246276 && pt > 0.) correctedDCA = oldIP - correctionMatrixLateRuns[PhiBin][zBin]*1.22/(1.+1./(0.57+9.8/(pt*pt))); dcaxy = correctedDCA; } if(lProductionName.Contains("LHC18")) // 18r and q have same correction { if(pt > 0.) correctedDCA = oldIP - correctionMatrix18qr[PhiBin][zBin]*1.22/(1.+1./(0.57+9.8/(pt*pt))); dcaxy = correctedDCA; } } Int_t AliAnalysisTaskHFEIPCorrection::ReturnRunBin(Int_t RunNr) { Int_t runList15o[183]={ 246994, 246991, 246989, 246984, 246982, 246980, 246949, 246948, 246945, 246942, 246937, 246930, 246928, 246871, 246870, 246867, 246865, 246864, 246859, 246858, 246855, 246851, 246847, 246846, 246845, 246844, 246810, 246809, 246808, 246807, 246806, 246805, 246804, 246766, 246765, 246763, 246760, 246759, 246758, 246757, 246755, 246751, 246750, 246676, 246675, 246671, 246648, 246639, 246583, 246575, 246568, 246567, 246553, 246543, 246540, 246495, 246493, 246488, 246487, 246434, 246433, 246431, 246428, 246424, 246392, 246391, 246390, 246276, 246275, 246272, 246271, 246225, 246222, 246220, 246217, 246187, 246185, 246182, 246181, 246180, 246178, 246153, 246152, 246151, 246148, 246115, 246113, 246089, 246087, 246053, 246052, 246049, 246048, 246042, 246037, 246036, 246012, 246003, 246001, 245996, 245963, 245954, 245952, 245949, 245923, 245833, 245831, 245829, 245793, 245785, 245775, 245766, 245759, 245752, 245738, 245731, 245729, 245705, 245702, 245700, 245692, 245683, 245554, 245545, 245544, 245543, 245542, 245540, 245535, 245507, 245505, 245504, 245501, 245497, 245496, 245454, 245453, 245452, 245450, 245446, 245441, 245439, 245411, 245410, 245409, 245407, 245401, 245397, 245396, 245353, 245349, 245347, 245346, 245345, 245343, 245341, 245259, 245256, 245253, 245233, 245232, 245231, 245230, 245152, 245151, 245148, 245146, 245145, 245068, 245066, 245064, 245061, 244983, 244982, 244980, 244975, 244972, 244918, 244917, 244911, 244889, 244827, 244824}; Int_t runList18r[171]={296649, 296690, 296691, 296692, 296693, 296694, 296696, 296698, 296749, 296750, 296752, 296780, 296781, 296782, 296783, 296784, 296785, 296786, 296787, 296790, 296791, 296792, 296793, 296794, 296799, 296835, 296836, 296838, 296839, 296848, 296849, 296850, 296851, 296852, 296890, 296891, 296893, 296894, 296899, 296900, 296903, 296930, 296931, 296932, 296934, 296935, 296938, 296940, 296941, 296966, 296967, 296968, 296969, 296970, 296971, 296972, 296973, 296974, 296975, 296976, 296977, 296979, 297028, 297029, 297030, 297031, 297035, 297036, 297085, 297116, 297117, 297118, 297119, 297123, 297124, 297127, 297128, 297129, 297132, 297133, 297193, 297194, 297195, 297196, 297218, 297219, 297220, 297221, 297222, 297277, 297278, 297310, 297311, 297312, 297313, 297315, 297316, 297317, 297318, 297319, 297320, 297321, 297322, 297323, 297324, 297325, 297326, 297328, 297329, 297331, 297332, 297333, 297335, 297336, 297363, 297366, 297367, 297370, 297371, 297372, 297379, 297380, 297403, 297404, 297405, 297406, 297407, 297408, 297413, 297414, 297415, 297441, 297442, 297443, 297444, 297445, 297446, 297447, 297448, 297449, 297450, 297451, 297452, 297479, 297481, 297483, 297484, 297485, 297512, 297513, 297537, 297538, 297539, 297540, 297541, 297542, 297543, 297544, 297547, 297548, 297549, 297555, 297556, 297557, 297558, 297588, 297589, 297590, 297595, 297623, 297624}; Int_t runList18q[234]={295274, 295369, 295370, 295402, 295408, 295419, 295420, 295424, 295426, 295427, 295428, 295429, 295430, 295431, 295432, 295434, 295435, 295436, 295437, 295438, 295439, 295440, 295456, 295488, 295494, 295525, 295526, 295530, 295579, 295581, 295582, 295584, 295585, 295586, 295587, 295588, 295589, 295610, 295611, 295612, 295615, 295665, 295666, 295667, 295668, 295671, 295673, 295675, 295676, 295677, 295712, 295713, 295714, 295716, 295717, 295718, 295719, 295720, 295721, 295722, 295723, 295725, 295753, 295754, 295755, 295756, 295757, 295758, 295759, 295760, 295761, 295762, 295763, 295786, 295787, 295788, 295791, 295816, 295817, 295818, 295819, 295820, 295821, 295822, 295825, 295826, 295829, 295830, 295831, 295853, 295854, 295855, 295856, 295857, 295859, 295860, 295861, 295862, 295863, 295872, 295878, 295881, 295906, 295907, 295908, 295909, 295910, 295912, 295913, 295914, 295915, 295916, 295936, 295937, 295938, 295941, 295942, 295943, 295945, 295946, 295947, 296008, 296009, 296012, 296013, 296016, 296060, 296061, 296062, 296063, 296064, 296065, 296066, 296067, 296068, 296074, 296123, 296124, 296127, 296128, 296132, 296133, 296134, 296135, 296136, 296137, 296141, 296142, 296143, 296191, 296192, 296194, 296195, 296196, 296197, 296198, 296240, 296241, 296242, 296243, 296244, 296246, 296247, 296269, 296270, 296273, 296275, 296277, 296278, 296279, 296280, 296303, 296304, 296305, 296307, 296309, 296310, 296312, 296352, 296353, 296354, 296355, 296357, 296358, 296359, 296360, 296375, 296376, 296377, 296378, 296379, 296380, 296381, 296382, 296383, 296414, 296415, 296419, 296420, 296421, 296422, 296423, 296424, 296433, 296472, 296508, 296509, 296510, 296511, 296512, 296513, 296514, 296515, 296516, 296517, 296547, 296548, 296549, 296550, 296551, 296552, 296553, 296554, 296555, 296594, 296614, 296615, 296616, 296617, 296618, 296619, 296621, 296622, 296623}; TString lProductionName = GetPeriodNameByLPM("LPMProductionTag"); if(lProductionName.Contains("LHC15o")) for(int i=0;i<183;i++) if(runList15o[i]==RunNr) return i+1; if(lProductionName.Contains("LHC18r")) for(int i=0;i<171;i++) if(runList18r[i]==RunNr) return i+1; if(lProductionName.Contains("LHC18q")) for(int i=0;i<234;i++) if(runList18q[i]==RunNr) return i+1; return 0; } TString AliAnalysisTaskHFEIPCorrection::GetPeriodNameByLPM(TString lTag) // This is copied from the mult selection task { //================================== // Setup initial Info Bool_t lLocated = kFALSE; TString lProductionName = ""; //================================== // Get alirootVersion object title AliInputEventHandler* handler = dynamic_cast<AliInputEventHandler*> (AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()); if (!handler) return lProductionName; //failed! TObject* prodInfoData = handler->GetUserInfo()->FindObject("alirootVersion"); if (!prodInfoData) return lProductionName; //failed! TString lAlirootVersion(prodInfoData->GetTitle()); //================================== // Get Production name TObjArray* lArrStr = lAlirootVersion.Tokenize(";"); if(lArrStr->GetEntriesFast()) { TIter iString(lArrStr); TObjString* os=0; Int_t j=0; while ((os=(TObjString*)iString())) { if( os->GetString().Contains(lTag.Data()) ){ lLocated = kTRUE; lProductionName = os->GetString().Data(); //Remove Label lProductionName.ReplaceAll(lTag.Data(),""); //Remove any remaining whitespace (just in case) lProductionName.ReplaceAll("=",""); lProductionName.ReplaceAll(" ",""); } j++; } } //Memory cleanup delete lArrStr; //Return production name return lProductionName; } //________________________________________________________________________ void AliAnalysisTaskHFEIPCorrection::Process(AliAODEvent *const aodEvent) { // Main loop // Called for each event EventSelectionSteps->Fill(4); if(!(((AliInputEventHandler*)(AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()))->IsEventSelected() & (AliVEvent::kCentral | AliVEvent::kSemiCentral | AliVEvent::kMB | AliVEvent::kINT7))) return; bool SelectedBySemicentralTrigger = false; if((((AliInputEventHandler*)(AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()))->IsEventSelected() & (AliVEvent::kSemiCentral))) SelectedBySemicentralTrigger = true; //if(!(((AliInputEventHandler*)(AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()))->IsEventSelected() & (AliVEvent::kCentral | AliVEvent::kSemiCentral | AliVEvent::kMB))) //return; //if(!SelectedBySemicentralTrigger) return; EventSelectionSteps->Fill(5); if (!aodEvent) { Printf("ERROR: aodEvent not available"); //return; } AliInputEventHandler* handler = dynamic_cast<AliInputEventHandler*>( AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler()); if(!(handler)) printf("AOD inputhandler not available \n"); // TString lProductionName = GetPeriodNameByLPM("LPMProductionTag"); AliPIDResponse *pid = NULL; if(handler){ pid = handler->GetPIDResponse(); } else { AliError("No Handler"); } if(!pid){ AliError("No PID response"); return; } if(!fExtraCuts){ fExtraCuts = new AliHFEextraCuts("hfeExtraCuts","HFE Extra Cuts"); } fExtraCuts->SetRecEventInfo(aodEvent); Float_t centrality = -1; Float_t fV0Cent = -999.; Float_t fV0CentCalib = -999.; AliMultSelection *MultSelection = 0x0; MultSelection = (AliMultSelection*)aodEvent->FindListObject("MultSelection"); if(!MultSelection){ AliWarning("AliMultSelection object not found!"); }else{ fV0Cent = MultSelection->GetMultiplicityPercentile("V0M", false); fV0CentCalib = MultSelection->GetMultiplicityPercentile("V0M", true); centrality = fV0CentCalib; TString lProductionName = GetPeriodNameByLPM("LPMProductionTag"); if(lProductionName.Contains("LHC18")) // 18r and q have same correction centrality = fV0Cent; // 18qr calib does not seem to work yet } fCentrality->Fill(centrality); const AliAODVertex *vertex = aodEvent->GetPrimaryVertex(); const AliAODVertex *vertexSPD = aodEvent->GetPrimaryVertexSPD(); Double_t vcov[6]; vertex->GetCovMatrix(vcov); Double_t vtx[3]; Double_t vtxSPD[3]; vertex->GetXYZ(vtx); vertexSPD->GetXYZ(vtxSPD); AliAODVertex *correctedVertex; Bool_t madecorvtx = kFALSE; bool analyzeEvent=(TMath::Sqrt(vcov[5]) < 0.25 && TMath::Abs(vtx[2])<10. && TMath::Abs(vtx[2] - vtxSPD[2]) < 0.5 && centrality <= 100.); //hfetrackCuts->SetRecEvent(aodEvent); if((centrality>=20.0 && centrality<=50.0)) { EventSelectionSteps->Fill(0); if(TMath::Abs(vtx[2])<10.) { EventSelectionSteps->Fill(1); if(TMath::Abs(vtx[2] - vtxSPD[2]) < 0.5) { EventSelectionSteps->Fill(2); if(TMath::Sqrt(vcov[5])) EventSelectionSteps->Fill(3); } } } ULong_t status; AliEventplane* vEPa; Double_t qVx, qVy; double epCorrArray[2]; double epCorr; Double_t IP=0.; AliAODv0 * v0; AliAODTrack* V0Daughter[2]; Int_t V0MotherPdg, V0Daughter1Pdg, V0Daughter2Pdg; double recoRadius=0.; Double_t IPCorrected = 0.; Double_t IPCorrectedChField = 0.; Int_t RunBin = ReturnRunBin(aodEvent->GetRunNumber()); bool EPFlatteningReject = false; Float_t V0PlanePhi; Float_t V0APlanePhi; Float_t V0CPlanePhi; Double_t Qxloweta=0., Qyloweta=0., Qxhigheta=0., Qyhigheta=0.; Double_t Qxloweta2=0., Qyloweta2=0., Qxhigheta2=0., Qyhigheta2=0.; Double_t TPCPlanelow=0., TPCPlanelow2=0., TPCPlanehigh=0., TPCPlanehigh2=0.; ULong_t TrackStatus; if(analyzeEvent) { vEPa = fInputEvent->GetEventplane(); V0PlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,10,2,qVx,qVy)); if(V0PlanePhi>TMath::Pi()) V0PlanePhi -=TMath::Pi(); V0APlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,8,2,qVx,qVy)); if(V0APlanePhi > TMath::Pi()) V0APlanePhi = V0APlanePhi - TMath::Pi(); V0CPlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,9,2,qVx,qVy)); if(V0CPlanePhi > TMath::Pi()) V0CPlanePhi = V0CPlanePhi - TMath::Pi(); EPCentUncorrected->Fill(V0PlanePhi, centrality); double rndm = fRd->Rndm(); if(centrality>=20.0 && centrality<=50.0) { if(V0PlanePhi<0) V0PlanePhi+= 3.14159; if(V0PlanePhi>3.14159) V0PlanePhi-= 3.14159; // Just to be safe double correctionValue = 0.; TString lProductionName = GetPeriodNameByLPM("LPMProductionTag"); if(lProductionName.Contains("LHC15o")) correctionValue = 0.888359/(0.884154+0.171683*TMath::Gaus(V0PlanePhi,0.609013, 0.705609)+0.0634041*TMath::Erf((V0PlanePhi-1.99791)/0.492068)); if(lProductionName.Contains("LHC18")) // 18r and q have same correction correctionValue = fSplineCorr->Eval(V0PlanePhi); if(rndm>correctionValue) EPFlatteningReject = true; } } if(analyzeEvent && !EPFlatteningReject) { //correctedVertex = CorrectVertex(aodEvent, vtx[2]); // created without problematic ITS regions //madecorvtx = true; //Double_t vtxcorr[3]; //correctedVertex->GetXYZ(vtxcorr); // vEPa = fInputEvent->GetEventplane(); // Float_t V0PlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,10,2,qVx,qVy)); // if(V0PlanePhi>TMath::Pi()) V0PlanePhi -=TMath::Pi(); // Float_t V0APlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,8,2,qVx,qVy)); // if(V0APlanePhi > TMath::Pi()) V0APlanePhi = V0APlanePhi - TMath::Pi(); // Float_t V0CPlanePhi = TVector2::Phi_0_2pi(vEPa->CalculateVZEROEventPlane(fInputEvent,9,2,qVx,qVy)); // if(V0CPlanePhi > TMath::Pi()) V0CPlanePhi = V0CPlanePhi - TMath::Pi(); EPCent->Fill(V0PlanePhi, centrality); EPCentV0A->Fill(V0APlanePhi, centrality); EPCentV0C->Fill(V0CPlanePhi, centrality); if(centrality>=20.0 && centrality<=40.0) { EP2040->Fill(V0PlanePhi); //EP2040Corrected->Fill(epCorr); EP2040V0A->Fill(V0APlanePhi); EP2040V0C->Fill(V0CPlanePhi); } double DPhi =0.; Float_t dcaxy = -999., dcaz = -999.; Double_t dcaErr, dcaxyD; Double_t dcaxyC; AliAODTrack *track = 0x0; for(Int_t itrack = 0; itrack < fInputEvent->GetNumberOfTracks(); itrack++) { // Run track loop track = dynamic_cast<AliAODTrack *>(fInputEvent->GetTrack(itrack)); if(!track) continue; TrackStatus = track->GetStatus(); // Fill Event plane Q vectors if((TrackStatus & AliVTrack::kTPCrefit)) // require only ITS+ TPC refit if(track->GetTPCNcls()>=60 && TMath::Abs(track->Pt())>0.25) // basic tracking cuts { if(TMath::Abs(track->Eta()) < 0.8) { if(track->Eta() < 0.) { Qxloweta += TMath::Cos(2.*track->Phi()); Qyloweta += TMath::Sin(2.*track->Phi()); } if(track->Eta() > 0.) { Qxhigheta += TMath::Cos(2.*track->Phi()); Qyhigheta += TMath::Sin(2.*track->Phi()); } if(track->Eta() < -0.2) // Larger gap to reduce correlations { Qxloweta2 += TMath::Cos(2.*track->Phi()); Qyloweta2 += TMath::Sin(2.*track->Phi()); } if(track->Eta() > 0.2) { Qxhigheta2 += TMath::Cos(2.*track->Phi()); Qyhigheta2 += TMath::Sin(2.*track->Phi()); } } } if(!PassesTrackCuts(track)) continue; if(TMath::Abs(pid->NumberOfSigmasTOF(track, AliPID::kElectron))<3.) { if(centrality>=30.0 && centrality<=50.0) TPCnSigma->Fill(track->Pt(),pid->NumberOfSigmasTPC(track, AliPID::kElectron)); DPhi = track->Phi() - V0PlanePhi - TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP fTPCnSigmaCentIP->Fill(track->Pt(), pid->NumberOfSigmasTPC(track, AliPID::kElectron), centrality); else fTPCnSigmaCentOOP->Fill(track->Pt(), pid->NumberOfSigmasTPC(track, AliPID::kElectron), centrality); } if(PassesElectronPID(track, pid)) { DPhi = track->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); fExtraCuts->GetImpactParameters((AliVTrack *)track,dcaxy,dcaz); fExtraCuts->GetHFEImpactParameters((AliVTrack *)track,dcaxyD,dcaErr); IP = dcaxyD*track->Charge()*TMath::Sign(1.,aodEvent->GetMagneticField()); GetCorrectedImpactParameter(aodEvent, track, vtx[2], IPCorrected); IPCorrectedChField = IPCorrected *track->Charge()*TMath::Sign(1.,aodEvent->GetMagneticField()); if(centrality>=20.0 && centrality<=50.0) fIPData->Fill(track->Pt(), IPCorrectedChField); if(track->Pt() > 0.5) { DeltaPhi->Fill(DPhi); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP { if(centrality>=20.0 && centrality<=40.0 && !SelectedBySemicentralTrigger) fpTIP2040IP->Fill(track->Pt(), IPCorrectedChField); if(centrality>=30.0 && centrality<=50.0) fpTIP3050IP->Fill(track->Pt(), IPCorrectedChField); } else { if(centrality>=20.0 && centrality<=40.0 && !SelectedBySemicentralTrigger) fpTIP2040OOP->Fill(track->Pt(), IPCorrectedChField); if(centrality>=30.0 && centrality<=50.0) fpTIP3050OOP->Fill(track->Pt(), IPCorrectedChField); } } } if(PassesPionPID(track, pid) && centrality>=0.0 && centrality<=60.0) // To avoid calling the IP calculation for all tracks { GetCorrectedImpactParameter(aodEvent, track, vtx[2], IPCorrected); IPCorrectedChField = IPCorrected *track->Charge()*TMath::Sign(1.,aodEvent->GetMagneticField()); fDCAHadrons->Fill(track->Pt(), IPCorrectedChField); } if((PassesPionPID(track, pid) || PassesKaonPID(track, pid)) && track->Pt() > 0.5) // To avoid calling the IP calculation for all tracks { fExtraCuts->GetHFEImpactParameters((AliVTrack *)track,dcaxyD,dcaErr); //GetTrackImpactParameter(aodEvent, track, correctedVertex, dcaxyC); IP = dcaxyD*track->Charge()*TMath::Sign(1.,aodEvent->GetMagneticField()); GetCorrectedImpactParameter(aodEvent, track, vtx[2], IPCorrected); if(PassesPionPID(track, pid)) { if(centrality>=0.0 && centrality<=80.0 && track->Pt()>1.) { fDCAPhiZHadrons->Fill(track->Phi(), dcaxyD, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); if(aodEvent->GetRunNumber() <= 246276) fDCAPhiZHadronsEarlyRuns->Fill(track->Phi(), dcaxyD, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); else fDCAPhiZHadronsLateRuns->Fill(track->Phi(), dcaxyD, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); fDCAPhiZHadronsC->Fill(track->Phi(), IPCorrected, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); if(IsInMisalignedRegion(track, vtx[2])>0)fDCARegionRun->Fill(dcaxyD, IsInMisalignedRegion(track, vtx[2]) ,RunBin); else fDCARegionRun->Fill(dcaxyD, 5 ,RunBin); } if(centrality>=0.0 && centrality<=80.0 && track->Pt()>0.5) { fpTPhiZHadrons->Fill(track->Phi(), track->Pt(), vtx[2]+7.*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); if(aodEvent->GetRunNumber() <= 246276) fDCAPhipTHadronsEarlyRuns->Fill(dcaxyD, track->Phi(), track->Pt()); else fDCAPhipTHadronsLateRuns->Fill(dcaxyD, track->Phi(), track->Pt()); fDCAPhipTHadrons->Fill(dcaxyD, track->Phi(), track->Pt()); fDCAPhipTHadronsC->Fill(IPCorrected, track->Phi(), track->Pt()); } if(centrality>=20.0 && centrality<=50.0) fDCAWErrHadrons->Fill(track->Pt(), IP, dcaxyD/dcaErr); fDCAHadronsFineBins->Fill(track->Pt(), IP, centrality); } if(PassesKaonPID(track, pid)) { if(centrality>=0.0 && centrality<=80.0 && track->Pt()>1.) { fDCAPhiZKaons->Fill(track->Phi(), dcaxyD, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); fDCAPhiZKaonsC->Fill(track->Phi(), IPCorrected, vtx[2]+4.5*TMath::Tan(TMath::Pi()/2.-2.*TMath::ATan(TMath::Exp(-track->Eta())))); } if(centrality>=0.0 && centrality<=80.0 && track->Pt()>0.5) { fDCAPhipTKaons->Fill(dcaxyD, track->Phi(), track->Pt()); fDCAPhipTKaonsC->Fill(IPCorrected, track->Phi(), track->Pt()); } if(centrality>=20.0 && centrality<=50.0) fDCAKaons->Fill(track->Pt(), IP); if(centrality>=20.0 && centrality<=50.0) fDCAWErrKaons->Fill(track->Pt(), IP, dcaxyD/dcaErr); fDCAKaonsFineBins->Fill(track->Pt(), IP, centrality); } } } if(TMath::Abs(Qxloweta)>1.e-10) TPCPlanelow = TMath::ATan2(Qyloweta,Qxloweta)/2.; if(TMath::Abs(Qxloweta2)>1.e-10) TPCPlanelow2 = TMath::ATan2(Qyloweta2,Qxloweta2)/2.; if(TMath::Abs(Qxhigheta)>1.e-10) TPCPlanehigh = TMath::ATan2(Qyhigheta,Qxhigheta)/2.; if(TMath::Abs(Qxhigheta2)>1.e-10) TPCPlanehigh2 = TMath::ATan2(Qyhigheta2,Qxhigheta2)/2.; while(TPCPlanelow<0) TPCPlanelow+= 3.14159; while(TPCPlanelow>3.14159) TPCPlanelow-= 3.14159; while(TPCPlanelow2<0) TPCPlanelow2+= 3.14159; while(TPCPlanelow2>3.14159) TPCPlanelow2-= 3.14159; while(TPCPlanehigh<0) TPCPlanehigh+= 3.14159; while(TPCPlanehigh>3.14159) TPCPlanehigh-= 3.14159; while(TPCPlanehigh2<0) TPCPlanehigh2+= 3.14159; while(TPCPlanehigh2>3.14159) TPCPlanehigh2-= 3.14159; fEPLowHighCent->Fill(TPCPlanelow, TPCPlanehigh, centrality); fEPLowVZEROCent->Fill(TPCPlanelow, V0PlanePhi, centrality); fEPHighVZEROCent->Fill(TPCPlanehigh, V0PlanePhi, centrality); fEPLowHighCent2->Fill(TPCPlanelow2, TPCPlanehigh2, centrality); fEPLowVZEROCent2->Fill(TPCPlanelow2, V0PlanePhi, centrality); fEPHighVZEROCent2->Fill(TPCPlanehigh2, V0PlanePhi, centrality); fAODV0Cuts->SetEvent(aodEvent); for(int i= 0;i<aodEvent->GetNumberOfV0s();i++) { // v0 = aodEvent->GetV0(i); //if(!PassesTrackCuts(track)); if(fAODV0Cuts->ProcessV0(v0, V0MotherPdg, V0Daughter1Pdg, V0Daughter2Pdg)) { recoRadius = v0->RadiusSecVtx(); if(TMath::Abs(V0MotherPdg)==310 && recoRadius>0.5) { V0Daughter[0] = dynamic_cast<AliAODTrack *> (v0->GetSecondaryVtx()->GetDaughter(0)); // This is how to get the daughter particles in AODs, apparently V0Daughter[1] = dynamic_cast<AliAODTrack *> (v0->GetSecondaryVtx()->GetDaughter(1)); if(PassesMinimalTrackCuts(V0Daughter[0])) { fPionV0pTRNoCuts->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); DPhi = V0Daughter[0]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP fPionV0pTRNoCutsIP->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); else fPionV0pTRNoCutsOOP->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); } if(PassesMinimalTrackCuts(V0Daughter[1])) { fPionV0pTRNoCuts->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); DPhi = V0Daughter[1]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP fPionV0pTRNoCutsIP->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); else fPionV0pTRNoCutsOOP->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); } if(PassesITSTrackCuts(V0Daughter[0])) { fPionV0pTRWithCuts->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); DPhi = V0Daughter[0]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP fPionV0pTRWithCutsIP->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); else fPionV0pTRWithCutsOOP->Fill(V0Daughter[0]->Pt(), recoRadius, centrality); } if(PassesITSTrackCuts(V0Daughter[1])) { fPionV0pTRWithCuts->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); DPhi = V0Daughter[1]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP fPionV0pTRWithCutsIP->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); else fPionV0pTRWithCutsOOP->Fill(V0Daughter[1]->Pt(), recoRadius, centrality); } if(centrality>=20.0 && centrality<=50.0){ if(PassesMinimalTrackCuts(V0Daughter[0])) fPionV0pTTPC->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kPion)); if(PassesMinimalTrackCuts(V0Daughter[1])) fPionV0pTTPC->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kPion)); if(PassesMinimalTrackCuts(V0Daughter[0]) && V0Daughter[0]->GetTPCNcls()>=110 && V0Daughter[0]->GetTPCsignalN()>=80) fPionV0pTTPCWithCuts->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kPion)); if(PassesMinimalTrackCuts(V0Daughter[1]) && V0Daughter[1]->GetTPCNcls()>=110 && V0Daughter[1]->GetTPCsignalN()>=80) fPionV0pTTPCWithCuts->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kPion));} } // TOF eff occupancy dependence if(TMath::Abs(V0MotherPdg)==22) { V0Daughter[0] = dynamic_cast<AliAODTrack *> (v0->GetSecondaryVtx()->GetDaughter(0)); // This is how to get the daughter particles in AODs, apparently V0Daughter[1] = dynamic_cast<AliAODTrack *> (v0->GetSecondaryVtx()->GetDaughter(1)); if(PassesTrackCuts(V0Daughter[0])) { DPhi = V0Daughter[0]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP { if(centrality>=30.0 && centrality<=50.0) { fPionV0pTTPCIP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fPionV0pTTPCIPWTOF->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); } if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fEleV0TPCnSigmaCentIP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron), centrality); } else { if(centrality>=30.0 && centrality<=50.0) { fPionV0pTTPCOOP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fPionV0pTTPCOOPWTOF->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); } if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fEleV0TPCnSigmaCentOOP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron), centrality); } } if(PassesTrackCuts(V0Daughter[1])) { DPhi = V0Daughter[1]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP { if(centrality>=30.0 && centrality<=50.0) { fPionV0pTTPCIP->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[1], AliPID::kElectron))<3.) { fPionV0pTTPCIPWTOF->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); } } if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fEleV0TPCnSigmaCentIP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron), centrality); } else { if(centrality>=30.0 && centrality<=50.0) { fPionV0pTTPCOOP->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[1], AliPID::kElectron))<3.) fPionV0pTTPCOOPWTOF->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); } if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fEleV0TPCnSigmaCentOOP->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron), centrality); } } if(centrality>=30.0 && centrality<=50.0) { if(PassesTrackCutsNoFirst(V0Daughter[0])) { DPhi = V0Daughter[0]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP { fPionV0pTTPCIPnoFirst->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fPionV0pTTPCIPWTOFnoFirst->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); } else { fPionV0pTTPCOOPnoFirst->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[0], AliPID::kElectron))<3.) fPionV0pTTPCOOPWTOFnoFirst->Fill(V0Daughter[0]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[0], AliPID::kElectron)); } } if(PassesTrackCutsNoFirst(V0Daughter[1])) { DPhi = V0Daughter[1]->Phi() - V0PlanePhi - TMath::Pi(); while(DPhi<0.) DPhi += TMath::Pi(); if(DPhi < TMath::Pi()/4. || DPhi > TMath::Pi()*3./4.) // IP { fPionV0pTTPCIPnoFirst->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[1], AliPID::kElectron))<3.) fPionV0pTTPCIPWTOFnoFirst->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); } else { fPionV0pTTPCOOPnoFirst->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); if(TMath::Abs(pid->NumberOfSigmasTOF(V0Daughter[1], AliPID::kElectron))<3.) fPionV0pTTPCOOPWTOFnoFirst->Fill(V0Daughter[1]->Pt(), pid->NumberOfSigmasTPC(V0Daughter[1], AliPID::kElectron)); } } } } } } } //if(madecorvtx) delete correctedVertex; //PostData(1, fOutputContainer); } //________________________________________________________________________ void AliAnalysisTaskHFEIPCorrection::Terminate(const Option_t *) { // treeoutput->Write(); }
700aedf16a1e50b30a16b56e5bca48696090bfdd
43aa92e0713969fa3d3b0fd5d6a9776a442574bc
/QPanda-2.0.Core/QPanda/CSVIostream.h
8f4e5a79223f53b43f340e586d2569d9dc141856
[ "Apache-2.0" ]
permissive
xianfeic/QPanda-2.0
d4e36fdeb84994a9d3289f939d356706b7befa46
80585e5cde30a4132771136c4210e557cb185aef
refs/heads/master
2020-04-09T23:12:15.033306
2018-12-06T02:58:13
2018-12-06T02:58:13
160,650,001
1
0
null
2018-12-06T09:20:33
2018-12-06T09:20:33
null
UTF-8
C++
false
false
1,312
h
/* Copyright (c) 2017-2018 Origin Quantum Computing. All Right Reserved. Licensed under the Apache License 2.0 CVSIotream.h Author: Wangjing Created in 2018-8-31 Classes for write and read CVS file */ #ifndef IO_CSV_STREAM_H #define IO_CSV_STREAM_H #include <iostream> #include <fstream> #include <istream> #include <sstream> #include <vector> #include <string> #include <list> #include <map> using namespace std; class CSVOfstream { public: CSVOfstream(); CSVOfstream(const string &filename); void open(const string &filename); bool is_open(); CSVOfstream & operator<<(const vector<pair<string, int>> &container); CSVOfstream & operator<<(const list<pair<string, int>> &container); CSVOfstream & operator<<(const map<string, int> &container); void close(); virtual ~CSVOfstream(); private: ofstream m_ofstream; }; class CSVIfstream { public: CSVIfstream(); CSVIfstream(const string &filename); void open(const string &filename); bool is_open(); CSVIfstream & operator>>(vector<pair<string, int>> &container); CSVIfstream & operator>>(list<pair<string, int>> &container); CSVIfstream & operator>>(map<string, int> &container); void close(); virtual ~CSVIfstream(); private: ifstream m_ifstream; }; #endif // IOCVSSTREAM_H
b3dccfacb595dffff0f31a068fd25f7f3fb78239
1d7f8363324c092b0f04144515bf0e46a0a14940
/CTest/CTest/ch7.cpp
d3acd9709d5a0e1544b6c767d73050bc63115046
[]
no_license
jtrfid/C-Repositories
ddd7f6ca82c275d299b8ffaca0b44b76c945f33d
c285cb308d23a07e1503c20def32b571876409be
refs/heads/master
2021-01-23T09:02:12.113799
2019-05-02T05:00:46
2019-05-02T05:00:46
38,694,237
0
0
null
null
null
null
GB18030
C++
false
false
5,440
cpp
#include "stdafx.h" #include <stdio.h> #include <stdlib.h> #include <string.h> //#include <Windows.h> /**************************************************************************************** ******************************** hanoni_show1() ****************************************************************************************/ //功能:汉诺塔问题算法的控制台动画演示程序 #define MAX 5 //塔的最大高度(层数),也是圆盘的最大个数与最大大小 //一个堆栈,用于模拟塔柱 struct stack { int space[MAX];//堆栈空间,用于塔柱的各层,存放的数字代表圆盘的大小 int p;//栈顶指针 }stacks[3];//三个塔柱 char star[MAX+1]; //存放星星的数组(用于表示圆盘) char space[MAX+1];//存放空格的数组 // 入栈,表示放入一个圆盘: // stackNum:塔号,number:圆盘大小 void push(int stackNum,int number) { if(stacks[stackNum].p>=MAX) { printf("错误:无法入栈,已到达栈顶。\n"); exit(0); } stacks[stackNum].space[stacks[stackNum].p++]=number; } // 出栈,表示取出一个圆盘: // stackNum:塔号,return::圆盘大小 int pop(int stackNum) { if(stacks[stackNum].p<=0) { printf("错误:无法出栈,已到达栈底。\n"); exit(0); } return stacks[stackNum].space[--stacks[stackNum].p]; } //显示当前塔的状态 void show() { int charCount;//统计当前行绘制了多少个字符 int i; //system("cls");//清屏函数 //最高层开始逐层绘制塔图 int taP= MAX; while(taP--) { for(i=0;i<3;i++) { charCount = 0; //若此层有圆饼,就绘制 if(taP<=stacks[i].p-1) { printf("%s",&star[MAX-stacks[i].space[taP]]); charCount+=stacks[i].space[taP]; } //补全空格 printf("%s|",&space[charCount]); } printf("\n"); } //sleep(500); //getchar(); } //移动圆饼:柱a->柱b void move(int a,int b) { push(b,pop(a)); printf("move %c to %c\n",a+'A',b+'A'); getchar(); } //汉诺塔主算法:n:圆饼数,a~c:三个塔柱 // 将n个盘从a移到b,借助c void Hanoi_1(int n,int a,int b,int c) { // 移动圆饼 if(n>0) { Hanoi_1(n-1,a,c,b); // n-1,a->c,借助b move(a,b); // 1个,a->b show(); //显示汉诺塔 Hanoi_1(n-1,c,b,a); // n-1,c->b,借助a } } //汉诺塔主算法:n:圆饼数,a~c:三个塔柱 // 将n个盘从a移到c,借助b void Hanoi_2(int n,int a,int b,int c) { // 移动圆饼 if(n>0) { Hanoi_2(n-1,a,c,b); // n-1,a->b,借助c move(a,c); // 1个,a->c show(); //显示汉诺塔 Hanoi_2(n-1,b,a,c); // n-1,b->c,借助a } } //汉诺塔主算法:n:圆饼数,a~c:三个塔柱 // 将n个盘从a移到c,借助b void Hanoi_3(int n,int a,int b,int c) { if (n==1) { printf("1111\n"); move(a,c); // 1个,a->c show(); //显示汉诺塔 } else { Hanoi_3(n-1,a,c,b); // n-1,a->b,借助c move(a,c); // 1个,a->c show(); //显示汉诺塔 Hanoi_3(n-1,b,a,c); // n-1,b->c,借助a } } //初始化一些变量 void init() { stacks[0].p = stacks[1].p = stacks[2].p =0; int i; for(i=0;i<MAX;i++) { star[i]='*'; //创建一个星星数组,便于绘图 space[i]=' '; //创建一个空格数组,便于绘图 } space[i]=star[i]='\0'; } void hanoi_show1() { init(); //放置圆饼:放入零号塔柱,依次放入大小为3~1的圆饼 //push(0,5); //push(0,4); push(0,3); push(0,2); push(0,1); show(); //显示放入圆饼后的汉诺塔 //Hanoi_1(5,0,1,2); // 将n个盘从a移到b,借助c ok //Hanoi_2(5,0,1,2); // 将n个盘从a移到c,借助b ok //Hanoi_1(3,0,1,2); // 将n个盘从a移到b,借助c ok //Hanoi_2(3,0,1,2); // 将n个盘从a移到c,借助b ok //Hanoi_1(3,0,2,1); // = Hanoi_2(3,0,1,2); ok Hanoi_3(3,0,1,2); // 将n个盘从a移到c,借助b ok } /**************************************************************************************** ******************************** hanoni_show1() end ****************************************************************************************/ /************* 编写函数,根据整型参数m的值,计算公式: t=1-1/2*2-1/3*3-...-1/m*m 的值。例如:m=5,则输出0.536389 *************/ double ch7_1(int m) { printf("=======ch7_1()\n"); double t=1.0; int i; for(i=2;i<=m;i++) { t-=1.0/(i*i); } return (t); } /***** 用函数递归方法以字符串形式输出一个整数。 *****/ void ch7_2(char *s,int n) { printf("=======ch7_2()\n"); int n1,i=0; // s存储n的逆序 while(n!=0) { n1=n%10; n=n/10; s[i++]='0'+n1; } // 正序 int j,tmp; for(j=0;j<i/2;j++) { tmp=s[j]; s[j]=s[i-j-1]; s[i-j-1]=tmp; } // 字符串末尾补'\0' s[i]='\0'; printf("s=%s\n",s); } /***** 用函数递归方法以字符串形式输出一个整数。 同p153,例7.20 *****/ void ch7_3(int n) { printf("=======ch7_3()\n"); if(n/10) ch7_3(n/10); putchar(n%10+'0'); } /***** 用函数递归方法以字符串形式输出一个整数。 *****/ void ch7_4(char *s,int n) { printf("=======ch7_4()\n"); if(n/10) ch7_4(s,n/10); int len=strlen(s); s[len]=n%10+'0'; s[len+1]='\0'; } void ch7() { printf("t=%lf\n",ch7_1(5)); // 递归 char s[10]; ch7_2(s,12345); printf("s=%s\n",s); ch7_3(12345); putchar('\n'); s[0]='\0'; ch7_4(s,12345); printf("s=%s\n",s); ////////////////// //hanoi_show1(); }
c4f6e586363b7adee64d321486db8c49405f5756
f3fdfe385fe2d2b3bf5147708fcf142a0b30f06d
/lib/NotificationSocket.cpp
dfe1aa896ed9a784ab2861f49e43075176e1e2c0
[ "MIT" ]
permissive
holgi-s/nearby-pp
985a4ce7671f1f3413fba2e328cb5e2c1c55c9e4
96d5000bb2dae4aad508cfc74e447a3215d791ea
refs/heads/master
2020-04-10T21:01:24.415109
2016-11-19T21:02:10
2016-11-19T21:02:10
61,833,462
0
0
null
null
null
null
UTF-8
C++
false
false
1,557
cpp
// // Created by Holger on 08.08.2016. // #include "NotificationSocket.h" SOCKET NotificationSocket::Create() { if(SOCKET loopSocket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) { struct sockaddr_in loop_addr, local_addr; loop_addr.sin_family = AF_INET; loop_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK); loop_addr.sin_port = htons(0); if(bind(loopSocket , (struct sockaddr*)&loop_addr, sizeof(loop_addr) ) >= 0) { socklen_t len = sizeof(local_addr); if(getsockname(loopSocket, (struct sockaddr*) &local_addr, &len) >= 0) { if(connect(loopSocket, (struct sockaddr*) &local_addr, sizeof(local_addr)) >= 0) { return loopSocket; } } } closesocket(loopSocket); } return INVALID_SOCKET; } void NotificationSocket::Notify(SOCKET s) { char buf = 'x'; send(s, &buf, sizeof(buf), 0); } void NotificationSocket::Clear(SOCKET s) { char buf = 0; struct sockaddr_in adr; socklen_t len = sizeof(adr); if(doubleCheck(s)) { int read = recvfrom(s, (char *) &buf, sizeof(buf), 0, (struct sockaddr *) &adr, &len); } } bool NotificationSocket::doubleCheck(SOCKET s) { fd_set readFds; FD_ZERO(&readFds); FD_SET(s, &readFds); struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 1; if(int activity = select(s + 1, &readFds, nullptr, nullptr, &tv)) { if(FD_ISSET(s, &readFds)) { return true; } } return false; }
eb17f6d9e7242dd6fa2110d847faded2707e516a
a267e7f6bba38658e3fb623c900f77c1596e1458
/lab_03/main.cpp
ebb6e3f8c237deee093f9bd3f29fb6324cca7efb
[]
no_license
nursimadonuk/summer_practice
c6ae3f70088c7b949ce5155b24691bd7fafe134a
452804db2918e14587b97a7b3f4a0a2100841bf4
refs/heads/master
2020-05-30T00:05:47.822734
2019-06-28T22:18:01
2019-06-28T22:18:01
189,451,988
0
0
null
null
null
null
UTF-8
C++
false
false
165
cpp
#include <iostream> #include "funcs.h" int main() { std::cout<<east_storage() << " billion gallons.\n"; minmax(); compare(); reverse_order(); return 0; }
46b9cc2e61a2f3cd223571359555f3e803f344d8
c103b05f32e105d9e8d5d1e1e6334e8d9cedc116
/my social network.cpp
ce78c609c767d18109a4289fc14e95dadad0c2c6
[]
no_license
tanaychaturvedi/GeekforGeeks-and-Interviewbit
c6263f1fcaa785ef44fa3b1d59c66ba84420742f
6f1bbbb837e58b232948624349c757e96eafc649
refs/heads/master
2022-12-24T19:55:53.058064
2020-10-03T18:04:47
2020-10-03T18:04:47
299,934,514
3
0
null
2020-09-30T13:50:05
2020-09-30T13:50:04
null
UTF-8
C++
false
false
749
cpp
#include<bits/stdc++.h> using namespace std; #define ll long long #define N 505 ll int n; void floydwarshal(ll int g[N][N]){ for(ll int k=0;k<=n;k++){ for(ll int i=0;i<=n;i++){ for(ll int j=0;j<=n;j++){ if(g[i][k]+g[k][j]>g[i][j]){ g[i][j]=g[i][k]+g[k][j]; } } } } for(ll int i=0;i<=n;i++){ for(ll int j=0;j<=n;j++){ if(g[i][j]>0){ cout<<i<<" "<<j<<" "<<g[i][j]<<" "; } } } cout<<"\n"; // return 0; } int main(){ ll int t; cin>>t; while(t--){ cin>>n; ll int graph[N][N]={0}; for(ll int i=0;i<n-1;i++){ ll int x; cin>>x; graph[i+2][x]=1; } for(ll int i=0;i<=n;i++){ for(ll int j=0;j<=n;j++){ if(graph[i][j]==0)graph[i][j]=INT_MIN; }} floydwarshal(graph); } return 0; }
50340a5bd1279dbeff09f9ff5b1ad88ffdcb6145
ffb0e669d7c81e05b4d236a187730976eafc985d
/source/color.hpp
cb5e4bb62d7a12f3cc04052bbdfa8470f296d857
[ "MIT" ]
permissive
ChristopherScholl/programmiersprachen-aufgabenblatt-4
76812465cf074fc7d5471b30db5355f4663a2b0f
e74344ca17ef379c80fcc49d7611359a960ca852
refs/heads/master
2020-06-02T03:28:28.976111
2019-06-12T09:46:46
2019-06-12T09:46:46
191,020,733
0
0
null
null
null
null
UTF-8
C++
false
false
168
hpp
# ifndef COLOR_HPP # define COLOR_HPP // Color data type definition struct Color { float r_ = 0.5f; float g_ = 0.5f; float b_ = 0.5f; }; # endif // COLOR_HPP
3e211d7cbe7200c01d004cf96b070db991ef2d9d
a1c96372b159bedf07c1440d706dff3f288a9c70
/2017/code/controlStatements/controls.cpp
b491c52cc1447f02de75b3ea09ba6e8fe64d46ad
[ "MIT" ]
permissive
jkalmar/PythonDays
5ab515d48e5aef89b86c608dfc21390f3c0c9445
9af6ec6b8e919af0c789e7e01a7486536ef61ff3
refs/heads/master
2020-06-06T00:57:33.661364
2019-06-23T18:16:40
2019-06-23T18:16:40
192,594,553
0
0
null
null
null
null
UTF-8
C++
false
false
1,475
cpp
#include <iostream> int main( int argc, char **argv ) { int control = 3; if( control ) { std::cout << "if berie 3 ako true" << std::endl; } if( control == 1 ) { std::cout << "1 sa nerovna 3" << std::endl; } else { std::cout << "else vetva zabrala" << std::endl; } if( control == 1 ) std::cout << "1 sa nerovna 3" << std::endl; else std::cout << "else vetva zabrala, zatvorky su nepovinne ked sa je iba jeden riadok za if alebo else" << std::endl; if( control != 1 ) std::cout << "1 sa nerovna 3" << std::endl; else std::cout << "else vetva zabrala, zatvorky su nepovinne ked sa je iba jeden riadok za if alebo else" << std::endl; std::cout << "ako je vidiet tak chyba moze nastat lahko" << std::endl; if( control == 1 ) { std::cout << "1 sa nerovna 3" << std::endl; } else if( control == 3 ) { std::cout << "3 sa rovna 3" << std::endl; } else { std::cout << "else sa nezavola" << std::endl; } switch( control ) { case 1: std::cout << "1" << std::endl; break; case 2: std::cout << "2" << std::endl; break; case 3: std::cout << "3" << std::endl; break; default: std::cout << "nieco ine" << std::endl; } return 0; }
4355cecda6b21064e084caa1dad7d8a4d6a9a01a
0366a8b918c9c479bc758bf5e0fea6251ddf4cb7
/libraries/chain/transfer_evaluator.cpp
09267021afa71d0daf1ed6d4474d6cd6d25ad77e
[ "MIT" ]
permissive
damir-rg/dascoin-blockchain
ee499821cb166a8eaaec3f6bf856526bab278089
0dd2b90af43a999340e7bf9ab65ea44761763d11
refs/heads/master
2020-03-11T23:42:57.603675
2018-04-20T13:45:12
2018-04-20T13:45:12
130,329,881
0
0
null
2018-04-20T08:01:39
2018-04-20T08:01:38
null
UTF-8
C++
false
false
14,264
cpp
/* * Copyright (c) 2015 Cryptonomex, Inc., and contributors. * * The MIT License * * 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 <graphene/chain/transfer_evaluator.hpp> #include <graphene/chain/account_object.hpp> #include <graphene/chain/exceptions.hpp> #include <graphene/chain/hardfork.hpp> #include <graphene/chain/is_authorized_asset.hpp> namespace graphene { namespace chain { void_result transfer_evaluator::do_evaluate( const transfer_operation& op ) { try { const database& d = db(); const account_object& from_account = op.from(d); const account_object& to_account = op.to(d); const asset_object& asset_type = op.amount.asset_id(d); try { GRAPHENE_ASSERT( is_authorized_asset( d, from_account, asset_type ), transfer_from_account_not_whitelisted, "'from' account ${from} is not whitelisted for asset ${asset}", ("from",op.from) ("asset",op.amount.asset_id) ); GRAPHENE_ASSERT( is_authorized_asset( d, to_account, asset_type ), transfer_to_account_not_whitelisted, "'to' account ${to} is not whitelisted for asset ${asset}", ("to",op.to) ("asset",op.amount.asset_id) ); if( asset_type.is_transfer_restricted() ) { GRAPHENE_ASSERT( from_account.id == asset_type.issuer || to_account.id == asset_type.issuer, transfer_restricted_transfer_asset, "Asset {asset} has transfer_restricted flag enabled", ("asset", op.amount.asset_id) ); } // Check if we are transferring dascoin FC_ASSERT( op.amount.asset_id == d.get_dascoin_asset_id(), "Can only transfer dascoins" ); // Check if account types are valid FC_ASSERT( (from_account.is_wallet() && to_account.is_custodian()) || (from_account.is_custodian() && to_account.is_wallet()), "One of the accounts must be a wallet account and other one must be a custodian account" ); // Check if there is enough cash balance in the source account bool insufficient_balance = d.get_balance( from_account, asset_type ).amount >= op.amount.amount; FC_ASSERT( insufficient_balance, "Insufficient Balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'", ("a",from_account.name)("t",to_account.name)("total_transfer",d.to_pretty_string(op.amount))("balance",d.to_pretty_string(d.get_balance(from_account, asset_type))) ); return void_result(); } FC_RETHROW_EXCEPTIONS( error, "Unable to transfer ${a} from ${f} to ${t}", ("a",d.to_pretty_string(op.amount))("f",op.from(d).name)("t",op.to(d).name) ); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result transfer_evaluator::do_apply( const transfer_operation& o ) { try { db().adjust_balance( o.from, -o.amount ); db().adjust_balance( o.to, o.amount ); return void_result(); } FC_CAPTURE_AND_RETHROW( (o) ) } void_result override_transfer_evaluator::do_evaluate( const override_transfer_operation& op ) { try { const database& d = db(); const asset_object& asset_type = op.amount.asset_id(d); GRAPHENE_ASSERT( asset_type.can_override(), override_transfer_not_permitted, "override_transfer not permitted for asset ${asset}", ("asset", op.amount.asset_id) ); FC_ASSERT( asset_type.issuer == op.issuer ); const account_object& from_account = op.from(d); const account_object& to_account = op.to(d); FC_ASSERT( is_authorized_asset( d, to_account, asset_type ) ); FC_ASSERT( is_authorized_asset( d, from_account, asset_type ) ); if( d.head_block_time() <= HARDFORK_419_TIME ) { FC_ASSERT( is_authorized_asset( d, from_account, asset_type ) ); } // the above becomes no-op after hardfork because this check will then be performed in evaluator FC_ASSERT( d.get_balance( from_account, asset_type ).amount >= op.amount.amount, "", ("total_transfer",op.amount)("balance",d.get_balance(from_account, asset_type).amount) ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result override_transfer_evaluator::do_apply( const override_transfer_operation& o ) { try { db().adjust_balance( o.from, -o.amount ); db().adjust_balance( o.to, o.amount ); return void_result(); } FC_CAPTURE_AND_RETHROW( (o) ) } void_result transfer_vault_to_wallet_evaluator::do_evaluate(const transfer_vault_to_wallet_operation& op) { try { const database& d = db(); // Check if we are transferring web assets or dascoin: // NOTE: this check must be modified to apply for every kind of web asset there is. FC_ASSERT ( op.asset_to_transfer.asset_id == d.get_web_asset_id() || op.asset_to_transfer.asset_id == d.get_dascoin_asset_id(), "Can only transfer web assets or dascoins" ); // Check if the accounts exist: const account_object& from_acc_obj = op.from_vault(d); const account_object& to_acc_obj = op.to_wallet(d); // Must be VAULT --> WALLET: FC_ASSERT( from_acc_obj.is_vault(), "Source '${f}' must be a vault account", ("f", from_acc_obj.name) ); FC_ASSERT( to_acc_obj.is_wallet(), "Destination '${t}' must be a wallet account", ("t", to_acc_obj.name) ); // Accounts must be tethered: FC_ASSERT( from_acc_obj.has_in_parents(op.to_wallet), "Accounts '${f}' and '${t}' must be tethered", ("f", from_acc_obj.name) ("t", to_acc_obj.name) ); // Get both balance objects: const auto& from_balance_obj = d.get_balance_object(op.from_vault, op.asset_to_transfer.asset_id); const auto& to_balance_obj = d.get_balance_object(op.to_wallet, op.asset_to_transfer.asset_id); if (op.asset_to_transfer.asset_id == d.get_dascoin_asset_id()) FC_ASSERT( op.reserved_to_transfer == 0, "Cannot transfer reserved dascoin"); // Check if we have enough cash balance in the FROM account: FC_ASSERT( from_balance_obj.balance >= op.asset_to_transfer.amount, "Insufficient balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'", ("a",from_acc_obj.name) ("t",to_acc_obj.name) ("total_transfer",d.to_pretty_string(op.asset_to_transfer)) ("balance",d.to_pretty_string(from_balance_obj.get_balance())) ); // Check if we have enough reserved balance in the FROM account: FC_ASSERT( from_balance_obj.reserved >= op.reserved_to_transfer, "Insufficient reserved balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'", ("a",from_acc_obj.name) ("t",to_acc_obj.name) ("total_transfer",d.to_pretty_string(asset(op.reserved_to_transfer, d.get_web_asset_id()))) ("balance",d.to_pretty_string(from_balance_obj.get_reserved_balance())) ); // If dascoin is being transferred, check daily limit constraint: if ( !from_acc_obj.disable_vault_to_wallet_limit && op.asset_to_transfer.asset_id == d.get_dascoin_asset_id() ) { FC_ASSERT( from_balance_obj.spent + op.asset_to_transfer.amount <= from_balance_obj.limit, "Cash limit has been exceeded, ${spent}/${max} on account ${a}", ("a",from_acc_obj.name) ("spent",d.to_pretty_string(from_balance_obj.get_spent_balance())) ("max",d.to_pretty_string(asset(from_balance_obj.limit, op.asset_to_transfer.asset_id))) ); } from_balance_obj_ = &from_balance_obj; to_balance_obj_ = &to_balance_obj; return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result transfer_vault_to_wallet_evaluator::do_apply(const transfer_vault_to_wallet_operation& op) { try { auto& d = db(); d.modify(*from_balance_obj_, [&](account_balance_object& from_b){ from_b.balance -= op.asset_to_transfer.amount; from_b.reserved -= op.reserved_to_transfer; from_b.spent += (op.asset_to_transfer.amount + op.reserved_to_transfer); }); d.modify(*to_balance_obj_, [&](account_balance_object& to_b){ to_b.balance += op.asset_to_transfer.amount; to_b.reserved += op.reserved_to_transfer; }); return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result transfer_wallet_to_vault_evaluator::do_evaluate(const transfer_wallet_to_vault_operation& op) { try { const database& d = db(); // Check if we are transferring web assets or dascoin: // NOTE: this check must be modified to apply for every kind of web asset there is. FC_ASSERT ( op.asset_to_transfer.asset_id == d.get_web_asset_id() || op.asset_to_transfer.asset_id == d.get_dascoin_asset_id(), "Can only transfer web assets or dascoins" ); // Check if the accounts exist: const account_object& from_acc_obj = op.from_wallet(d); const account_object& to_acc_obj = op.to_vault(d); // Must be WALLET --> VAULT: FC_ASSERT( from_acc_obj.is_wallet(), "Source '${f}' must be a wallet account", ("f", from_acc_obj.name) ); FC_ASSERT( to_acc_obj.is_vault(), "Destination '${t}' must be a vault account", ("t", to_acc_obj.name) ); // Accounts must be tethered: FC_ASSERT( from_acc_obj.has_in_vault(op.to_vault), "Accounts '${f}' and '${t}' must be tethered", ("f", from_acc_obj.name) ("t", to_acc_obj.name) ); // Get both balance objects: const auto& from_balance_obj = d.get_balance_object(op.from_wallet, op.asset_to_transfer.asset_id); const auto& to_balance_obj = d.get_balance_object(op.to_vault, op.asset_to_transfer.asset_id); if (op.asset_to_transfer.asset_id == d.get_dascoin_asset_id()) FC_ASSERT( op.reserved_to_transfer == 0, "Cannot transfer reserved dascoin"); // Check if we have enough balance in the FROM account: FC_ASSERT( from_balance_obj.balance >= op.asset_to_transfer.amount, "Insufficient balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'", ("a",from_acc_obj.name) ("t",to_acc_obj.name) ("total_transfer",d.to_pretty_string(op.asset_to_transfer)) ("balance",d.to_pretty_string(from_balance_obj.get_balance())) ); // Check if we have enough reserved balance in the FROM account: FC_ASSERT( from_balance_obj.reserved >= op.reserved_to_transfer, "Insufficient reserved balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'", ("a",from_acc_obj.name) ("t",to_acc_obj.name) ("total_transfer",d.to_pretty_string(asset(op.reserved_to_transfer, d.get_web_asset_id()))) ("balance",d.to_pretty_string(from_balance_obj.get_reserved_balance())) ); from_balance_obj_ = &from_balance_obj; to_balance_obj_ = &to_balance_obj; return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result transfer_wallet_to_vault_evaluator::do_apply(const transfer_wallet_to_vault_operation& op) { try { auto& d = db(); d.modify(*from_balance_obj_, [&](account_balance_object& from_b){ from_b.balance -= op.asset_to_transfer.amount; from_b.reserved -= op.reserved_to_transfer; }); d.modify(*to_balance_obj_, [&](account_balance_object& to_b){ to_b.balance += op.asset_to_transfer.amount; to_b.reserved += op.reserved_to_transfer; }); return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result update_euro_limit_evaluator::do_evaluate(const operation_type &op) { try { const database& d = db(); // from this moment there are no vault limits and this operation is deprecated if(d.head_block_time() >= HARDFORK_EXEX_102_TIME) FC_ASSERT( false, "This operation is deprecated!"); const auto license_admin_id = d.get_global_properties().authorities.license_administrator; const account_object& authority_obj = op.authority(d); const account_object& acc_obj = op.account(d); d.perform_chain_authority_check("license administration", license_admin_id, authority_obj); FC_ASSERT( acc_obj.is_vault(), "Account '${acc_id}' needs to be a vault account", ("acc_id", acc_obj.id) ); _account_obj = &acc_obj; return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result update_euro_limit_evaluator::do_apply(const operation_type &op) { try { auto& d = db(); d.modify(*_account_obj, [op](account_object &acc_obj){ acc_obj.disable_vault_to_wallet_limit = op.disable_limit; }); return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result remove_vault_limit_evaluator::do_evaluate(const operation_type &op) { try { const database& d = db(); const auto license_admin_id = d.get_global_properties().authorities.license_administrator; const account_object& authority_obj = op.authority(d); d.perform_chain_authority_check("license administration", license_admin_id, authority_obj); return {}; } FC_CAPTURE_AND_RETHROW((op)) } void_result remove_vault_limit_evaluator::do_apply(const operation_type &op) { try { auto& d = db(); d.remove_limit_from_all_vaults(); return {}; } FC_CAPTURE_AND_RETHROW((op)) } } } // graphene::chain
8b7ab1fed6217112fdb246f4d0626f8c56e779c0
91626de2cf1d6f58ae391a0f5dac4f2d4af5adb6
/include/boost/beast/core/detail/sha1.ipp
f38be7d1a353edf0b10e9f2d395bf4f2c0ded29d
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
Bayonetta5/beast
f7f2045776a4e986a865102de2c1af9b1f3eb30a
4b5719ec83a6c6396228e9a687e349daa0035638
refs/heads/master
2020-06-17T19:39:33.469305
2019-07-07T19:51:00
2019-07-07T19:51:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,977
ipp
// // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/beast // #ifndef BOOST_BEAST_DETAIL_SHA1_IPP #define BOOST_BEAST_DETAIL_SHA1_IPP #include <boost/beast/core/detail/sha1.hpp> #include <cstdint> #include <cstring> // Based on https://github.com/vog/sha1 /* Original authors: Steve Reid (Original C Code) Bruce Guenter (Small changes to fit into bglibs) Volker Grabsch (Translation to simpler C++ Code) Eugene Hopkinson (Safety improvements) Vincent Falco (beast adaptation) */ namespace boost { namespace beast { namespace detail { namespace sha1 { inline std::uint32_t rol(std::uint32_t value, std::size_t bits) { return (value << bits) | (value >> (32 - bits)); } inline std::uint32_t blk(std::uint32_t block[BLOCK_INTS], std::size_t i) { return rol( block[(i+13)&15] ^ block[(i+8)&15] ^ block[(i+2)&15] ^ block[i], 1); } inline void R0(std::uint32_t block[BLOCK_INTS], std::uint32_t v, std::uint32_t &w, std::uint32_t x, std::uint32_t y, std::uint32_t &z, std::size_t i) { z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); w = rol(w, 30); } inline void R1(std::uint32_t block[BLOCK_INTS], std::uint32_t v, std::uint32_t &w, std::uint32_t x, std::uint32_t y, std::uint32_t &z, std::size_t i) { block[i] = blk(block, i); z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); w = rol(w, 30); } inline void R2(std::uint32_t block[BLOCK_INTS], std::uint32_t v, std::uint32_t &w, std::uint32_t x, std::uint32_t y, std::uint32_t &z, std::size_t i) { block[i] = blk(block, i); z += (w^x^y) + block[i] + 0x6ed9eba1 + rol(v, 5); w = rol(w, 30); } inline void R3(std::uint32_t block[BLOCK_INTS], std::uint32_t v, std::uint32_t &w, std::uint32_t x, std::uint32_t y, std::uint32_t &z, std::size_t i) { block[i] = blk(block, i); z += (((w|x)&y)|(w&x)) + block[i] + 0x8f1bbcdc + rol(v, 5); w = rol(w, 30); } inline void R4(std::uint32_t block[BLOCK_INTS], std::uint32_t v, std::uint32_t &w, std::uint32_t x, std::uint32_t y, std::uint32_t &z, std::size_t i) { block[i] = blk(block, i); z += (w^x^y) + block[i] + 0xca62c1d6 + rol(v, 5); w = rol(w, 30); } inline void make_block(std::uint8_t const* p, std::uint32_t block[BLOCK_INTS]) { for(std::size_t i = 0; i < BLOCK_INTS; i++) block[i] = (static_cast<std::uint32_t>(p[4*i+3])) | (static_cast<std::uint32_t>(p[4*i+2]))<< 8 | (static_cast<std::uint32_t>(p[4*i+1]))<<16 | (static_cast<std::uint32_t>(p[4*i+0]))<<24; } inline void transform( std::uint32_t digest[], std::uint32_t block[BLOCK_INTS]) { std::uint32_t a = digest[0]; std::uint32_t b = digest[1]; std::uint32_t c = digest[2]; std::uint32_t d = digest[3]; std::uint32_t e = digest[4]; R0(block, a, b, c, d, e, 0); R0(block, e, a, b, c, d, 1); R0(block, d, e, a, b, c, 2); R0(block, c, d, e, a, b, 3); R0(block, b, c, d, e, a, 4); R0(block, a, b, c, d, e, 5); R0(block, e, a, b, c, d, 6); R0(block, d, e, a, b, c, 7); R0(block, c, d, e, a, b, 8); R0(block, b, c, d, e, a, 9); R0(block, a, b, c, d, e, 10); R0(block, e, a, b, c, d, 11); R0(block, d, e, a, b, c, 12); R0(block, c, d, e, a, b, 13); R0(block, b, c, d, e, a, 14); R0(block, a, b, c, d, e, 15); R1(block, e, a, b, c, d, 0); R1(block, d, e, a, b, c, 1); R1(block, c, d, e, a, b, 2); R1(block, b, c, d, e, a, 3); R2(block, a, b, c, d, e, 4); R2(block, e, a, b, c, d, 5); R2(block, d, e, a, b, c, 6); R2(block, c, d, e, a, b, 7); R2(block, b, c, d, e, a, 8); R2(block, a, b, c, d, e, 9); R2(block, e, a, b, c, d, 10); R2(block, d, e, a, b, c, 11); R2(block, c, d, e, a, b, 12); R2(block, b, c, d, e, a, 13); R2(block, a, b, c, d, e, 14); R2(block, e, a, b, c, d, 15); R2(block, d, e, a, b, c, 0); R2(block, c, d, e, a, b, 1); R2(block, b, c, d, e, a, 2); R2(block, a, b, c, d, e, 3); R2(block, e, a, b, c, d, 4); R2(block, d, e, a, b, c, 5); R2(block, c, d, e, a, b, 6); R2(block, b, c, d, e, a, 7); R3(block, a, b, c, d, e, 8); R3(block, e, a, b, c, d, 9); R3(block, d, e, a, b, c, 10); R3(block, c, d, e, a, b, 11); R3(block, b, c, d, e, a, 12); R3(block, a, b, c, d, e, 13); R3(block, e, a, b, c, d, 14); R3(block, d, e, a, b, c, 15); R3(block, c, d, e, a, b, 0); R3(block, b, c, d, e, a, 1); R3(block, a, b, c, d, e, 2); R3(block, e, a, b, c, d, 3); R3(block, d, e, a, b, c, 4); R3(block, c, d, e, a, b, 5); R3(block, b, c, d, e, a, 6); R3(block, a, b, c, d, e, 7); R3(block, e, a, b, c, d, 8); R3(block, d, e, a, b, c, 9); R3(block, c, d, e, a, b, 10); R3(block, b, c, d, e, a, 11); R4(block, a, b, c, d, e, 12); R4(block, e, a, b, c, d, 13); R4(block, d, e, a, b, c, 14); R4(block, c, d, e, a, b, 15); R4(block, b, c, d, e, a, 0); R4(block, a, b, c, d, e, 1); R4(block, e, a, b, c, d, 2); R4(block, d, e, a, b, c, 3); R4(block, c, d, e, a, b, 4); R4(block, b, c, d, e, a, 5); R4(block, a, b, c, d, e, 6); R4(block, e, a, b, c, d, 7); R4(block, d, e, a, b, c, 8); R4(block, c, d, e, a, b, 9); R4(block, b, c, d, e, a, 10); R4(block, a, b, c, d, e, 11); R4(block, e, a, b, c, d, 12); R4(block, d, e, a, b, c, 13); R4(block, c, d, e, a, b, 14); R4(block, b, c, d, e, a, 15); digest[0] += a; digest[1] += b; digest[2] += c; digest[3] += d; digest[4] += e; } } // sha1 void init(sha1_context& ctx) noexcept { ctx.buflen = 0; ctx.blocks = 0; ctx.digest[0] = 0x67452301; ctx.digest[1] = 0xefcdab89; ctx.digest[2] = 0x98badcfe; ctx.digest[3] = 0x10325476; ctx.digest[4] = 0xc3d2e1f0; } void update( sha1_context& ctx, void const* message, std::size_t size) noexcept { auto p = static_cast< std::uint8_t const*>(message); for(;;) { auto const n = (std::min)( size, sizeof(ctx.buf) - ctx.buflen); std::memcpy(ctx.buf + ctx.buflen, p, n); ctx.buflen += n; if(ctx.buflen != 64) return; p += n; size -= n; ctx.buflen = 0; std::uint32_t block[sha1::BLOCK_INTS]; sha1::make_block(ctx.buf, block); sha1::transform(ctx.digest, block); ++ctx.blocks; } } void finish( sha1_context& ctx, void* digest) noexcept { using sha1::BLOCK_INTS; using sha1::BLOCK_BYTES; std::uint64_t total_bits = (ctx.blocks*64 + ctx.buflen) * 8; // pad ctx.buf[ctx.buflen++] = 0x80; auto const buflen = ctx.buflen; while(ctx.buflen < 64) ctx.buf[ctx.buflen++] = 0x00; std::uint32_t block[BLOCK_INTS]; sha1::make_block(ctx.buf, block); if(buflen > BLOCK_BYTES - 8) { sha1::transform(ctx.digest, block); for(size_t i = 0; i < BLOCK_INTS - 2; i++) block[i] = 0; } /* Append total_bits, split this uint64_t into two uint32_t */ block[BLOCK_INTS - 1] = total_bits & 0xffffffff; block[BLOCK_INTS - 2] = (total_bits >> 32); sha1::transform(ctx.digest, block); for(std::size_t i = 0; i < sha1::DIGEST_BYTES/4; i++) { std::uint8_t* d = static_cast<std::uint8_t*>(digest) + 4 * i; d[3] = ctx.digest[i] & 0xff; d[2] = (ctx.digest[i] >> 8) & 0xff; d[1] = (ctx.digest[i] >> 16) & 0xff; d[0] = (ctx.digest[i] >> 24) & 0xff; } } } // detail } // beast } // boost #endif
d6f0e0555a5bb31b8fe5ddd6256c839459cbd50f
dd4bc9782dd41f08b7c8db4dad29f9702fce9743
/C@SKR/C++/36.cpp
b9b8d1bac321bcf0cf5c65ac0d7800c7ecd6eeec
[]
no_license
shubham3rajput/Practice
fee34db6ccb12305cf514195d0f6a1e3ada64c07
6785d36e4baa7c27f23c38adc4e581d281b5a04b
refs/heads/main
2022-12-25T20:14:09.018113
2020-10-09T13:33:55
2020-10-09T13:33:55
302,647,705
0
0
null
null
null
null
UTF-8
C++
false
false
264
cpp
#include<iostream> using namespace std; int main() { int skr[3][23]={{1,21,56},{39,45,89},{563,854,4899}}; for(int row=0;row<3;row++){ for (int column=0;column<3;column++){ cout << " " <<skr[row][column] << " "; } cout<<endl; } return 0; }
df1e1a44f6083f91e54f946cb3a27bc6a824a2fd
6a2d0a1aadd0e2ec27c493ea97336e119da22394
/06_11_2020/somar.cpp
f5769dd9eebb7050f5d4a7ca494a132752f6cfc2
[]
no_license
vitoremanuelpereirasilva/INF110
ce01138f7cf49aa333d6378c063f3f135bcd3577
c3ae4f29b27e5a85af1cd27485b38079c7cf1c32
refs/heads/main
2023-03-29T08:15:33.529997
2021-04-07T20:37:32
2021-04-07T20:37:32
355,675,986
1
0
null
null
null
null
UTF-8
C++
false
false
352
cpp
#include<iostream> using namespace std; int main(){ int n,x,soma,cont=0; cin>> n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } cin>>x; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ soma = a[i]+a[j]; if(x==soma){ cont++; } } } if(cont>=1){ cout<< "SIM"<< endl; }else{ cout<<"NAO"<<endl; } return 0; }
8d328528439112ee53a62f1a4f62e76e2cda0618
381707f03cc1dd605b4238c49abee7f62fbfbd88
/uvm_ml/1.3/UVM_ML-1.3/ml/frameworks/uvm/sc/base/uvm_common_phase.cpp
02f42eab9000e1e5802cfa92e4f2308cb8ab3f35
[ "Apache-2.0" ]
permissive
extraordinarymango/combinator-uvm
6fe88835a4781ed170db4f973cc631f1d72f665d
edbf4ae35b2085823160f3dba1a271b6acadb75d
refs/heads/master
2020-03-16T16:43:11.783263
2014-04-23T23:36:07
2014-04-23T23:36:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,579
cpp
//---------------------------------------------------------------------- // Copyright 2012 Advanced Micro Devices Inc. // All Rights Reserved Worldwide // // 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. //---------------------------------------------------------------------- /*! \file uvm_common_phase.cpp \brief Implementation of UVM-ML phasing. */ #define SC_INCLUDE_DYNAMIC_PROCESSES #include "base/uvm_common_phase.h" #include "base/uvm_component.h" #include "base/uvm_schedule.h" #include "base/uvm_globals.h" #include "uvm_imp_spec_macros.h" namespace uvm { using std::string; //------------------------------------------------------------------------------ // Constructor: uvm_common_phase //------------------------------------------------------------------------------ uvm_common_phase::uvm_common_phase(string name, uvm_schedule *p_schedule, uvm_phase_type type, uvm_phase_order phase_order) : uvm_phase(name, p_schedule, type, phase_order) { } //------------------------------------------------------------------------------ // Destructor: uvm_common_phase //------------------------------------------------------------------------------ uvm_common_phase::~uvm_common_phase() { } /* //------------------------------------------------------------------------------ // Function: execute // Execute callback // // Parameters: // state - what callback to call (start_phase, ready_to_end) //------------------------------------------------------------------------------ void uvm_common_phase::execute(uvm_component* pcomp) { uvm_component *pchild; uvm_component *pcomp_callback; int num_children; std::vector<uvm_component*> child_vec; uvm_callback_agent *p_callback_agent; uvm_component* comp; sc_module * pmodule; if (_type == RUNTIME_PHASE) { for (unsigned int i = 0; i < _comp_callback_vec.size(); i++) { pcomp_callback = _comp_callback_vec[i]; switch(_state) { case PHASE_READY_TO_START: pcomp_callback->phase_started(this); break; case PHASE_EXECUTING: std::cout << "spawning off run phase" << std::endl; if (_name.compare("run") == 0) { sc_spawn(sc_bind(&uvm_component::run_phase, pcomp_callback, this)); } else if (_name.compare("reset") == 0) pcomp_callback->reset_phase(this); else if (_name.compare("configure") == 0) pcomp_callback->configure_phase(this); else if (_name.compare("main") == 0) pcomp_callback->main_phase(this); else if (_name.compare("shutdown") == 0) pcomp_callback->shutdown_phase(this); else pcomp_callback->phase_execute(this); break; case PHASE_READY_TO_END: pcomp_callback->phase_ready_to_end(this); break; case PHASE_ENDED: pcomp_callback->phase_ended(this); break; default: break; } } p_callback_agent = _callback_map[_state]; p_callback_agent->call(); } else { if (_state != PHASE_EXECUTING) cout << "ERROR: Non-runtime phases, can only be executed" << endl; comp = pcomp; // TODO //if (comp == NULL) // comp = uvm_get_top(); // if (comp != NULL) { switch (_order) { case TOP_DOWN: if (_name.compare("build") == 0) { pmodule = comp; sc_get_curr_simcontext()->hierarchy_push(pmodule); comp->build_phase(this); } else if (_name.compare("final") == 0) comp->final_phase(this); else comp->phase_execute(this); // Find child child_vec = uvm_get_children(mod_vec[i]); for (j = 0; j < child_vec.size(); j++) { execute(child_vec[j]); } if (_name.compare("build") == 0) sc_get_curr_simcontext()->hierarchy_pop(); break; case BOTTOM_UP: child_vec = uvm_get_children(mod_vec[i]); for (k = 0; k < child_vec.size(); k++) { execute(child_vec[k]); } comp = DCAST<uvm_component*>(mod_vec[i]); if (_name.compare("extract") == 0) comp->extract_phase(this); else if (_name.compare("check") == 0) comp->check_phase(this); else if (_name.compare("report") == 0) comp->report_phase(this); else comp->phase_execute(this); break; default: break; }; p_callback_agent = _callback_map[PHASE_EXECUTING]; p_callback_agent->call(); } else { cout << "uvm_common_phase::execute() - no component top detected" << endl; } } } */ //------------------------------------------------------------------------------ // Function: process_state_executing_runtime // // Parameters: //------------------------------------------------------------------------------ void uvm_common_phase::process_state_executing_runtime(uvm_component *pcomp) { sc_process_handle process_handle; if (_name.compare("run") == 0) { process_handle = sc_spawn(sc_bind(&uvm_component::run_phase, pcomp, this)); pcomp->set_run_handle(process_handle); } else if (_name.compare("reset") == 0) { process_handle = sc_spawn(sc_bind(&uvm_component::reset_phase, pcomp, this)); pcomp->set_reset_handle(process_handle); } else if (_name.compare("configure") == 0) { process_handle = sc_spawn(sc_bind(&uvm_component::configure_phase, pcomp, this)); pcomp->set_configure_handle(process_handle); } else if (_name.compare("main") == 0) { process_handle = sc_spawn(sc_bind(&uvm_component::main_phase, pcomp, this)); pcomp->set_main_handle(process_handle); } else if (_name.compare("shutdown") == 0) { process_handle = sc_spawn(sc_bind(&uvm_component::shutdown_phase, pcomp, this)); pcomp->set_shutdown_handle(process_handle); } else { pcomp->phase_execute(this); } } //------------------------------------------------------------------------------ // Function: process_state_executing_nonruntime // // Parameters: //------------------------------------------------------------------------------ void uvm_common_phase::process_state_executing_nonruntime(sc_core::sc_module *pmod) { if (get_phase_type() != UVM_POSTRUN_PHASE) { // postrun phases are not generalized yet int result = do_execute(pmod); if (result && (CHECK_STOP_AT_PHASE_END() == true)) result = 0; } else { uvm_component* pcomp = DCAST<uvm_component*>(pmod); if (pcomp != NULL) { if (_name.compare("final") == 0) pcomp->final_phase(this); else if (_name.compare("extract") == 0) pcomp->extract_phase(this); else if (_name.compare("check") == 0) pcomp->check_phase(this); else if (_name.compare("report") == 0) pcomp->report_phase(this); else pcomp->phase_execute(this); } } } //------------------------------------------------------------------------------ // Phase specific functionality //------------------------------------------------------------------------------ int uvm_build_phase::do_execute(sc_core::sc_module * pmod) { int result = 1; try { NODE_CONSTRUCTION_DONE(pmod) // Calls construction_done() callback // For non-uvm_component sc_module - // that directly calls before_end_of_elaboration() // For uvm_component it calls build() which, // if not overriden, invokes before_end_of_elaboration() } catch (int) { result = 0; } return result; } int uvm_build_phase::end() { int result = 1; try { QUASI_STATIC_END_OF_CONSTRUCTION() } catch (int) { result = 0; } return result; } int uvm_connect_phase::do_execute(sc_core::sc_module * pmod) { int result = 1; try { NODE_CONNECT(pmod) } catch (int) { result = 0; } return result; } int uvm_end_of_elaboration_phase::do_execute(sc_core::sc_module * pmod) { int result = 1; try { NODE_END_OF_ELABORATION(pmod) } catch (int) { result = 0; } return result; } int uvm_end_of_elaboration_phase::end() { int result = 1; try { #ifndef SIMCONTEXT_EXTENSIONS_OUT QUASI_STATIC_END_OF_ELABORATION() #endif } catch (int) { result = 0; } return result; } int uvm_start_of_simulation_phase::do_execute(sc_core::sc_module * pmod) { int result = 1; try { NODE_START_OF_SIMULATION(pmod) } catch (int) { result = 0; } return result; } int uvm_start_of_simulation_phase::end() { int result = 1; try { #ifndef SIMCONTEXT_EXTENSIONS_OUT QUASI_STATIC_START_OF_SIMULATION() #endif QUASI_STATIC_PREPARE_TO_SIMULATE() } catch (int) { result = 0; } return result; } int uvm_run_phase::start() { return 1; } } // namespace
a6202875660c12564ae9aa5aebab2af1589c7ac9
6feac31c862be53247978bba84dd45947533144a
/src/arffparser.cpp
a4d6f8602b8d599053130463a5467b06307b9b66
[]
no_license
isbel8ai/qt-arff
39e868f108a16f92c94511fd3315581ab3428a36
ab1a0561fde860eaaa8655b5e2391c45a48cef3f
refs/heads/master
2020-04-24T11:14:28.034828
2019-02-21T18:05:50
2019-02-21T18:05:50
171,918,868
0
0
null
null
null
null
UTF-8
C++
false
false
4,989
cpp
#include "arffparser.h" #include "arfftoken.h" #include "arffattribute.h" ArffParser::ArffParser(QString filepath) : lexer(NULL), parsed(false), arffdata(NULL) { lexer = new ArffLexer(filepath); } ArffParser::~ArffParser() { if(lexer) { delete lexer; } } ArffItemModel *ArffParser::parse() { if(arffdata) { return arffdata; } arffdata = new ArffItemModel(); readRelation(); readAllAttributes(); readInstances(); parsed = true; return arffdata; } void ArffParser::readRelation() { // @relation ArffToken tkrelation = lexer->nextToken(); if(tkrelation.type() != ArffToken::RELATION) { /*THROW("%s: First token must be of 'RELATION'! It is '%s'", "ArffParser::_read_relation", toString(tkrelation.token_enum()).c_str());*/ return; } // name ArffToken tkname = lexer->nextToken(); if(tkname.type() != ArffToken::VALUE_TOKEN) { /*THROW("%s: RELATION token must be followed by %s! It is '%s'", "ArffParser::_read_relation", "VALUE_TOKEN", toString(tkname.token_enum()).c_str());*/ return; } arffdata->setRelationName(tkname.toString()); } void ArffParser::readAllAttributes() { ArffToken tok = lexer->nextToken(); while (tok.type() != ArffToken::DATA_TOKEN && tok.type() != ArffToken::END_OF_FILE) { if(tok.type() != ArffToken::ATTRIBUTE) { /*THROW("%s: First token must be of 'ATTRIBUTE'! It is '%s'", "ArffParser::_read_attrs", toString(type).c_str());*/ return; } readAttribute(); tok = lexer->nextToken(); } } void ArffParser::readAttribute() { // name ArffToken name = lexer->nextToken(); if(name.type() != ArffToken::VALUE_TOKEN) { /*THROW("%s: 'ATTRIBUTE' must be followed by a '%s'! It is '%s'", "ArffParser::_read_attr", "VALUE_TOKEN", toString(name.token_enum()).c_str());*/ return; } // type ArffAttribute::ArffAttributeType atype = ArffAttribute::UNKNOWN; switch(lexer->nextToken().type()) { case ArffToken::NUMERIC_TOKEN: atype = ArffAttribute::NUMERIC; break; case ArffToken::STRING_TOKEN: atype = ArffAttribute::STRING; break; case ArffToken::DATE_TOKEN: atype = ArffAttribute::DATE; break; case ArffToken::BRKT_OPEN: atype = ArffAttribute::NOMINAL; break; default: /*THROW("%s: Bad attribute type for name=%s attr-type=%s!", "ArffParser::_read_attr", name.token_str().c_str(), toString(ate).c_str());*/ return; } ArffAttribute natt(name.toString(), atype); // nominal type if(atype == ArffAttribute::NOMINAL) { ArffToken tok = lexer->nextToken(); while(tok.type() != ArffToken::BRKT_CLOSE) { if(tok.type() == ArffToken::VALUE_TOKEN) { natt.addNominal(tok.toString()); } else { /*THROW("%s: For nominal values expecting '%s' got '%s' token!", "ArffParser::_read_attr", "VALUE_TOKEN", toString(tok.toString()).c_str());*/ } tok = lexer->nextToken(); if (tok.type() == ArffToken::COMMA_TOKEN) { tok = lexer->nextToken(); } } } arffdata->addAttribute(natt); } void ArffParser::readInstances() { int cols = arffdata->columnCount(); ArffToken tok = lexer->nextToken(); while(cols > 0 && tok.type() != ArffToken::END_OF_FILE) { QVariantList inst; for(int i = 0; i < cols; ++i) { if (tok.type() == ArffToken::COMMA_TOKEN) { tok = lexer->nextToken(); } ArffToken::ArffTokenType tktype = tok.type(); ArffAttribute::ArffAttributeType attype = arffdata->getAttribute(i).type(); if((tktype != ArffToken::VALUE_TOKEN) && (tktype != ArffToken::MISSING_TOKEN)) { /*THROW("%s expects '%s' or '%s', it is '%s'!", "ArffParser::_read_instances", "VALUE_TOKEN", "MISSING_TOKEN", toString(tktype).c_str());*/ return; } QVariant val; if(tktype == ArffToken::MISSING_TOKEN) { val = QVariant("?"); } else if((attype == ArffAttribute::STRING) || (attype == ArffAttribute::NOMINAL)) { val = QVariant(tok.toString()); } else if(attype == ArffAttribute::NUMERIC) { val = QVariant(tok.toString()); val.convert(QVariant::Double); } else if(attype == ArffAttribute::DATE) { val = QVariant(tok.toString()); val.convert(QVariant::Date); } inst.append(val); tok = lexer->nextToken(); } arffdata->addInstance(inst); } }
fe60c31a17e4aeac8493ab71c19f101b07f10501
4824e448904f1a6dc93eb12d867160b5eb1abde1
/Restaurant/Rest/Order.h
2f9774dafbb051cd52d88bd92af6ee2da7112014
[ "MIT" ]
permissive
Adham-M/Restaurant-Delivery-System
2548ea993f8e7437480ef0f9447143e638ba80de
d95971c8fd2869c41e821a7da86d54541a465cd7
refs/heads/master
2023-02-02T11:15:24.491608
2020-12-15T19:11:01
2020-12-15T19:11:01
267,434,064
0
0
null
null
null
null
UTF-8
C++
false
false
1,202
h
#ifndef __ORDER_H_ #define __ORDER_H_ #include "..\Defs.h" #include <string> using namespace std; class Order { protected: ORD_TYPE type; //order type: Normal, Frozen, VIP REGION Region; //Region of this order int Distance; //The distance (in meters) between the order location and the resturant int ID; //Each order has a unique ID (from 1 --> 999 ) float PriorityIndicator; double totalMoney; //Total order money int ArrTime, ServTime, WaitingTime, FinishTime; //arrival, service start, waiting time, and finish times // // TODO: Add More Data Members As Needed // public: Order(int ID, ORD_TYPE r_Type, REGION r_region, int dist, int ArrivalTime); virtual ~Order(); void SetID(int); int GetID(); int GetType() const; REGION GetRegion() const; string Get_Region() const; string Get_Type() const; float GetPriorityIndicator() const; void SetPriorityIndicator(float PI); void SetServTime(int); void SetWaitingTime(int); int GetArrTime() const; int GetServTime() const; int GetWaitingTime() const; int GetFinishTime() const; int GetDistance() const; double GetMoney() const; void AddMoney(double); // // TODO: Add More Member Functions As Needed // }; #endif
5825516505ca7e3f05007d5eda298949edcbf879
24c8906542ad7cd241a05f750eb1e1ccdfe1a63e
/Graph Algorithms/Message Route.cpp
b2e3effc0609589b326e65f051baa2813722f862
[]
no_license
offamitkumar/CSES
0270446c7b998d96b849c27bc2f4d79f6afc8237
a9bc567f78ddc61eef26d0e7b26a2bd352e73017
refs/heads/master
2023-08-22T07:34:17.001508
2021-10-07T05:41:31
2021-10-07T05:41:31
261,845,815
4
2
null
null
null
null
UTF-8
C++
false
false
3,024
cpp
// Author : Amit Kumar #include <iostream> #include <algorithm> #include <string> #include <sstream> #include <fstream> #include <iomanip> #include <chrono> #include <numeric> #include <utility> #include <functional> #include <bitset> #include <tuple> #include <queue> #include <stack> #include <vector> #include <array> #include <unordered_map> #include <unordered_set> #include <set> #include <map> #include <deque> #include <list> #include <climits> #include <cstring> #include <cmath> #include <cassert> #include <cstdio> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace std::chrono; // using namespace placeholders; using namespace __gnu_pbds; template<typename TypeInfo> using new_set = tree< /* ob.order_of_key(element) -> number of element strictly less than element * *ob.find_by_order(n) -> nth element in increasing order */ TypeInfo , null_type , less<TypeInfo> , rb_tree_tag , tree_order_statistics_node_update > ; void debug_out() { cerr << endl; } template <typename HEAD, typename... TAIL> void debug_out(HEAD H, TAIL... T) { cerr << " " << (H); debug_out(T...); } #ifdef HELL_JUDGE #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 0 #endif const int MAXM = (int)1e5+100; const int MAXN = (int)1e5+100; const int MOD = (int)1e9+7; vector<bool>visited; vector<int>parent; vector<vector<int>>graph; int main(void){ #ifdef HELL_JUDGE freopen("input","r",stdin); freopen("output","w",stdout); freopen("error","w",stderr); #endif ios::sync_with_stdio(false); // FLUSH THE STREAM IF USING puts / printf / scanf/ cin.tie(nullptr); // cout.tie(nullptr); // #ifdef HELL_JUDGE auto INITIAL_TIME = high_resolution_clock::now(); #endif int n , m; cin >> n >> m; parent.assign(n+1,-1); visited.assign(n+1,false); graph.resize(n+1); for(int i=0;i<m;++i){ int u , v; cin >> u >> v; graph[u].push_back(v); graph[v].push_back(u); } queue<int>q; q.push(1); visited[1] = true; while(!q.empty()){ int node = q.front(); q.pop(); if(node == n){ break; } for(auto&itr:graph[node]){ if(!visited[itr]){ q.push(itr); visited[itr] = true; parent[itr] = node; } } } if(visited[n]==false){ cout << "IMPOSSIBLE" << '\n'; return 0; } int x = n; stack<int>s; while(x != -1){ s.push(x); x = parent[x]; } cout << s.size() << '\n'; while(!s.empty()){ cout << s.top() << ' '; s.pop(); } #ifdef HELL_JUDGE auto FINAL_TIME = high_resolution_clock::now(); cout << "Time : " << duration_cast<milliseconds>(FINAL_TIME-INITIAL_TIME).count() << " ms" << '\n'; #endif return 0; }
57142bba34350b6f86b1660c15dbe7278495fe5b
d001f6e23300a9b1845c890a3ae65c775e93eee0
/myplot.h
a94dd333bd22a6e0f42469436540cfdde161b042
[]
no_license
JohanVanTol/NHMFLMeasure
7ba15c7900d58cd4797fa8634e213c878f99b9e4
ff5264f7255e223c968158464d7eef2b61a9e210
refs/heads/master
2020-03-28T06:31:28.486519
2018-10-18T15:01:42
2018-10-18T15:01:42
147,841,053
0
0
null
2018-09-10T16:58:33
2018-09-07T15:21:04
C++
UTF-8
C++
false
false
3,459
h
#include <windows.h> #include <vcl\graphics.hpp> #ifndef __MYPLOT.H #define __MYPLOT.H class PlotAxis { public: PlotAxis(double _min=0.0, double _max=1.0); PlotAxis(const PlotAxis& Ax); ~PlotAxis() {delete [] title;} void operator=(const PlotAxis& Ax); void AutoRange(double l, double h); void Range(double _min, double _max); double Min() const {return min;} double Max() const {return max;} double GetPos(double x) const; int GetnTicks() const {return nTicks;} double GetTickStep() const {return TickStep;} double GetFirstTick() const {return FirstTick;} void SetTitle(const char* _title); char* GetTitle() const {return title;} bool IsTicksOn() const {return Ticks;} bool IsLabelsOn() const {return Labels;} private: double min; double max; int nTicks; double TickStep; double FirstTick; char* title; bool Ticks; bool Labels; void CalcTicks(); }; class MyPlot { public : MyPlot(); ~MyPlot(); void SetLim(int _left, int _top, int _right, int _bottom); void SetLim(int ClientWidth, int ClientHeight); // void SetLim(const TRect& WindowRect); int GetTop() {return top;} int GetLeft() {return left;} int GetBottom() {return bottom;} int GetRight() {return right;} // int WithinLimits(TPoint point) const; bool WithinLimits(int X, int Y) const; void PlotTheAxes(TCanvas* canvas); void SetMargins(float tm=0.05, float lm=0.15, float bm=0.15, float rm=0.10); int GetAutoRange() const {return autorange;} void SetAutoRange(int _mode) {autorange = _mode;} void SetAutoX(); void SetAutoY1(); void SetAutoY2(); void SetRanges(DataPoint min, DataPoint max); void SetFixedRanges(DataPoint min, DataPoint max); DataPoint GetMinRanges(); DataPoint GetMaxRanges(); TPoint GetCoor(int mode, double x, double y); int GetXCoor(int mode, double x); int GetYCoor(int mode, double y); DataPoint GetUserCoordinates(TPoint point) const; void PlotArray(TCanvas* canvas, const DataArray& D); // X ,Y1 and Y2 axes int PointsInRange(const DataArray& D); void LineToLast(TCanvas* canvas, const DataPoint Previous, const DataPoint Current); void SetAxisTitle(const char*, int axis); char* GetAxisTitle(int axis) const; void SetDataSize(int size); void SetDataColumn(int ix, int iy, int iref); int GetDataColumn(int i) const; TColor GetFillColor() {return FillBrushColor;} void SetFillColor(TColor color) {FillBrushColor = color;} TColor GetAxisColor() {return AxisPenColor;} void SetAxisColor(TColor color) {AxisPenColor = color;} PlotAxis GetAxis(int i); int TickSize; private : // The limits of the plotting rectangle int top; int bottom; int left; int right; // plot margin with respect to window surface float topmargin; float bottommargin; float leftmargin; float rightmargin; PlotAxis Xaxis; PlotAxis Y1axis; PlotAxis Y2axis; TColor AxisPenColor; TColor DataPenColor; TColor Data2PenColor; TColor Data3PenColor; TColor FillBrushColor; int LabelSize; int TitleSize; int autorange; // This number gives which axes are // AutoRange 0x0001 for X, 0x0002 for Y2, // and 0x0004 for Y2 int DataSize; // The number of y-data in the associated Data-array int DataColumn[3]; // Contains the associated Data columns with }; #endif
d2e8e12ba7709ae57aaf66f813da5fcc000d028a
7df2e56e90a5ebf76567241efdabe39486140331
/csrc/EqGrNode.cc
bac6810e92233bb00e77b187767bc305e5b87676
[ "MIT" ]
permissive
fzyukio/python-cspade
1b11b2be7bca973177a0412032c23ed1c533bbf7
abb46fed3d9edef3a0ac24bc4e226bdcc47c67aa
refs/heads/master
2023-01-12T10:07:16.726350
2022-10-20T10:36:30
2022-10-20T10:36:30
160,069,081
13
8
null
2022-10-20T10:36:31
2018-12-02T16:53:38
C++
UTF-8
C++
false
false
2,672
cc
// // Created by Yukio Fukuzawa on 8/12/18. // #include "EqGrNode.h" #include "Array.h" #include "FreqIt.h" EqGrNode::EqGrNode(int sz, int num_class_) { num_class = num_class_; if (sz > 0) { theElements.reset(new Array(sz)); stheElements.reset(new Array(sz)); _set_sup = make_shared<vector<Array_S>>(); _seq_sup = make_shared<vector<Array_S>>(); _set_sup->reserve(num_class); _seq_sup->reserve(num_class); for (int i = 0; i < num_class; i++) { _set_sup->push_back(make_shared<Array>(sz)); _seq_sup->push_back(make_shared<Array>(sz)); } } else { theElements = nullptr; stheElements = nullptr; _set_sup->resize(0); _seq_sup->resize(0); } freqArray = nullptr; freqArraySz = 0; theFlg = 0; } EqGrNode::~EqGrNode() = default; //assume that elements are sorted in descending order int EqGrNode::bsearch(int min, int max, FreqIt_SS freqArray, FreqIt_S fit, int recursive) { int mid = (max + min) / 2; if (max < min) return -1; int res = freqArray->at(mid)->compare(fit, recursive); if (res == 0) return mid; else if (res < 0) return bsearch(min, mid - 1, freqArray, fit, recursive); else return bsearch(mid + 1, max, freqArray, fit, recursive); } int EqGrNode::bsearch(int min, int max, shared_ptr<vint> itary, int it) { int mid = (max + min) / 2; if (max < min) return -1; if (it == itary->at(mid)) return mid; else if (it < itary->at(mid)) return bsearch(min, mid - 1, itary, it); else return bsearch(mid + 1, max, itary, it); } int EqGrNode::find_freqarray(FreqIt_S fit, int recursive) { if (freqArraySz > 0) return bsearch(0, freqArraySz - 1, freqArray, fit, recursive); else return 0; } ostream &operator<<(ostream &outputStream, EqGrNode &EQ) { int i; if (EQ.theElements) { outputStream << "SET " << *EQ.theElements << endl; for (i = 0; i < EQ.num_class; i++) outputStream << "Sup" << i << " : " << *EQ._set_sup->at(i) << endl; outputStream << "Tot"; for (i = 0; i < EQ.theElements->size(); i++) outputStream << " " << EQ.get_sup(i); outputStream << endl; } if (EQ.stheElements) { outputStream << "SEQ " << *EQ.stheElements << endl; for (i = 0; i < EQ.num_class; i++) outputStream << "SSup" << i << " : " << *EQ._seq_sup->at(i) << endl; outputStream << "Tot"; for (i = 0; i < EQ.stheElements->size(); i++) outputStream << " " << EQ.get_seqsup(i); outputStream << endl; } return outputStream; }
aa71eb0e37401305b7f8ce01c617bded343d6260
07504bd60af95e300952fcd75d5492071b41a8f6
/CrossApp/view/CAAlertView.cpp
342ed0b3fe9f8086ae2b18f45f82d2d3cf2fc7ba
[ "MIT" ]
permissive
black0592/cross
e60c7ab5293de23c17d4495ad3d12fb5809ce638
23552ae61dfe1d7b25fac2e9b3e99903eab901d9
refs/heads/master
2020-04-02T08:38:10.328399
2018-09-11T02:17:27
2018-09-11T02:17:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,823
cpp
#include "CAAlertView.h" #include "platform/CAAlertViewImpl.h" NS_CC_BEGIN static CAMap<unsigned int, CAAlertView*> s_gMessageBoxs; CAAlertView* CAAlertView::create(const std::string& title, const std::string& message) { CAAlertView* box = new CAAlertView(title, message); box->autorelease(); return box; } CAAlertView* CAAlertView::create(const std::string& title, const std::string& message, const std::vector<std::string>& buttonTitles) { CAAlertView* box = new CAAlertView(title, message); box->m_vButtonTitles = buttonTitles; box->autorelease(); return box; } CAAlertView::CAAlertView(const std::string& title, const std::string& message) :m_sTitle(title) ,m_sMessage(message) ,m_callback(nullptr) { } void CAAlertView::setButtonTitles(const std::vector<std::string>& buttonTitles) { m_vButtonTitles = buttonTitles; } void CAAlertView::addButtonTitle(const std::string& buttonTitle) { m_vButtonTitles.push_back(buttonTitle); } void CAAlertView::show() { s_gMessageBoxs.insert(m_u__ID, this); std::vector<std::string> buttonTitles = m_vButtonTitles; if (buttonTitles.empty()) { buttonTitles.push_back("OK"); } __show_alertView(m_sTitle, m_sMessage, buttonTitles, [&](int index) { s_gMessageBoxs.erase(m_u__ID); }); } void CAAlertView::show(const std::function<void(int)>& callback) { m_callback = callback; s_gMessageBoxs.insert(m_u__ID, this); std::vector<std::string> buttonTitles = m_vButtonTitles; if (buttonTitles.empty()) { buttonTitles.push_back("OK"); } __show_alertView(m_sTitle, m_sMessage, buttonTitles, [&](int index) { if (m_callback) { m_callback(index); } s_gMessageBoxs.erase(m_u__ID); }); } NS_CC_END
1c6738c84f0e6aa1297c1e6b7a0868f812318151
a41ff94559e24cba03f42081ee5452f64063622a
/Contest/Codechef/codeheist/B.cpp
248744526f43608476335876e4e955015ec132d7
[]
no_license
RavenColEvol/competitive-journey
aaff3ebd66bb6fdbbcff33de7516ac401023e1f0
0e5cd2ff7e7c92644a8bee2b016c2eead4cb8370
refs/heads/master
2022-11-23T02:06:10.966813
2020-07-30T13:32:57
2020-07-30T13:32:57
229,191,033
0
0
null
null
null
null
UTF-8
C++
false
false
909
cpp
#include<bits/stdc++.h> #define FIO ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL) #define rep(i, a, b) for(ll i = a; i < b; ++i) using namespace std; typedef long long ll; typedef vector<ll> vll; int main() { FIO; ll t; cin >> t; while(t--) { ll n, p ,ru, l, r; cin >> n; vll arr(n); for(ll& i : arr) cin >> i; r = p = arr[0]; l = r = 0; for(ll i = 1; i < n; i++) { if(arr[i] == 0) { ru = 1LL; continue; } ru = arr[i]*ru; if(ru > p) { r = i; p = ru; } } ll tp = 1LL, tr = r; while(tr >= 0) { tp *= arr[tr]; if(tp == p) break; tr--; } cout << p << ' ' << tr << ' ' << r << '\n'; } return 0; }
a3fda5ee9908ec66c14b09f552e605fddaded578
f7758ea95888827dcdba4ecc40150516380e8af3
/uses/qt_viz/renderarea_context.cpp
047896fa2d3f290847ae7f08351cf0b2b78d7fb5
[]
no_license
newmen/monte-carlo_techs
3b22bfe999ef4a63d0d15ca8a154ed6616fac9e6
b2db9161795d17d7cad58839f2cc9f6e73edeb73
refs/heads/master
2021-01-19T05:22:38.070938
2013-09-29T21:40:16
2013-09-29T21:40:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
750
cpp
#include <QtGui> #include "renderarea_context.h" #include "drawing_role.h" RenderAreaContext::RenderAreaContext(float cellSideLength) : _cellSideLength(cellSideLength) {} void RenderAreaContext::resetArea(const AreaData *area) { _area = area; processSize(); } void RenderAreaContext::paintEvent(QPaintEvent *event) { QPainter painter(this); QPen pen(Qt::transparent); painter.setPen(pen); painter.setRenderHint(QPainter::Antialiasing, true); static_cast<const DrawingRole<AreaData> *>(_area)->draw(&painter, _cellSideLength); painter.setRenderHint(QPainter::Antialiasing, false); } void RenderAreaContext::processSize() { setMinimumSize(_cellSideLength * _area->sizeX(), _cellSideLength * _area->sizeY()); }
69eaf2492360ad6bca5b00f1b793ea618b7643f5
25b02d7955f112a41efb59a2e657ae722860fdde
/projects/ecslib/include/Component.h
854fd1a58a31267e476e65d30c4b1e8c0ddf9260
[]
no_license
Evertras/ecs
9ed759de952b89034e17eed7e131c8c0b67028a0
3834c462bf101d10aceefc747c8aebc85bc8245a
refs/heads/master
2020-03-30T12:13:38.701387
2018-12-15T01:41:02
2018-12-15T01:41:02
151,215,026
0
0
null
null
null
null
UTF-8
C++
false
false
474
h
#pragma once namespace ECS { namespace Internal { class BaseComponent { public: BaseComponent() {} virtual ~BaseComponent() {} BaseComponent(const BaseComponent& rhs) {} }; } template<typename T> class Component : public Internal::BaseComponent { public: Component() {} Component(const T& rhs) : data(rhs) {} Component(const T&& rhs) : data(rhs) {} ~Component() {} Component(const Component<T>& rhs) : data(rhs.data) { } T data; }; }
56a879e8215d59f6943aadc234335b3c149c62e2
a17c874a61aa67f1ee7cc9c9b239e8b36b5082a2
/EuklidischerAlgorithmus/Jonas/main.cpp
398e727cb07e38e60b7dd2354f8e561d76bdd2fd
[]
no_license
Franzelfx/AlgorithmenUndDatenstrukturen
90caf690bcd170480815b3a94bfe2e1e53639ce4
349111e87b536303c683842e9542bbfa398ca150
refs/heads/master
2020-05-04T17:57:58.941457
2019-04-29T18:09:34
2019-04-29T18:09:34
179,333,996
0
0
null
null
null
null
UTF-8
C++
false
false
1,813
cpp
// by Jonas Quinque #include <iostream> int ggT(int a, int b); int ggT_v(int a, int b); int ggT_recursively(int a, int b); int main() { while(true) { int *a; int result, programm, num; std::cout << "ggT-Rechner" << '\n'; std::cout << "Bitte Variante eingeben (1 normal, 2 rekursiv, Programmende bel. Eingabe)" << '\n'; std::cin >> programm; if(programm != 1 && programm != 2) return 0; // => beende das Programm bei anderen Eingaben als 1 oder 2 std::cout << "Bitte geben Sie die Anzahl Ihrer Zahlen ein" << '\n'; std::cin >> num; a = (int*) malloc(num*sizeof(int)); for (size_t i = 0; i < num; i++) { std::cout << "Zahl " << i+1 << '\n'; std::cin >> a[i]; if(a[i] < 0) a[i] *= -1; } switch(programm) { case 1: result = a[0]; for (size_t i = 1; i < num; i++) { result = ggT(a[i], result); } std::cout << "Der ggT lautet: " << result << '\n'; break; case 2: result = a[0]; for (size_t i = 1; i < num; i++) { result = ggT_recursively(a[i], result); } std::cout << "Der ggT lautet: " << result << '\n'; break; // => Ohne Break wird immer dieser Zweig gewählt, egal welche Eingabe default: return 0; // => Springe aus Programm wenn Fehler auftaucht (nicht nötig aber an vielen Stellen gut) break; } free(a); } } int ggT_recursively(int a, int b) { if(a == 0) { return b; } else if(b == 0) { return a; } else if(a > b) { return ggT_recursively(a%b, b); } else { return ggT_recursively(a, b%a); } } int ggT(int a, int b) { if(a < 0) a = a * -1; // => Betrag bilden if(b < 0) b = b * -1; while(b != 0 && a != 0) { if (a > b) { a = a % b; } else{ b = b % a; } } if (a == 0) { return b; } else if(b == 0) { return a; } return 0; // => Ohne Return kann es hier zu Fehlern kommen }
44cf5428a3415f0f37724f51e0665fcb9c96a41d
d3dcae62ec275656cb48336360d51c426c1e43a4
/include/gasha/thread_id.inl
294fa6a23a63db5e30f2172ff8f332fd7bf93d3d
[ "MIT" ]
permissive
gakimaru/gasha
c4d377de0ac14eaba1e7c0b1a3bbda99fb9a9b72
17e300a417d61766f0e5ec51de98f6b848157bb6
refs/heads/master
2016-09-16T04:48:34.952911
2014-08-10T18:28:26
2014-08-10T18:28:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,163
inl
#pragma once #ifndef GASHA_INCLUDED_THREAD_ID_INL #define GASHA_INCLUDED_THREAD_ID_INL //-------------------------------------------------------------------------------- // thread_id.inl // スレッドID【インライン関数/テンプレート関数定義部】 // // ※基本的に明示的なインクルードの必要はなし。(.h ファイルの末尾でインクルード) // // Gakimaru's standard library for C++ - GASHA // Copyright (c) 2014 Itagaki Mamoru // Released under the MIT license. // https://github.com/gakimaru/gasha/blob/master/LICENSE //-------------------------------------------------------------------------------- #include <gasha/thread_id.h>//スレッドID【宣言部】 GASHA_NAMESPACE_BEGIN;//ネームスペース:開始 //-------------------------------------------------------------------------------- //スレッドID //-------------------------------------------------------------------------------- //---------------------------------------- //スレッドIDクラス //ムーブオペレータ inline threadId& threadId::operator=(const threadId&& rhs) { m_id = rhs.m_id; m_name = rhs.m_name; m_nameCrc = rhs.m_nameCrc; return *this; } //コピーオペレータ inline threadId& threadId::operator=(const threadId& rhs) { m_id = rhs.m_id; m_name = rhs.m_name; m_nameCrc = rhs.m_nameCrc; return *this; } //ムーブコンストラクタ inline threadId::threadId(const threadId&& obj) : m_id(obj.m_id), m_name(obj.m_name), m_nameCrc(obj.m_nameCrc) {} //コピーコンストラクタ inline threadId::threadId(const threadId& obj) : m_id(obj.m_id), m_name(obj.m_name), m_nameCrc(obj.m_nameCrc) {} //コンストラクタ inline threadId::threadId(const char* name) : m_id(&m_thisId), m_name(&m_thisName) { setThisName(name); m_nameCrc = m_thisNameCrc; } //デフォルトコンストラクタ inline threadId::threadId() : m_id(&m_thisId), m_name(&m_thisName), m_nameCrc(m_thisNameCrc) { setThisId(); } //デストラクタ inline threadId::~threadId() {} GASHA_NAMESPACE_END;//ネームスペース:終了 #endif//GASHA_INCLUDED_THREAD_ID_INL // End of file
9d7728f50bd65629972e516b6a357cc8ff472870
4f1134051d2808bf609853cd116ead67a670ca80
/Gebhard/src/Permutationstest.h
b27d65e03066f66d1830150bf8fbf902087b7e37
[]
no_license
mhoehle/permtest
93ddf212855f3c5e7839fe94ccf2e9b5c7bed7e2
9b4421b4fd5a34c7f7cd928be33625529cf3d402
refs/heads/master
2023-01-23T18:46:22.001249
2019-06-02T21:46:04
2019-06-02T21:46:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,420
h
/////////////////////////////////////////////////////// // // Copyright � 1994 Jens Gebhard // // DATEI: PERMUTAT.H (Permutationtest.h // // ZWECK: Deklaration der Klasse PermutationTestApp // /////////////////////////////////////////////////////// #include "global.h" #include "pitman.h" #include "tritchler.h" #include "green.h" ////////////////////////////////////////////////////// // // Klasse: PermutationTestApp // Basisklasse: keine // // Zweck: Die Klasse PermutationTestApp // ist das Anwendungsobjekt. Normaler- // weise wird hiervon nur eine Instanz // waehrend des Programmablaufs er- // zeugt. PermutationTestApp erzeugt // ihrerseits fuer jede angegebene Datei // ein ein Objekt vom Typ PermutationTest // (genauer gesagt ein Objekt, dass von // PermutationTest abgeleitet ist und // den jeweiligen Algorithmus implementiert) // class PermutationTestApp { private: int ArgCount; char **Args; char Options[512]; char UnknownOptions[512]; int NrOfDataFiles; char **DataFiles; PermutationTest *Test; BOOL TeXOutput; enum tagAlgorithmus{Green, Tritchler}Algorithmus; void SetLocalOptions(); void PrintCopyright() const; void PreProcessMessage() const; void PostProcessMessage() const; void Info() const; public: PermutationTestApp(int argc, char **argv); ~PermutationTestApp() { delete[] DataFiles; }; void Run(); };
4f60c1f52c4cc84622b0a6d8166f1bcb80ad9c30
8380b5eb12e24692e97480bfa8939a199d067bce
/Carberp Botnet/source - absource/pro/all source/RemoteCtl/DrClient/ClientOps.h
3d16aea66f3d2450014dae52e52480a0fb4fe3a6
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
RamadhanAmizudin/malware
788ee745b5bb23b980005c2af08f6cb8763981c2
62d0035db6bc9aa279b7c60250d439825ae65e41
refs/heads/master
2023-02-05T13:37:18.909646
2023-01-26T08:43:18
2023-01-26T08:43:18
53,407,812
873
291
null
2023-01-26T08:43:19
2016-03-08T11:44:21
C++
UTF-8
C++
false
false
3,511
h
#pragma once //============================================= #define SECOND_DESK_NAMEW L"SecondDesktop" #define SECOND_DESK_NAMEA "SecondDesktop" #ifdef UNICODE #define SECOND_DESK_NAME SECOND_DESK_NAMEW #else #define SECOND_DESK_NAME SECOND_DESK_NAMEA #endif // !UNICODE #define DESKTOP_1 1 #define DESKTOP_2 2 //static int CurDesk; enum Desktops {First, Second}; Desktops GetCurDesk(); void SetCurDesk(Desktops desk); //============================================= // TODO: make most of the functions as members ot this class class CFileLoader; class CClientContext { public: // etc ULONG m_dwGdiplusToken; CFileLoader *m_pLoader; bool m_bUseJpeg; bool m_bBoostHideFlag; bool m_bJavaMove; bool m_bShowAllWindows; bool m_bHideSecDesc; // startup params char m_sServer[1024]; int m_iPort; char m_sUid[1024]; int m_iBrowserType; // options from server int m_iSleep1; int m_iSleep2; int m_iSleep3; int m_iSleep; int m_iPrio1; WCHAR ProccessName[25]; WCHAR WinHederName[25]; WCHAR ClassName[50]; // public: CClientContext(); }; struct SendParams { DWORD timestamp; SOCKET socket; SendParams(SOCKET S, DWORD T) { socket = S; timestamp = T; } }; HHOOK getHookN(); LRESULT CALLBACK CBTProc(int nCode, WPARAM wParam, LPARAM lParam); DWORD RemoveRemoteDefaultGateway(WCHAR* ConnectionName); void CopyDll(bool bYes, WCHAR *str); void VPNStartThread(SendParams params); DWORD VPNStop(); DWORD CheckVPNState(DWORD* result); DWORD CreateVPN(WCHAR* ip); //bool CreateVPNDialog(WCHAR*ip); bool RunIE( CClientContext *pContext, TCHAR* cInput,TCHAR* cExe, DWORD dwHost, BOOL sw_shell, BOOL sw_run_withIE); bool RunFF( CClientContext *pContext, TCHAR* cInput,TCHAR* cExe, DWORD dwHost, BOOL sw_shell, BOOL sw_run_withIE); void StartHidingProcess( CClientContext *pContext, DWORD dwProcessId ); bool WindowKeysToControl( DWORD_PTR id, DWORD_PTR idControl, int x, int y, TCHAR *s, bool bAddEnter, bool bCtrlA,bool bSendM ); bool WindowClicToControl( DWORD_PTR id, DWORD_PTR idControl, int x, int y,bool Left ); bool ClickedControl(HWND hWnd,int x,int y,bool bDBClic, SOCKET s, DWORD timestamp,bool bJavaMov); BYTE * CaptureWindow( HWND hWndSrc,BYTE **lpBits5,DWORD* Size24); bool CreateScreenshotBMP( HWND hw, BYTE **data, DWORD *size, int iSleep,BOOL isDelFile,bool MoveWind,bool HiseSecDesc); bool ConvertToJPEG( BYTE **data, DWORD *size, BYTE *dataBMP, DWORD sizeBMP ); bool DesktopClick( int x, int y, bool bDouble ); bool WindowClick( DWORD_PTR id, int x, int y ); bool DesktopKeys( int x, int y, TCHAR *s, bool bAddEnter, bool bCtrlA ); bool WindowKeys( DWORD_PTR id, int x, int y, TCHAR *s, bool bAddEnter, bool bCtrlA,bool bIsSend ); void SendToMouseClick(HWND hwnd, WORD x, WORD y,WCHAR *cText, bool bLeft, bool bENTER,bool bIsSend); bool GetOSVersion( OSVERSIONINFOEX *result ); void KillJava(); void GetJavaVersion( WCHAR *buffer, int buffer_size ); void DbgMsgW(WCHAR *file, int line, WCHAR *msg, ...); bool HideSystemTrayIcon(); bool ShowSystemTrayIcon(); bool KillProcByPid(DWORD pid); void KillIE_FF_OP(SOCKET s, DWORD timestamp); void SendMess(WCHAR* msg, SOCKET s, DWORD timestamp); DWORD DesktopClickWrapper(LPVOID param); void VPNManualeThread(WCHAR*Ip); DWORD CreateVPNDialog(LPVOID send_params); DWORD StartVNC(LPBYTE param); DWORD WINAPI ClientStartRDP_Dll1( LPVOID lpThreadParameter ); bool DownloadAndRUN(char *DownloadF);
df5de45c50178ea443c1e0301af3793b4fe0a34d
c2d270aff0a4d939f43b6359ac2c564b2565be76
/src/chrome/browser/profiles/profile_impl.cc
e533e4359d3a37c17576b68108fb009d17359a90
[ "BSD-3-Clause" ]
permissive
bopopescu/QuicDep
dfa5c2b6aa29eb6f52b12486ff7f3757c808808d
bc86b705a6cf02d2eade4f3ea8cf5fe73ef52aa0
refs/heads/master
2022-04-26T04:36:55.675836
2020-04-29T21:29:26
2020-04-29T21:29:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
53,696
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/profiles/profile_impl.h" #include <stddef.h> #include <memory> #include <set> #include <utility> #include <vector> #include "base/bind.h" #include "base/callback.h" #include "base/command_line.h" #include "base/compiler_specific.h" #include "base/environment.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/logging.h" #include "base/memory/ptr_util.h" #include "base/memory/weak_ptr.h" #include "base/metrics/histogram_macros.h" #include "base/path_service.h" #include "base/sequenced_task_runner.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "base/task_scheduler/post_task.h" #include "base/task_scheduler/task_traits.h" #include "base/threading/thread_restrictions.h" #include "base/trace_event/trace_event.h" #include "base/version.h" #include "build/build_config.h" #include "chrome/browser/background/background_contents_service_factory.h" #include "chrome/browser/background_fetch/background_fetch_delegate_factory.h" #include "chrome/browser/background_fetch/background_fetch_delegate_impl.h" #include "chrome/browser/background_sync/background_sync_controller_factory.h" #include "chrome/browser/background_sync/background_sync_controller_impl.h" #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h" #include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate_factory.h" #include "chrome/browser/chrome_notification_types.h" #include "chrome/browser/content_settings/cookie_settings_factory.h" #include "chrome/browser/content_settings/host_content_settings_map_factory.h" #include "chrome/browser/dom_distiller/profile_utils.h" #include "chrome/browser/domain_reliability/service_factory.h" #include "chrome/browser/download/chrome_download_manager_delegate.h" #include "chrome/browser/download/download_core_service.h" #include "chrome/browser/download/download_core_service_factory.h" #include "chrome/browser/media/media_device_id_salt.h" #include "chrome/browser/net/predictor.h" #include "chrome/browser/permissions/permission_manager.h" #include "chrome/browser/permissions/permission_manager_factory.h" #include "chrome/browser/plugins/chrome_plugin_service_filter.h" #include "chrome/browser/plugins/plugin_prefs.h" #include "chrome/browser/policy/profile_policy_connector.h" #include "chrome/browser/policy/profile_policy_connector_factory.h" #include "chrome/browser/policy/schema_registry_service.h" #include "chrome/browser/policy/schema_registry_service_factory.h" #include "chrome/browser/prefs/browser_prefs.h" #include "chrome/browser/prefs/chrome_pref_service_factory.h" #include "chrome/browser/prefs/in_process_service_factory_factory.h" #include "chrome/browser/prefs/pref_service_syncable_util.h" #include "chrome/browser/prerender/prerender_manager_factory.h" #include "chrome/browser/profiles/bookmark_model_loaded_observer.h" #include "chrome/browser/profiles/chrome_version_service.h" #include "chrome/browser/profiles/gaia_info_update_service_factory.h" #include "chrome/browser/profiles/profile_attributes_entry.h" #include "chrome/browser/profiles/profile_attributes_storage.h" #include "chrome/browser/profiles/profile_destroyer.h" #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/profiles/profile_metrics.h" #include "chrome/browser/push_messaging/push_messaging_service_factory.h" #include "chrome/browser/push_messaging/push_messaging_service_impl.h" #include "chrome/browser/safe_browsing/safe_browsing_service.h" #include "chrome/browser/sessions/session_service_factory.h" #include "chrome/browser/signin/account_tracker_service_factory.h" #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" #include "chrome/browser/signin/signin_manager_factory.h" #include "chrome/browser/signin/signin_ui_util.h" #include "chrome/browser/ssl/chrome_ssl_host_state_delegate.h" #include "chrome/browser/ssl/chrome_ssl_host_state_delegate_factory.h" #include "chrome/browser/ui/startup/startup_browser_creator.h" #include "chrome/browser/ui/webui/prefs_internals_source.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_features.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_paths_internal.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/features.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" #include "chrome/grit/chromium_strings.h" #include "components/bookmarks/browser/bookmark_model.h" #include "components/content_settings/core/browser/cookie_settings.h" #include "components/content_settings/core/browser/host_content_settings_map.h" #include "components/domain_reliability/monitor.h" #include "components/domain_reliability/service.h" #include "components/gcm_driver/gcm_profile_service.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/metrics/metrics_service.h" #include "components/omnibox/browser/autocomplete_classifier.h" #include "components/policy/core/browser/browser_policy_connector.h" #include "components/pref_registry/pref_registry_syncable.h" #include "components/prefs/scoped_user_pref_update.h" #include "components/signin/core/browser/signin_manager.h" #include "components/signin/core/browser/signin_pref_names.h" #include "components/ssl_config/ssl_config_service_manager.h" #include "components/sync_preferences/pref_service_syncable.h" #include "components/url_formatter/url_fixer.h" #include "components/user_prefs/user_prefs.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/dom_storage_context.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/render_process_host.h" #include "content/public/browser/storage_partition.h" #include "content/public/browser/url_data_source.h" #include "content/public/common/content_constants.h" #include "extensions/features/features.h" #include "mojo/public/cpp/bindings/strong_binding.h" #include "ppapi/features/features.h" #include "printing/features/features.h" #include "services/identity/identity_service.h" #include "services/identity/public/interfaces/constants.mojom.h" #include "services/preferences/public/cpp/in_process_service_factory.h" #include "services/preferences/public/interfaces/preferences.mojom.h" #include "services/preferences/public/interfaces/tracked_preference_validation_delegate.mojom.h" #include "services/service_manager/public/cpp/service.h" #include "ui/base/l10n/l10n_util.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/arc/arc_service_launcher.h" #include "chrome/browser/chromeos/authpolicy/auth_policy_credentials_manager.h" #include "chrome/browser/chromeos/locale_change_guard.h" #include "chrome/browser/chromeos/login/session/user_session_manager.h" #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" #include "chrome/browser/chromeos/policy/user_policy_manager_factory_chromeos.h" #include "chrome/browser/chromeos/preferences.h" #include "chrome/browser/chromeos/profiles/profile_helper.h" #include "chrome/browser/chromeos/settings/device_settings_service.h" #include "components/session_manager/core/session_manager.h" #include "components/user_manager/user.h" #include "components/user_manager/user_manager.h" #endif #if !defined(OS_ANDROID) #include "components/zoom/zoom_event_manager.h" #include "content/public/common/page_zoom.h" #endif #if BUILDFLAG(ENABLE_BACKGROUND_MODE) #include "chrome/browser/background/background_mode_manager.h" #endif #if !defined(OS_CHROMEOS) #include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h" #include "components/policy/core/common/cloud/user_cloud_policy_manager.h" #endif #if BUILDFLAG(ENABLE_EXTENSIONS) #include "chrome/browser/extensions/extension_service.h" #include "chrome/browser/extensions/extension_special_storage_policy.h" #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" #include "components/guest_view/browser/guest_view_manager.h" #include "extensions/browser/extension_pref_store.h" #include "extensions/browser/extension_pref_value_map.h" #include "extensions/browser/extension_pref_value_map_factory.h" #include "extensions/browser/extension_system.h" #endif #if BUILDFLAG(ENABLE_SUPERVISED_USERS) #include "chrome/browser/content_settings/content_settings_supervised_provider.h" #include "chrome/browser/supervised_user/supervised_user_constants.h" #include "chrome/browser/supervised_user/supervised_user_settings_service.h" #include "chrome/browser/supervised_user/supervised_user_settings_service_factory.h" #endif using base::Time; using base::TimeDelta; using bookmarks::BookmarkModel; using content::BrowserThread; using content::DownloadManagerDelegate; namespace { #if BUILDFLAG(ENABLE_SESSION_SERVICE) // Delay, in milliseconds, before we explicitly create the SessionService. const int kCreateSessionServiceDelayMS = 500; #endif // Text content of README file created in each profile directory. Both %s // placeholders must contain the product name. This is not localizable and hence // not in resources. const char kReadmeText[] = "%s settings and storage represent user-selected preferences and " "information and MUST not be extracted, overwritten or modified except " "through %s defined APIs."; // Value written to prefs for EXIT_CRASHED and EXIT_SESSION_ENDED. const char kPrefExitTypeCrashed[] = "Crashed"; const char kPrefExitTypeSessionEnded[] = "SessionEnded"; void CreateProfileReadme(const base::FilePath& profile_path) { base::AssertBlockingAllowed(); base::FilePath readme_path = profile_path.Append(chrome::kReadmeFilename); std::string product_name = l10n_util::GetStringUTF8(IDS_PRODUCT_NAME); std::string readme_text = base::StringPrintf( kReadmeText, product_name.c_str(), product_name.c_str()); if (base::WriteFile(readme_path, readme_text.data(), readme_text.size()) == -1) { LOG(ERROR) << "Could not create README file."; } } // Creates the profile directory synchronously if it doesn't exist. If // |create_readme| is true, the profile README will be created asynchronously in // the profile directory. void CreateProfileDirectory(base::SequencedTaskRunner* io_task_runner, const base::FilePath& path, bool create_readme) { // Create the profile directory synchronously otherwise we would need to // sequence every otherwise independent I/O operation inside the profile // directory with this operation. base::PathExists() and // base::CreateDirectory() should be lightweight I/O operations and avoiding // the headache of sequencing all otherwise unrelated I/O after these // justifies running them on the main thread. base::ThreadRestrictions::ScopedAllowIO allow_io_to_create_directory; // If the readme exists, the profile directory must also already exist. if (base::PathExists(path.Append(chrome::kReadmeFilename))) return; DVLOG(1) << "Creating directory " << path.value(); if (base::CreateDirectory(path) && create_readme) { base::PostTaskWithTraits(FROM_HERE, {base::MayBlock(), base::TaskPriority::BACKGROUND, base::TaskShutdownBehavior::BLOCK_SHUTDOWN}, base::Bind(&CreateProfileReadme, path)); } } base::FilePath GetMediaCachePath(const base::FilePath& base) { return base.Append(chrome::kMediaCacheDirname); } // Converts the kSessionExitedCleanly pref to the corresponding EXIT_TYPE. Profile::ExitType SessionTypePrefValueToExitType(const std::string& value) { if (value == kPrefExitTypeSessionEnded) return Profile::EXIT_SESSION_ENDED; if (value == kPrefExitTypeCrashed) return Profile::EXIT_CRASHED; return Profile::EXIT_NORMAL; } // Converts an ExitType into a string that is written to prefs. std::string ExitTypeToSessionTypePrefValue(Profile::ExitType type) { switch (type) { case Profile::EXIT_NORMAL: return ProfileImpl::kPrefExitTypeNormal; case Profile::EXIT_SESSION_ENDED: return kPrefExitTypeSessionEnded; case Profile::EXIT_CRASHED: return kPrefExitTypeCrashed; } NOTREACHED(); return std::string(); } PrefStore* CreateExtensionPrefStore(Profile* profile, bool incognito_pref_store) { #if BUILDFLAG(ENABLE_EXTENSIONS) return new ExtensionPrefStore( ExtensionPrefValueMapFactory::GetForBrowserContext(profile), incognito_pref_store); #else return NULL; #endif } } // namespace // static Profile* Profile::CreateProfile(const base::FilePath& path, Delegate* delegate, CreateMode create_mode) { TRACE_EVENT1("browser,startup", "Profile::CreateProfile", "profile_path", path.AsUTF8Unsafe()); // Get sequenced task runner for making sure that file operations of // this profile are executed in expected order (what was previously assured by // the FILE thread). scoped_refptr<base::SequencedTaskRunner> io_task_runner = base::CreateSequencedTaskRunnerWithTraits( {base::TaskShutdownBehavior::BLOCK_SHUTDOWN, base::MayBlock()}); if (create_mode == CREATE_MODE_ASYNCHRONOUS) { DCHECK(delegate); CreateProfileDirectory(io_task_runner.get(), path, true); } else if (create_mode == CREATE_MODE_SYNCHRONOUS) { if (!base::PathExists(path)) { // TODO(rogerta): http://crbug/160553 - Bad things happen if we can't // write to the profile directory. We should eventually be able to run in // this situation. if (!base::CreateDirectory(path)) return NULL; CreateProfileReadme(path); } } else { NOTREACHED(); } return new ProfileImpl(path, delegate, create_mode, io_task_runner); } // static const char ProfileImpl::kPrefExitTypeNormal[] = "Normal"; // static void ProfileImpl::RegisterProfilePrefs( user_prefs::PrefRegistrySyncable* registry) { registry->RegisterBooleanPref(prefs::kSavingBrowserHistoryDisabled, false); registry->RegisterBooleanPref(prefs::kAllowDeletingBrowserHistory, true); registry->RegisterBooleanPref(prefs::kForceGoogleSafeSearch, false); registry->RegisterIntegerPref(prefs::kForceYouTubeRestrict, safe_search_util::YOUTUBE_RESTRICT_OFF); registry->RegisterBooleanPref(prefs::kForceSessionSync, false); registry->RegisterStringPref(prefs::kAllowedDomainsForApps, std::string()); #if defined(OS_ANDROID) // The following prefs don't need to be sync'd to mobile. This file isn't // compiled on iOS so we only need to exclude them syncing from the Android // build. registry->RegisterIntegerPref(prefs::kProfileAvatarIndex, -1); // Whether a profile is using an avatar without having explicitely chosen it // (i.e. was assigned by default by legacy profile creation). registry->RegisterBooleanPref(prefs::kProfileUsingDefaultAvatar, true); registry->RegisterBooleanPref(prefs::kProfileUsingGAIAAvatar, false); // Whether a profile is using a default avatar name (eg. Pickles or Person 1). registry->RegisterBooleanPref(prefs::kProfileUsingDefaultName, true); registry->RegisterStringPref(prefs::kProfileName, std::string()); #else registry->RegisterIntegerPref( prefs::kProfileAvatarIndex, -1, user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); // Whether a profile is using an avatar without having explicitely chosen it // (i.e. was assigned by default by legacy profile creation). registry->RegisterBooleanPref( prefs::kProfileUsingDefaultAvatar, true, user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); registry->RegisterBooleanPref( prefs::kProfileUsingGAIAAvatar, false, user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); // Whether a profile is using a default avatar name (eg. Pickles or Person 1). registry->RegisterBooleanPref( prefs::kProfileUsingDefaultName, true, user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); registry->RegisterStringPref(prefs::kProfileName, std::string(), user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); #endif registry->RegisterStringPref(prefs::kSupervisedUserId, std::string()); #if defined(OS_ANDROID) uint32_t home_page_flags = PrefRegistry::NO_REGISTRATION_FLAGS; #else uint32_t home_page_flags = user_prefs::PrefRegistrySyncable::SYNCABLE_PREF; #endif registry->RegisterStringPref(prefs::kHomePage, std::string(), home_page_flags); registry->RegisterStringPref(prefs::kNewTabPageLocationOverride, std::string()); #if BUILDFLAG(ENABLE_PRINTING) registry->RegisterBooleanPref(prefs::kPrintingEnabled, true); #endif registry->RegisterBooleanPref(prefs::kPrintPreviewDisabled, false); registry->RegisterStringPref( prefs::kPrintPreviewDefaultDestinationSelectionRules, std::string()); registry->RegisterBooleanPref(prefs::kForceEphemeralProfiles, false); registry->RegisterBooleanPref(prefs::kEnableMediaRouter, true); #if !defined(OS_ANDROID) registry->RegisterBooleanPref(prefs::kShowCastIconInToolbar, false); #endif // !defined(OS_ANDROID) // Initialize the cache prefs. registry->RegisterFilePathPref(prefs::kDiskCacheDir, base::FilePath()); registry->RegisterIntegerPref(prefs::kDiskCacheSize, 0); registry->RegisterIntegerPref(prefs::kMediaCacheSize, 0); } ProfileImpl::ProfileImpl( const base::FilePath& path, Delegate* delegate, CreateMode create_mode, scoped_refptr<base::SequencedTaskRunner> io_task_runner) : path_(path), io_task_runner_(std::move(io_task_runner)), pref_registry_(new user_prefs::PrefRegistrySyncable), io_data_(this), last_session_exit_type_(EXIT_NORMAL), start_time_(Time::Now()), delegate_(delegate), predictor_(nullptr) { TRACE_EVENT0("browser,startup", "ProfileImpl::ctor") DCHECK(!path.empty()) << "Using an empty path will attempt to write " << "profile files to the root directory!"; #if defined(OS_CHROMEOS) if (!chromeos::ProfileHelper::IsSigninProfile(this) && !chromeos::ProfileHelper::IsLockScreenAppProfile(this)) { const user_manager::User* user = chromeos::ProfileHelper::Get()->GetUserByProfile(this); // A |User| instance should always exist for a profile which is not the // initial, the sign-in or the lock screen app profile. CHECK(user); LOG_IF(FATAL, !session_manager::SessionManager::Get()->HasSessionForAccountId( user->GetAccountId())) << "Attempting to construct the profile before starting the user " "session"; } #endif #if BUILDFLAG(ENABLE_SESSION_SERVICE) create_session_service_timer_.Start(FROM_HERE, TimeDelta::FromMilliseconds(kCreateSessionServiceDelayMS), this, &ProfileImpl::EnsureSessionServiceCreated); #endif set_is_guest_profile(path == ProfileManager::GetGuestProfilePath()); set_is_system_profile(path == ProfileManager::GetSystemProfilePath()); // If profile_manager is not present, it means we are in a unittest. predictor_ = chrome_browser_net::Predictor::CreatePredictor( g_browser_process->profile_manager() == NULL); // If we are creating the profile synchronously, then we should load the // policy data immediately. bool force_immediate_policy_load = (create_mode == CREATE_MODE_SYNCHRONOUS); policy::BrowserPolicyConnector* connector = g_browser_process->browser_policy_connector(); schema_registry_service_ = policy::SchemaRegistryServiceFactory::CreateForContext( this, connector->GetChromeSchema(), connector->GetSchemaRegistry()); #if defined(OS_CHROMEOS) if (force_immediate_policy_load) chromeos::DeviceSettingsService::Get()->LoadImmediately(); configuration_policy_provider_ = policy::UserPolicyManagerFactoryChromeOS::CreateForProfile( this, force_immediate_policy_load, io_task_runner_); chromeos::AuthPolicyCredentialsManagerFactory:: BuildForProfileIfActiveDirectory(this); #else configuration_policy_provider_ = policy::UserCloudPolicyManagerFactory::CreateForOriginalBrowserContext( this, force_immediate_policy_load, io_task_runner_, BrowserThread::GetTaskRunnerForThread(BrowserThread::IO)); #endif profile_policy_connector_ = policy::ProfilePolicyConnectorFactory::CreateForBrowserContext( this, force_immediate_policy_load); DCHECK(create_mode == CREATE_MODE_ASYNCHRONOUS || create_mode == CREATE_MODE_SYNCHRONOUS); bool async_prefs = create_mode == CREATE_MODE_ASYNCHRONOUS; #if defined(OS_CHROMEOS) if (chromeos::ProfileHelper::IsSigninProfile(this)) RegisterLoginProfilePrefs(pref_registry_.get()); else #endif RegisterUserProfilePrefs(pref_registry_.get()); BrowserContextDependencyManager::GetInstance()-> RegisterProfilePrefsForServices(this, pref_registry_.get()); SupervisedUserSettingsService* supervised_user_settings = nullptr; #if BUILDFLAG(ENABLE_SUPERVISED_USERS) supervised_user_settings = SupervisedUserSettingsServiceFactory::GetForProfile(this); supervised_user_settings->Init(path_, io_task_runner_.get(), create_mode == CREATE_MODE_SYNCHRONOUS); #endif scoped_refptr<safe_browsing::SafeBrowsingService> safe_browsing_service( g_browser_process->safe_browsing_service()); prefs::mojom::TrackedPreferenceValidationDelegatePtr pref_validation_delegate; if (safe_browsing_service.get()) { auto pref_validation_delegate_impl = safe_browsing_service->CreatePreferenceValidationDelegate(this); if (pref_validation_delegate_impl) { mojo::MakeStrongBinding(std::move(pref_validation_delegate_impl), mojo::MakeRequest(&pref_validation_delegate)); } } content::BrowserContext::Initialize(this, path_); { auto delegate = InProcessPrefServiceFactoryFactory::GetInstanceForContext(this) ->CreateDelegate(); delegate->InitPrefRegistry(pref_registry_.get()); prefs_ = chrome_prefs::CreateProfilePrefs( path_, std::move(pref_validation_delegate), profile_policy_connector_->policy_service(), supervised_user_settings, CreateExtensionPrefStore(this, false), pref_registry_, async_prefs, GetIOTaskRunner(), std::move(delegate)); // Register on BrowserContext. user_prefs::UserPrefs::Set(this, prefs_.get()); } if (async_prefs) { // Wait for the notification that prefs has been loaded // (successfully or not). Note that we can use base::Unretained // because the PrefService is owned by this class and lives on // the same thread. prefs_->AddPrefInitObserver(base::BindOnce( &ProfileImpl::OnPrefsLoaded, base::Unretained(this), create_mode)); } else { // Prefs were loaded synchronously so we can continue directly. OnPrefsLoaded(create_mode, true); } } void ProfileImpl::DoFinalInit() { TRACE_EVENT0("browser", "ProfileImpl::DoFinalInit") SCOPED_UMA_HISTOGRAM_TIMER("Profile.ProfileImplDoFinalInit"); PrefService* prefs = GetPrefs(); pref_change_registrar_.Init(prefs); pref_change_registrar_.Add( prefs::kSupervisedUserId, base::Bind(&ProfileImpl::UpdateSupervisedUserIdInStorage, base::Unretained(this))); // Changes in the profile avatar. pref_change_registrar_.Add( prefs::kProfileAvatarIndex, base::Bind(&ProfileImpl::UpdateAvatarInStorage, base::Unretained(this))); pref_change_registrar_.Add( prefs::kProfileUsingDefaultAvatar, base::Bind(&ProfileImpl::UpdateAvatarInStorage, base::Unretained(this))); pref_change_registrar_.Add( prefs::kProfileUsingGAIAAvatar, base::Bind(&ProfileImpl::UpdateAvatarInStorage, base::Unretained(this))); // Changes in the profile name. pref_change_registrar_.Add( prefs::kProfileUsingDefaultName, base::Bind(&ProfileImpl::UpdateNameInStorage, base::Unretained(this))); pref_change_registrar_.Add( prefs::kProfileName, base::Bind(&ProfileImpl::UpdateNameInStorage, base::Unretained(this))); pref_change_registrar_.Add( prefs::kForceEphemeralProfiles, base::Bind(&ProfileImpl::UpdateIsEphemeralInStorage, base::Unretained(this))); media_device_id_salt_ = new MediaDeviceIDSalt(prefs_.get()); // It would be nice to use PathService for fetching this directory, but // the cache directory depends on the profile directory, which isn't available // to PathService. chrome::GetUserCacheDirectory(path_, &base_cache_path_); // Always create the cache directory asynchronously. CreateProfileDirectory(io_task_runner_.get(), base_cache_path_, false); // Initialize components that depend on the current value. UpdateSupervisedUserIdInStorage(); UpdateIsEphemeralInStorage(); GAIAInfoUpdateServiceFactory::GetForProfile(this); PrefService* local_state = g_browser_process->local_state(); ssl_config_service_manager_.reset( ssl_config::SSLConfigServiceManager::CreateDefaultManager( local_state, BrowserThread::GetTaskRunnerForThread(BrowserThread::IO))); #if BUILDFLAG(ENABLE_BACKGROUND_MODE) // Initialize the BackgroundModeManager - this has to be done here before // InitExtensions() is called because it relies on receiving notifications // when extensions are loaded. BackgroundModeManager is not needed under // ChromeOS because Chrome is always running, no need for special keep-alive // or launch-on-startup support unless kKeepAliveForTest is set. bool init_background_mode_manager = true; #if defined(OS_CHROMEOS) if (!base::CommandLine::ForCurrentProcess()->HasSwitch( switches::kKeepAliveForTest)) init_background_mode_manager = false; #endif if (init_background_mode_manager) { if (g_browser_process->background_mode_manager()) g_browser_process->background_mode_manager()->RegisterProfile(this); } #endif // BUILDFLAG(ENABLE_BACKGROUND_MODE) base::FilePath media_cache_path = base_cache_path_; int media_cache_max_size; GetMediaCacheParameters(&media_cache_path, &media_cache_max_size); media_cache_path = GetMediaCachePath(media_cache_path); base::FilePath extensions_cookie_path = GetPath(); extensions_cookie_path = extensions_cookie_path.Append(chrome::kExtensionsCookieFilename); // Make sure we initialize the ProfileIOData after everything else has been // initialized that we might be reading from the IO thread. io_data_.Init(media_cache_path, media_cache_max_size, extensions_cookie_path, GetPath(), predictor_, GetSpecialStoragePolicy(), CreateDomainReliabilityMonitor(local_state)); #if BUILDFLAG(ENABLE_PLUGINS) ChromePluginServiceFilter::GetInstance()->RegisterResourceContext( this, io_data_.GetResourceContextNoInit()); #endif TRACE_EVENT0("browser", "ProfileImpl::SetSaveSessionStorageOnDisk"); content::BrowserContext::GetDefaultStoragePartition(this)-> GetDOMStorageContext()->SetSaveSessionStorageOnDisk(); // The DomDistillerViewerSource is not a normal WebUI so it must be registered // as a URLDataSource early. dom_distiller::RegisterViewerSource(this); #if defined(OS_CHROMEOS) // Finished profile initialization - let the UserManager know so it can // mark the session as initialized. Need to do this before we restart below // so we don't get in a weird state where we restart before the session is // marked as initialized and so try to initialize it again. if (!chromeos::ProfileHelper::IsSigninProfile(this) && !chromeos::ProfileHelper::IsLockScreenAppProfile(this)) { chromeos::ProfileHelper* profile_helper = chromeos::ProfileHelper::Get(); user_manager::UserManager::Get()->OnProfileInitialized( profile_helper->GetUserByProfile(this)); } if (chromeos::UserSessionManager::GetInstance() ->RestartToApplyPerSessionFlagsIfNeed(this, true)) { return; } #endif if (delegate_) { TRACE_EVENT0("browser", "ProfileImpl::DoFileInit:DelegateOnProfileCreated") delegate_->OnProfileCreated(this, true, IsNewProfile()); } { SCOPED_UMA_HISTOGRAM_TIMER("Profile.NotifyProfileCreatedTime"); content::NotificationService::current()->Notify( chrome::NOTIFICATION_PROFILE_CREATED, content::Source<Profile>(this), content::NotificationService::NoDetails()); } #if !defined(OS_CHROMEOS) // Listen for bookmark model load, to bootstrap the sync service. // On CrOS sync service will be initialized after sign in. BookmarkModel* model = BookmarkModelFactory::GetForBrowserContext(this); model->AddObserver(new BookmarkModelLoadedObserver(this)); #endif PushMessagingServiceImpl::InitializeForProfile(this); #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS) signin_ui_util::InitializePrefsForProfile(this); #endif content::URLDataSource::Add(this, new PrefsInternalsSource(this)); } base::FilePath ProfileImpl::last_selected_directory() { return GetPrefs()->GetFilePath(prefs::kSelectFileLastDirectory); } void ProfileImpl::set_last_selected_directory(const base::FilePath& path) { GetPrefs()->SetFilePath(prefs::kSelectFileLastDirectory, path); } ProfileImpl::~ProfileImpl() { MaybeSendDestroyedNotification(); bool prefs_loaded = prefs_->GetInitializationStatus() != PrefService::INITIALIZATION_STATUS_WAITING; #if BUILDFLAG(ENABLE_SESSION_SERVICE) StopCreateSessionServiceTimer(); #endif // Remove pref observers pref_change_registrar_.RemoveAll(); #if BUILDFLAG(ENABLE_PLUGINS) ChromePluginServiceFilter::GetInstance()->UnregisterResourceContext( io_data_.GetResourceContextNoInit()); #endif // Destroy OTR profile and its profile services first. if (off_the_record_profile_) { ProfileDestroyer::DestroyOffTheRecordProfileNow( off_the_record_profile_.get()); } else { #if BUILDFLAG(ENABLE_EXTENSIONS) ExtensionPrefValueMapFactory::GetForBrowserContext(this)-> ClearAllIncognitoSessionOnlyPreferences(); #endif } BrowserContextDependencyManager::GetInstance()->DestroyBrowserContextServices( this); // This causes the Preferences file to be written to disk. if (prefs_loaded) SetExitType(EXIT_NORMAL); // This must be called before ProfileIOData::ShutdownOnUIThread but after // other profile-related destroy notifications are dispatched. ShutdownStoragePartitions(); } std::string ProfileImpl::GetProfileUserName() const { const SigninManagerBase* signin_manager = SigninManagerFactory::GetForProfileIfExists(this); if (signin_manager) return signin_manager->GetAuthenticatedAccountInfo().email; return std::string(); } Profile::ProfileType ProfileImpl::GetProfileType() const { return REGULAR_PROFILE; } #if !defined(OS_ANDROID) std::unique_ptr<content::ZoomLevelDelegate> ProfileImpl::CreateZoomLevelDelegate(const base::FilePath& partition_path) { return base::MakeUnique<ChromeZoomLevelPrefs>( GetPrefs(), GetPath(), partition_path, zoom::ZoomEventManager::GetForBrowserContext(this)->GetWeakPtr()); } #endif // !defined(OS_ANDROID) base::FilePath ProfileImpl::GetPath() const { return path_; } scoped_refptr<base::SequencedTaskRunner> ProfileImpl::GetIOTaskRunner() { return io_task_runner_; } bool ProfileImpl::IsOffTheRecord() const { return false; } Profile* ProfileImpl::GetOffTheRecordProfile() { if (!off_the_record_profile_) { std::unique_ptr<Profile> p(CreateOffTheRecordProfile()); off_the_record_profile_.swap(p); content::NotificationService::current()->Notify( chrome::NOTIFICATION_PROFILE_CREATED, content::Source<Profile>(off_the_record_profile_.get()), content::NotificationService::NoDetails()); } return off_the_record_profile_.get(); } void ProfileImpl::DestroyOffTheRecordProfile() { off_the_record_profile_.reset(); #if BUILDFLAG(ENABLE_EXTENSIONS) ExtensionPrefValueMapFactory::GetForBrowserContext(this)-> ClearAllIncognitoSessionOnlyPreferences(); #endif } bool ProfileImpl::HasOffTheRecordProfile() { return off_the_record_profile_.get() != NULL; } Profile* ProfileImpl::GetOriginalProfile() { return this; } const Profile* ProfileImpl::GetOriginalProfile() const { return this; } bool ProfileImpl::IsSupervised() const { return !GetPrefs()->GetString(prefs::kSupervisedUserId).empty(); } bool ProfileImpl::IsChild() const { #if BUILDFLAG(ENABLE_SUPERVISED_USERS) return GetPrefs()->GetString(prefs::kSupervisedUserId) == supervised_users::kChildAccountSUID; #else return false; #endif } bool ProfileImpl::IsLegacySupervised() const { return IsSupervised() && !IsChild(); } ExtensionSpecialStoragePolicy* ProfileImpl::GetExtensionSpecialStoragePolicy() { #if BUILDFLAG(ENABLE_EXTENSIONS) if (!extension_special_storage_policy_.get()) { TRACE_EVENT0("browser", "ProfileImpl::GetExtensionSpecialStoragePolicy") extension_special_storage_policy_ = new ExtensionSpecialStoragePolicy( CookieSettingsFactory::GetForProfile(this).get()); } return extension_special_storage_policy_.get(); #else return NULL; #endif } void ProfileImpl::OnLocaleReady() { TRACE_EVENT0("browser", "ProfileImpl::OnLocaleReady"); SCOPED_UMA_HISTOGRAM_TIMER("Profile.OnLocaleReadyTime"); // Migrate obsolete prefs. if (g_browser_process->local_state()) MigrateObsoleteBrowserPrefs(this, g_browser_process->local_state()); MigrateObsoleteProfilePrefs(this); // |kSessionExitType| was added after |kSessionExitedCleanly|. If the pref // value is empty fallback to checking for |kSessionExitedCleanly|. const std::string exit_type_pref_value( prefs_->GetString(prefs::kSessionExitType)); if (exit_type_pref_value.empty()) { last_session_exit_type_ = prefs_->GetBoolean(prefs::kSessionExitedCleanly) ? EXIT_NORMAL : EXIT_CRASHED; } else { last_session_exit_type_ = SessionTypePrefValueToExitType(exit_type_pref_value); } // Mark the session as open. prefs_->SetString(prefs::kSessionExitType, kPrefExitTypeCrashed); // Force this to true in case we fallback and use it. // TODO(sky): remove this in a couple of releases (m28ish). prefs_->SetBoolean(prefs::kSessionExitedCleanly, true); g_browser_process->profile_manager()->InitProfileUserPrefs(this); #if defined(OS_CHROMEOS) arc::ArcServiceLauncher::Get()->MaybeSetProfile(this); #endif { SCOPED_UMA_HISTOGRAM_TIMER("Profile.CreateBrowserContextServicesTime"); BrowserContextDependencyManager::GetInstance() ->CreateBrowserContextServices(this); } ChromeVersionService::OnProfileLoaded(prefs_.get(), IsNewProfile()); DoFinalInit(); } void ProfileImpl::OnPrefsLoaded(CreateMode create_mode, bool success) { TRACE_EVENT0("browser", "ProfileImpl::OnPrefsLoaded"); if (!success) { if (delegate_) delegate_->OnProfileCreated(this, false, false); return; } // Fail fast if the browser is shutting down. We want to avoid launching new // UI, finalising profile creation, etc. which would trigger a crash down the // the line. See crbug.com/625646 if (g_browser_process->IsShuttingDown()) { if (delegate_) delegate_->OnProfileCreated(this, false, false); return; } #if defined(OS_CHROMEOS) if (create_mode == CREATE_MODE_SYNCHRONOUS) { // Synchronous create mode implies that either it is restart after crash, // or we are in tests. In both cases the first loaded locale is correct. OnLocaleReady(); } else { chromeos::UserSessionManager::GetInstance()->RespectLocalePreferenceWrapper( this, base::Bind(&ProfileImpl::OnLocaleReady, base::Unretained(this))); } #else OnLocaleReady(); #endif } bool ProfileImpl::WasCreatedByVersionOrLater(const std::string& version) { base::Version profile_version(ChromeVersionService::GetVersion(prefs_.get())); base::Version arg_version(version); return (profile_version.CompareTo(arg_version) >= 0); } void ProfileImpl::SetExitType(ExitType exit_type) { #if defined(OS_CHROMEOS) if (chromeos::ProfileHelper::IsSigninProfile(this)) return; #endif if (!prefs_) return; ExitType current_exit_type = SessionTypePrefValueToExitType( prefs_->GetString(prefs::kSessionExitType)); // This may be invoked multiple times during shutdown. Only persist the value // first passed in (unless it's a reset to the crash state, which happens when // foregrounding the app on mobile). if (exit_type == EXIT_CRASHED || current_exit_type == EXIT_CRASHED) { prefs_->SetString(prefs::kSessionExitType, ExitTypeToSessionTypePrefValue(exit_type)); } } Profile::ExitType ProfileImpl::GetLastSessionExitType() { // last_session_exited_cleanly_ is set when the preferences are loaded. Force // it to be set by asking for the prefs. GetPrefs(); return last_session_exit_type_; } bool ProfileImpl::ShouldRestoreOldSessionCookies() { #if defined(OS_ANDROID) SessionStartupPref::Type startup_pref_type = SessionStartupPref::GetDefaultStartupType(); #else SessionStartupPref::Type startup_pref_type = StartupBrowserCreator::GetSessionStartupPref( *base::CommandLine::ForCurrentProcess(), this) .type; #endif return GetLastSessionExitType() == Profile::EXIT_CRASHED || startup_pref_type == SessionStartupPref::LAST; } bool ProfileImpl::ShouldPersistSessionCookies() { return true; } PrefService* ProfileImpl::GetPrefs() { return const_cast<PrefService*>( static_cast<const ProfileImpl*>(this)->GetPrefs()); } const PrefService* ProfileImpl::GetPrefs() const { DCHECK(prefs_); // Should explicitly be initialized. return prefs_.get(); } #if !defined(OS_ANDROID) ChromeZoomLevelPrefs* ProfileImpl::GetZoomLevelPrefs() { return static_cast<ChromeZoomLevelPrefs*>( GetDefaultStoragePartition(this)->GetZoomLevelDelegate()); } #endif // !defined(OS_ANDROID) PrefService* ProfileImpl::GetOffTheRecordPrefs() { if (HasOffTheRecordProfile()) { return GetOffTheRecordProfile()->GetPrefs(); } else { // The extensions preference API and many tests call this method even when // there's no OTR profile, in order to figure out what a pref value would // have been returned if an OTR profile existed. To support that case we // return a dummy PrefService here. // // TODO(crbug.com/734484): Don't call this method when there's no OTR // profile (and return null for such calls). return GetReadOnlyOffTheRecordPrefs(); } } PrefService* ProfileImpl::GetReadOnlyOffTheRecordPrefs() { if (!dummy_otr_prefs_) { dummy_otr_prefs_.reset(CreateIncognitoPrefServiceSyncable( prefs_.get(), CreateExtensionPrefStore(this, true), nullptr)); } return dummy_otr_prefs_.get(); } content::ResourceContext* ProfileImpl::GetResourceContext() { return io_data_.GetResourceContext(); } net::URLRequestContextGetter* ProfileImpl::GetRequestContext() { return GetDefaultStoragePartition(this)->GetURLRequestContext(); } net::URLRequestContextGetter* ProfileImpl::GetRequestContextForExtensions() { return io_data_.GetExtensionsRequestContextGetter().get(); } net::SSLConfigService* ProfileImpl::GetSSLConfigService() { // If ssl_config_service_manager_ is null, this typically means that some // KeyedService is trying to create a RequestContext at startup, // but SSLConfigServiceManager is not initialized until DoFinalInit() which is // invoked after all KeyedServices have been initialized (see // http://crbug.com/171406). DCHECK(ssl_config_service_manager_) << "SSLConfigServiceManager is not initialized yet"; return ssl_config_service_manager_->Get(); } content::BrowserPluginGuestManager* ProfileImpl::GetGuestManager() { #if BUILDFLAG(ENABLE_EXTENSIONS) return guest_view::GuestViewManager::FromBrowserContext(this); #else return NULL; #endif } DownloadManagerDelegate* ProfileImpl::GetDownloadManagerDelegate() { return DownloadCoreServiceFactory::GetForBrowserContext(this) ->GetDownloadManagerDelegate(); } storage::SpecialStoragePolicy* ProfileImpl::GetSpecialStoragePolicy() { #if BUILDFLAG(ENABLE_EXTENSIONS) return GetExtensionSpecialStoragePolicy(); #else return NULL; #endif } content::PushMessagingService* ProfileImpl::GetPushMessagingService() { return PushMessagingServiceFactory::GetForProfile(this); } content::SSLHostStateDelegate* ProfileImpl::GetSSLHostStateDelegate() { return ChromeSSLHostStateDelegateFactory::GetForProfile(this); } content::BrowsingDataRemoverDelegate* ProfileImpl::GetBrowsingDataRemoverDelegate() { return ChromeBrowsingDataRemoverDelegateFactory::GetForProfile(this); } // TODO(mlamouri): we should all these BrowserContext implementation to Profile // instead of repeating them inside all Profile implementations. content::PermissionManager* ProfileImpl::GetPermissionManager() { return PermissionManagerFactory::GetForProfile(this); } content::BackgroundFetchDelegate* ProfileImpl::GetBackgroundFetchDelegate() { return BackgroundFetchDelegateFactory::GetForProfile(this); } content::BackgroundSyncController* ProfileImpl::GetBackgroundSyncController() { return BackgroundSyncControllerFactory::GetForProfile(this); } net::URLRequestContextGetter* ProfileImpl::CreateRequestContext( content::ProtocolHandlerMap* protocol_handlers, content::URLRequestInterceptorScopedVector request_interceptors) { return io_data_.CreateMainRequestContextGetter( protocol_handlers, std::move(request_interceptors), g_browser_process->io_thread()) .get(); } net::URLRequestContextGetter* ProfileImpl::CreateRequestContextForStoragePartition( const base::FilePath& partition_path, bool in_memory, content::ProtocolHandlerMap* protocol_handlers, content::URLRequestInterceptorScopedVector request_interceptors) { return io_data_.CreateIsolatedAppRequestContextGetter( partition_path, in_memory, protocol_handlers, std::move(request_interceptors)) .get(); } net::URLRequestContextGetter* ProfileImpl::CreateMediaRequestContext() { return io_data_.GetMediaRequestContextGetter().get(); } net::URLRequestContextGetter* ProfileImpl::CreateMediaRequestContextForStoragePartition( const base::FilePath& partition_path, bool in_memory) { return io_data_ .GetIsolatedMediaRequestContextGetter(partition_path, in_memory).get(); } void ProfileImpl::RegisterInProcessServices(StaticServiceMap* services) { { service_manager::EmbeddedServiceInfo info; info.factory = InProcessPrefServiceFactoryFactory::GetInstanceForContext(this) ->CreatePrefServiceFactory(); info.task_runner = content::BrowserThread::GetTaskRunnerForThread( content::BrowserThread::UI); services->insert(std::make_pair(prefs::mojom::kServiceName, info)); } service_manager::EmbeddedServiceInfo identity_service_info; // The Identity Service must run on the UI thread. identity_service_info.task_runner = base::ThreadTaskRunnerHandle::Get(); // NOTE: The dependencies of the Identity Service have not yet been created, // so it is not possible to bind them here. Instead, bind them at the time // of the actual request to create the Identity Service. identity_service_info.factory = base::Bind(&ProfileImpl::CreateIdentityService, base::Unretained(this)); services->insert( std::make_pair(identity::mojom::kServiceName, identity_service_info)); } std::string ProfileImpl::GetMediaDeviceIDSalt() { return media_device_id_salt_->GetSalt(); } bool ProfileImpl::IsSameProfile(Profile* profile) { if (profile == static_cast<Profile*>(this)) return true; Profile* otr_profile = off_the_record_profile_.get(); return otr_profile && profile == otr_profile; } Time ProfileImpl::GetStartTime() const { return start_time_; } #if BUILDFLAG(ENABLE_SESSION_SERVICE) void ProfileImpl::StopCreateSessionServiceTimer() { create_session_service_timer_.Stop(); } void ProfileImpl::EnsureSessionServiceCreated() { SessionServiceFactory::GetForProfile(this); } #endif #if defined(OS_CHROMEOS) void ProfileImpl::ChangeAppLocale( const std::string& new_locale, AppLocaleChangedVia via) { if (new_locale.empty()) { NOTREACHED(); return; } PrefService* local_state = g_browser_process->local_state(); DCHECK(local_state); if (local_state->IsManagedPreference(prefs::kApplicationLocale)) return; std::string pref_locale = GetPrefs()->GetString(prefs::kApplicationLocale); bool do_update_pref = true; switch (via) { case APP_LOCALE_CHANGED_VIA_SETTINGS: case APP_LOCALE_CHANGED_VIA_REVERT: { // We keep kApplicationLocaleBackup value as a reference. In case value // of kApplicationLocale preference would change due to sync from other // device then kApplicationLocaleBackup value will trigger and allow us to // show notification about automatic locale change in LocaleChangeGuard. GetPrefs()->SetString(prefs::kApplicationLocaleBackup, new_locale); GetPrefs()->ClearPref(prefs::kApplicationLocaleAccepted); // We maintain kApplicationLocale property in both a global storage // and user's profile. Global property determines locale of login screen, // while user's profile determines their personal locale preference. break; } case APP_LOCALE_CHANGED_VIA_LOGIN: case APP_LOCALE_CHANGED_VIA_PUBLIC_SESSION_LOGIN: { if (!pref_locale.empty()) { DCHECK(pref_locale == new_locale); std::string accepted_locale = GetPrefs()->GetString(prefs::kApplicationLocaleAccepted); if (accepted_locale == new_locale) { // If locale is accepted then we do not want to show LocaleChange // notification. This notification is triggered by different values // of kApplicationLocaleBackup and kApplicationLocale preferences, // so make them identical. GetPrefs()->SetString(prefs::kApplicationLocaleBackup, new_locale); } else { // Back up locale of login screen. std::string cur_locale = g_browser_process->GetApplicationLocale(); GetPrefs()->SetString(prefs::kApplicationLocaleBackup, cur_locale); if (locale_change_guard_ == NULL) locale_change_guard_.reset(new chromeos::LocaleChangeGuard(this)); locale_change_guard_->PrepareChangingLocale(cur_locale, new_locale); } } else { std::string cur_locale = g_browser_process->GetApplicationLocale(); std::string backup_locale = GetPrefs()->GetString(prefs::kApplicationLocaleBackup); // Profile synchronization takes time and is not completed at that // moment at first login. So we initialize locale preference in steps: // (1) first save it to temporary backup; // (2) on next login we assume that synchronization is already completed // and we may finalize initialization. GetPrefs()->SetString(prefs::kApplicationLocaleBackup, cur_locale); if (!new_locale.empty()) GetPrefs()->SetString(prefs::kApplicationLocale, new_locale); else if (!backup_locale.empty()) GetPrefs()->SetString(prefs::kApplicationLocale, backup_locale); do_update_pref = false; } break; } case APP_LOCALE_CHANGED_VIA_UNKNOWN: default: { NOTREACHED(); break; } } if (do_update_pref) GetPrefs()->SetString(prefs::kApplicationLocale, new_locale); if (via != APP_LOCALE_CHANGED_VIA_PUBLIC_SESSION_LOGIN) local_state->SetString(prefs::kApplicationLocale, new_locale); if (user_manager::UserManager::Get()->GetOwnerAccountId() == chromeos::ProfileHelper::Get()->GetUserByProfile(this)->GetAccountId()) local_state->SetString(prefs::kOwnerLocale, new_locale); } void ProfileImpl::OnLogin() { if (locale_change_guard_ == NULL) locale_change_guard_.reset(new chromeos::LocaleChangeGuard(this)); locale_change_guard_->OnLogin(); } void ProfileImpl::InitChromeOSPreferences() { chromeos_preferences_.reset(new chromeos::Preferences()); chromeos_preferences_->Init( this, chromeos::ProfileHelper::Get()->GetUserByProfile(this)); } #endif // defined(OS_CHROMEOS) chrome_browser_net::Predictor* ProfileImpl::GetNetworkPredictor() { return predictor_; } GURL ProfileImpl::GetHomePage() { // --homepage overrides any preferences. const base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess(); if (command_line.HasSwitch(switches::kHomePage)) { // TODO(evanm): clean up usage of DIR_CURRENT. // http://code.google.com/p/chromium/issues/detail?id=60630 // For now, allow this code to call getcwd(). base::ThreadRestrictions::ScopedAllowIO allow_io; base::FilePath browser_directory; PathService::Get(base::DIR_CURRENT, &browser_directory); GURL home_page(url_formatter::FixupRelativeFile( browser_directory, command_line.GetSwitchValuePath(switches::kHomePage))); if (home_page.is_valid()) return home_page; } if (GetPrefs()->GetBoolean(prefs::kHomePageIsNewTabPage)) return GURL(chrome::kChromeUINewTabURL); GURL home_page(url_formatter::FixupURL( GetPrefs()->GetString(prefs::kHomePage), std::string())); if (!home_page.is_valid()) return GURL(chrome::kChromeUINewTabURL); return home_page; } void ProfileImpl::UpdateSupervisedUserIdInStorage() { ProfileManager* profile_manager = g_browser_process->profile_manager(); ProfileAttributesEntry* entry; bool has_entry = profile_manager->GetProfileAttributesStorage(). GetProfileAttributesWithPath(GetPath(), &entry); if (has_entry) { entry->SetSupervisedUserId(GetPrefs()->GetString(prefs::kSupervisedUserId)); ProfileMetrics::UpdateReportedProfilesStatistics(profile_manager); } } void ProfileImpl::UpdateNameInStorage() { ProfileAttributesEntry* entry; bool has_entry = g_browser_process->profile_manager()->GetProfileAttributesStorage(). GetProfileAttributesWithPath(GetPath(), &entry); if (has_entry) { entry->SetName( base::UTF8ToUTF16(GetPrefs()->GetString(prefs::kProfileName))); entry->SetIsUsingDefaultName( GetPrefs()->GetBoolean(prefs::kProfileUsingDefaultName)); } } void ProfileImpl::UpdateAvatarInStorage() { ProfileAttributesEntry* entry; bool has_entry = g_browser_process->profile_manager()->GetProfileAttributesStorage(). GetProfileAttributesWithPath(GetPath(), &entry); if (has_entry) { entry->SetAvatarIconIndex( GetPrefs()->GetInteger(prefs::kProfileAvatarIndex)); entry->SetIsUsingDefaultAvatar( GetPrefs()->GetBoolean(prefs::kProfileUsingDefaultAvatar)); entry->SetIsUsingGAIAPicture( GetPrefs()->GetBoolean(prefs::kProfileUsingGAIAAvatar)); } } void ProfileImpl::UpdateIsEphemeralInStorage() { ProfileAttributesEntry* entry; bool has_entry = g_browser_process->profile_manager()->GetProfileAttributesStorage(). GetProfileAttributesWithPath(GetPath(), &entry); if (has_entry) { entry->SetIsEphemeral( GetPrefs()->GetBoolean(prefs::kForceEphemeralProfiles)); } } // Gets the media cache parameters from the command line. |cache_path| will be // set to the user provided path, or will not be touched if there is not an // argument. |max_size| will be the user provided value or zero by default. void ProfileImpl::GetMediaCacheParameters(base::FilePath* cache_path, int* max_size) { base::FilePath path(prefs_->GetFilePath(prefs::kDiskCacheDir)); if (!path.empty()) *cache_path = path.Append(cache_path->BaseName()); *max_size = prefs_->GetInteger(prefs::kMediaCacheSize); } std::unique_ptr<domain_reliability::DomainReliabilityMonitor> ProfileImpl::CreateDomainReliabilityMonitor(PrefService* local_state) { domain_reliability::DomainReliabilityService* service = domain_reliability::DomainReliabilityServiceFactory::GetInstance()-> GetForBrowserContext(this); if (!service) return std::unique_ptr<domain_reliability::DomainReliabilityMonitor>(); return service->CreateMonitor( BrowserThread::GetTaskRunnerForThread(BrowserThread::UI), BrowserThread::GetTaskRunnerForThread(BrowserThread::IO)); } std::unique_ptr<service_manager::Service> ProfileImpl::CreateIdentityService() { AccountTrackerService* account_tracker = AccountTrackerServiceFactory::GetForProfile(this); SigninManagerBase* signin_manager = SigninManagerFactory::GetForProfile(this); ProfileOAuth2TokenService* token_service = ProfileOAuth2TokenServiceFactory::GetForProfile(this); return base::MakeUnique<identity::IdentityService>( account_tracker, signin_manager, token_service); }
9590c287437853c060891532239d5c10edc8a317
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function13833/function13833_schedule_26/function13833_schedule_26.cpp
eb85680474237f67fcb8527f9eca7e9686ac8e9b
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
728
cpp
#include <tiramisu/tiramisu.h> using namespace tiramisu; int main(int argc, char **argv){ tiramisu::init("function13833_schedule_26"); constant c0("c0", 512), c1("c1", 128), c2("c2", 1024); var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06"); computation comp0("comp0", {i0, i1, i2}, 9 + 3); comp0.tile(i0, i1, i2, 32, 128, 128, i01, i02, i03, i04, i05, i06); comp0.parallelize(i01); buffer buf0("buf0", {512, 128, 1024}, p_int32, a_output); comp0.store_in(&buf0); tiramisu::codegen({&buf0}, "../data/programs/function13833/function13833_schedule_26/function13833_schedule_26.o"); return 0; }
68e59db9d6b2092c633ca18b108a89c5aef9437d
84c177db9c274502244445b5cb19c91efff7c291
/rk3128/Treadmill_driver/heart_safe/new/hardware/rockchip/sensor/st/SafelockSensor.cpp
4594e4ad304dada3c897ecb050ac9db6e9d86b48
[ "Apache-2.0" ]
permissive
darcyg/SuqingNote
bdb9e48668321d98584684a6cd14b940593e3dc8
78ab4839db43f3fa1b97fe544c327461c746e455
refs/heads/master
2020-06-05T14:42:08.118817
2018-09-04T11:07:33
2018-09-04T11:07:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,953
cpp
/* * Copyright (C) 2010 Motorola, Inc. * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <fcntl.h> #include <errno.h> #include <math.h> #include <poll.h> #include <unistd.h> #include <dirent.h> #include <sys/select.h> #include <cutils/log.h> #include "SafelockSensor.h" /*****************************************************************************/ SafelockSensor::SafelockSensor() : SensorBase(SA_DEVICE_NAME, "safelock"), mEnabled(0), mInputReader(32), mHasPendingEvent(false) { mPendingEvent.version = sizeof(sensors_event_t); mPendingEvent.sensor = ID_SA; mPendingEvent.type = SENSOR_TYPE_SAFELOCK; memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data)); open_device(); int flags = 0; if (!ioctl(dev_fd, SAFELOCK_IOCTL_GET_ENABLED, &flags)) { if (flags) { mEnabled = 1; setInitialState(); } } if (!mEnabled) { close_device(); } } SafelockSensor::~SafelockSensor() { } int SafelockSensor::setInitialState() { struct input_absinfo absinfo; if (!ioctl(data_fd, EVIOCGABS(EVENT_TYPE_SAFELOCK), &absinfo)) { mHasPendingEvent = true; } return 0; } int SafelockSensor::enable(int32_t, int en) { int flags = en ? 1 : 0; int err = 0; if (flags != mEnabled) { if (!mEnabled) { open_device(); } err = ioctl(dev_fd, SAFELOCK_IOCTL_ENABLE, &flags); err = err<0 ? -errno : 0; LOGE_IF(err, "SAFELOCK_IOCTL_ENABLE failed (%s)", strerror(-err)); if (!err) { mEnabled = en ? 1 : 0; if (en) { setInitialState(); } } if (!mEnabled) { close_device(); } } return err; } bool SafelockSensor::hasPendingEvents() const { return mHasPendingEvent; } int SafelockSensor::setDelay(int32_t handle, int64_t ns) { if (ns < 0) return -EINVAL; int delay = ns / 1000000; if (ioctl(dev_fd, SAFELOCK_IOCTL_SET_DELAY, &delay)) { return -errno; } return 0; } int SafelockSensor::readEvents(sensors_event_t* data, int count) { if (count < 1) return -EINVAL; if (mHasPendingEvent) { mHasPendingEvent = false; mPendingEvent.timestamp = getTimestamp(); *data = mPendingEvent; return mEnabled ? 1 : 0; } ssize_t n = mInputReader.fill(data_fd); if (n < 0) return n; int numEventReceived = 0; input_event const* event; while (count && mInputReader.readEvent(&event)) { int type = event->type; if (type == EV_ABS) { processEvent(event->code, event->value); } else if (type == EV_SYN) { int64_t time = timevalToNano(event->time); mPendingEvent.timestamp = time; if (mEnabled) { *data++ = mPendingEvent; count--; numEventReceived++; } } else { ALOGE("SafelockSensor: unknown event (type=%d, code=%d)", type, event->code); } mInputReader.next(); } return numEventReceived; } void SafelockSensor::processEvent(int code, int value) { if (code == EVENT_TYPE_SAFELOCK) { mPendingEvent.pressure = value * CONVERT_B ; LOGD("%s:value=%d\n",__FUNCTION__, value); } }
0607633296ee86f9b354f7f0637671e1a0024170
427f48b76d1b312cff7af2d9b535ea333e8d154e
/cpp/error_uncaught_exception.cpp
edb3fd62ca6d8d3fe9ad767d2a5f5d6f95234936
[ "MIT" ]
permissive
rpuntaie/c-examples
8925146dd1a59edb137c6240363e2794eccce004
385b3c792e5b39f81a187870100ed6401520a404
refs/heads/main
2023-05-31T15:29:38.919736
2021-06-28T16:53:07
2021-06-28T16:53:07
381,098,552
1
0
null
null
null
null
UTF-8
C++
false
false
778
cpp
/* g++ --std=c++20 -pthread -o ../_build/cpp/error_uncaught_exception.exe ./cpp/error_uncaught_exception.cpp && (cd ../_build/cpp/;./error_uncaught_exception.exe) https://en.cppreference.com/w/cpp/error/uncaught_exception */ #include <iostream> #include <exception> #include <stdexcept> struct Foo { int count = std::uncaught_exceptions(); ~Foo() { std::cout << (count == std::uncaught_exceptions() ? "~Foo() called normally\n" : "~Foo() called during stack unwinding\n"); } }; int main() { Foo f; try { Foo f; std::cout << "Exception thrown\n"; throw std::runtime_error("test exception"); } catch (const std::exception& e) { std::cout << "Exception caught: " << e.what() << '\n'; } }
c5da447154447e34785aded8737a0e4c17555baa
82317a604ae195d04308a6ee609ea124ed4bef79
/src/IntrinsicCalibrator.h
699767b92b33342cf9b70e228baef251e091e6e6
[]
no_license
improdevteam/ImProConsole_Test
391dd62e2e62e313210665214ac2c4ee93d0273a
c28bac7347bcfa7d31b24c9b06c50278755cb65e
refs/heads/master
2020-05-09T12:13:29.500399
2019-05-09T01:32:30
2019-05-09T01:32:30
181,105,908
0
1
null
null
null
null
UTF-8
C++
false
false
14,861
h
#pragma once #include <vector> #include <iostream> using namespace std; #include <opencv2/core.hpp> #include <opencv2/calib3d.hpp> #include <opencv2/imgproc.hpp> using namespace cv; #include "FileSeq.h" //#include "FileSequence.h" #define ICAL_CORNERS_FOUND 1 #define ICAL_CORNERS_FAILED -1 #define ICAL_CORNERS_UNKNOWN 0 vector<double> proj_err_points( const vector<cv::Point2f> imgPoints, const vector<cv::Point3f> objPoints, const cv::Mat cmat, const cv::Mat dvec, const cv::Mat rvec, const cv::Mat tvec); vector<double> proj_err_lines( const vector<cv::Point2f> imgPoints, const cv::Mat cmat, const cv::Mat dvec); /*! IntrinsicCalibrator assists the procedures to carry out intrinsic calibration. It needs user to provide a text file that contains calibration coordinate of corners on a calibration board. Usage: // Step 1: Create an IntrinsicCalibrator IntrinsicCalibrator calib; // Step 2: Set path of files Step 3: You can get all file names in this path calib.readFromFsFile("calibration_myCamera.xml/yaml"); calib.findAllCorners(); calib.writeToFsFile("calibration_myCamera_result.xml/yaml"); */ class IntrinsicCalibrator { public: IntrinsicCalibrator(); ~IntrinsicCalibrator(); //! Constructs an IntrinsicCalibrator object by giving working directory /*! \details Usage example: IntrinsicCalibrator calib("c:/TestPhotos/"); \param theDir the directory of calibration photos. Files must be in the working directory. The directory separator can be either '/' or '\\'. If theDir does not end with '/' or '\\' then this class will automatically add one. */ IntrinsicCalibrator(std::string theDir); //! Initialization of an IntrinsicCalibrator object /*! */ void init(); //! Returns the reference of FileSeq object FileSeq & fileSeq(); // createTemplateInputFile() writes the XML file of an empty // IntrinsicCalibrator by calling writeToFsFile() giving xml and yaml file names // of a new constructed object. void createTemplateInputFile(); // setCalibrationBoard() sets chessboard-pattern calibration board parameters // including number of corners along width and height directions, and the // physical size between two neighboring corners along width and height // directions. For a regular 8x8 chessboard with 2-inch squares, give // (7, 7, 2, 2) if you use inch, or (7, 7, 50.8, 50.8) if you use mm. void setCalibrationBoard(int type, int num_corners_along_width, int num_corners_along_height, double square_width, double square_height); // setFileSequence() allows user to set calibration photos through an // FileSequence. // Input: // imsq: the FileSequence of calibration photos // Return: // number of valid photos int setFileSeq(const FileSeq & imsq); // addCalibPhoto() allows user to add a single calibration photo. // Input: // img: calibration photo // bsize_w_h: numbers of squares along board width (.x) and height (.y) // square_w: the physical size of the width of a square (user defines the unit) // square_h: the physical size of the height of a square (user defines the unit) // Return: // 1: success // 0 or else: cannot find sufficient corners int addCalibrationPhoto(const cv::Mat & img, const cv::Size bsize_w_h, double square_w, double square_h); //! findCorners() tries to the calibration board corners in a photo. /*! \param idx index of photo in the file sequence \param bSize board size (number of points along width and height) \param sqw square size along width \param sqh square size along height \param board_type board type. 1:chessboard, 2.grid(sym), 3.grid(unsym) \return 0: success. -1: File is not an image. -2: Corners cannot be found. */ int findCorners(int idx, cv::Size bSize, float sqw, float sqh, int board_type = 1); //! cal_types() returns the vector of calibration types vector<int> & calTypes(); const vector<int> & calTypes() const; //! imgPoints() returns the vector of vectors of image points vector<vector<Point2f> > & imgPoints(); // calib_imgPoints[iimg][ipoint] is image point fo ipoint of iimg-th calibration photo const vector<vector<Point2f> > & imgPoints() const; // calib_imgPoints[iimg][ipoint] is image point fo ipoint of iimg-th calibration photo //! objPoints() returns the vector of vectors of object points vector<vector<Point3f> > & objPoints(); // calib_objPoints[iimg][ipoint] is object point of ipoint of iimg-th calibration photo const vector<vector<Point3f> > & objPoints() const; // calib_objPoints[iimg][ipoint] is object point of ipoint of iimg-th calibration photo //! writeImgPointsToFile() writes image points to both .xi.txt, .xi.xml, and .xi.yaml files. /*! \param idx index of photo in the file sequence */ int writeImgPointsToFile(int idx); //! writeImgsPointsToFiles() writes all images points to both .xi.txt, .xi.xml, and .xi.yaml files. int writeImgsPointsToFiles(); //! writeObjPointsToFiles() writes object points to both .xxi.txt .xi.xml, and .xi.yaml files. /*! \param idx index of photo in the file sequence */ int writeObjPointsToFile(int idx); //! writeObjsPointsToFiles() writes all objects points to both .xi.txt, .xi.xml, and .xi.yaml files. int writeObjsPointsToFiles(); // findAllCorners() tries to find the corners. It may take a few seconds of time. /*! \param bSize board size(number of points along width and height) \param sqw square size along width \param sqh square size along height \param board_type board type. 1:chessboard, 2.grid(sym), 3.grid(unsym) \return 0: success. - 1 : File is not an image. - 2 : Corners cannot be found. */ int findAllCorners(cv::Size bSize, float sqw, float sqh, int board_type = 1); //! setBoardObjPoints() sets calibration board object points of a photo /*! \param idx index of photo in the file sequence \param bSize board size (number of points along width and height) \param sqw square size along width \param sqh square size along height \param board_type board type. 1:chessboard, 2.grid(sym), 3.grid(unsym) \return 0: success */ int setBoardObjPoints(int idx, cv::Size bSize, float sqw, float sqh, int board_type = 1); //! defineUserPoints /*! \details user defines image points by mouse and object points by keyboard \param idx photo index \param imgPoints in type of vector<Point2f> \param objPoints in type of vector<Point3f> */ int defineUserPoints(int idx, const vector<cv::Point2f> & imgPoints, const vector<cv::Point3f> & objPoints, cv::Size imgSize = cv::Size(0,0) ); int defineUserPoints(int idx, const vector<cv::Point2f> & imgPoints, const vector<cv::Point3d> & objPoints, cv::Size imgSize = cv::Size(0, 0)); int setCameraMatrix(const cv::Mat & cmat); int setDistortionVector(const cv::Mat & dvec); int solvePnp(int valid_photo_id = 0); //! get image points of photo idx /*! \details returns image points of photo idx \param idx photo index */ const vector<cv::Point2f> & imagePoints(int idx); //! get object points of photo idx /*! \details returns object points of photo idx \param idx photo index */ const vector<cv::Point3f> & objectPoints(int idx); // set flags int setFlag_FixAspectRatio(bool flag); int setFlag_FixFocalLength(bool flag); int setFlag_FixK1(bool flag); int setFlag_FixK2(bool flag); int setFlag_FixK3(bool flag); int setFlag_FixK4(bool flag); int setFlag_FixK5(bool flag); int setFlag_FixK6(bool flag); int setFlag_FixPrincipalPoint(bool flag); int setFlag_RationalModel(bool flag); int setFlag_FixTangentDist(bool flag); int setFlagByAsking(); // //! calibrate() runs intrinsic calibration according to all // corners-found calibration photos. /*! \details calibrate() runs opencv intrinsic calibration after checking data. Only points sets with the following conditions are selected for calibration - Calibration type (cal_types) is 1, 2, 3 (boards) or 11 (user defined) - Correct numbers (>0, # img points = # obj points) of image and object points - All points are valid (not isnan) - If invalid, cal_types will be changed to 0 (not assigned) After calibration, the following info are saved - camera matrix (cmat) / distortion vector (dvec) - rves and tvecs .... \param flagType: 0: (default) by user's previous setting (this->calib_flag). 1: according to number of points. 2: given in 2nd argument \param flag: calibration flag, only used when flagType == 2 */ int calibrate(int flagType = 0, int flag = 0); //! calibrateWithGivenLevel() runs intrinsic calibration considering user assigned level /*! \param level flag level: level 1:fx(=fy),k1, 2:fx,fy,k1, 3:fx,fy,cx,cy,k1, 4:fx,fy,cx,cy,k1,p1,p2, 5:fx,fy,cx,cy,k1,k2,p1,p2. */ int calibrateByLevel(int level); // numValidPhotos() returns the number of valid photos. // Valid photos are which all corners on calibration board can be found. // Return: // The number of valid photos. int numValidPhotos() const; // setImageSize() sets the image size. // If given non-positive values, this function tries to find size from file or // user defined points. int setImageSize(int w = 0, int h = 0); // imageSize() returns the image size. It updates when photos are read and corners // are found, or data are loaded from file. // It becomes zero when setFileSequence() is called. cv::Size imageSize() const; // validCalibrationFileName() returns the file name of the valid photo. // Valid photos are which all corners on calibration board can be found. // Input: // index: the index of the valid calibration photo // Return: // The file name of the valid photo. string validCalibrationFileName(int index) const; // validCalibrationRms() returns root mean square of errors of the // valid photo. // Valid photos are which all corners on calibration board can be found. // Input: // index: the index of the valid calibration photo // Return: // The root mean square of errors of the valid photo. double validCalibrationRms(int index) const; // cameraMatrix() returns the calibrated camera matrix // Return: // The calibrated camera matrix. If calibration is not done yet, it // returns eye(3,3, CV_32F). cv::Mat cameraMatrix(); // camera matrix format cv::Mat(3, 3, CV_64F) // distortionVector() returns the calibrated distortion vector // Return: // The calibrated distortion vector. If calibration is not done yet, it returns eye(3,3, CV_32F). cv::Mat distortionVector(); // distortion coefficients format cv::Mat(1, DN, CV_64F), DN = 4,5,8,12, //! rotationVectors() returns vector of the r-vec of each photo vector<Vec3d> rotationVectors(); //! translationVectors() returns vector of the t-vec of each photo vector<Vec3d> translationVectors(); //! projection_points_vecvec() calculates projected points // of each point of each photo /*! \details Projection points are in unit of "pixel." \return vector<vector<double> > */ vector<vector<cv::Point2f> > projection_points_vecvec(); //! projection_errors_vecvec() calculates projection error // of each point of each photo /*! \details Projection errors are in unit of "pixel." \return vector<vector<double> > proj_errs */ vector<vector<double> > projection_errors_vecvec(); //! projection_errors_vec() calculates projection error // of each photo (norm of each point) /*! \details Projection errors are in unit of "pixel." \return vector<double> proj_errs */ vector<double> projection_errors_vec(); //! projection_error() calculates projection error // overall (norm of norm of all points) /*! \details Projection error is in unit of "pixel." \return norm of each photo of each point */ double projection_error(); // writeIntrinsicParametersToFile() writes intrinsic parameters to a file. // Output parameters are fx,fy,cx,cy,k1,k2,p1,p2,k3,k4,k5,k6 // Input: // filename: the file name to write (without the path). The file will be written at the same // directory with the FileSequence. // File name of "cout" is a special string that indicates the cout stream. // However, if FileSequence is not assigned yet, the filename should be a full path. // Return: // 0: succeeded // otherwise: failed int writeIntrinsicParamteresToFile(string filename = "cout") const; // readIntrinsicParametersToFile() reads intrinsic parameters from a file. // Input parameters are fx,fy,cx,cy,k1,k2,p1,p2,k3,k4,k5,k6 // Input: // fullpathfile: the file name to read (with full path). // Return: // 0: succeeded // otherwise: failed int readIntrinsicParamteresToFile(string fullpathfile) ; // writeToFsFile() writes settings to an XML/YAML file. int writeToFsFile(string fullPathSetting) const; // readFromFsFile() writes settings to an XML file. int readFromFsFile(string fullPathSetting); //! Returns R4 matrix of a certain photo /*! */ cv::Mat R4(int i) const; // get FileSequence FileSeq getFileSeq() const; //! Writes string to log file /*! */ int log(std::string) const; //! Writes a matlab script for visualization //! Runs a sample program /*! */ int writeToMscript(std::string) const; private: FileSeq imsq; // File sequence of calibration photos int n_calib_imgs; // number of valid calibration photos (images) int calib_flag; vector<int> cal_types; // 0:not assigned. 1:chessboard. 2:grid(sym). 3:grid(unsym). 11:user defined points. 12:3-point straight lines double calib_rms; vector<vector<double> > projection_errs; // unit: pixel cv::Mat cmat; // cmat is the calibrated camera matrix (3x3). cv::Mat dvec; // dvec is the calibrated distortion coefficients. (1x4, 1x5, 1x8, or 1x12) vector<cv::Vec3d> rvecs; // r-vec of each photo. (only valid for cal_types[i] == 1, 2, 3, 11) vector<cv::Vec3d> tvecs; // t-vec of each photo. (only valid for cal_types[i] == 1, 2, 3, 11) vector<int> findingCornersResult; // result of finding corners vector<double> calib_rmsv; // Root-mean-square vector of calibration photos vector<vector<Point3f> > calib_objPoints; // calib_objPoints[iimg][ipoint] is object point of ipoint of iimg-th calibration photo vector<vector<Point2f> > calib_imgPoints; // calib_imgPoints[iimg][ipoint] is image point fo ipoint of iimg-th calibration photo vector<vector<Point2f> > calib_prjPoints; // calib_prjPoints[iimg][ipoint] is image project point of ipoint of iimg-th calibration photo vector<cv::Mat> rmats44; // extrinsic 4x4 matrix of the calibration board cv::Size imgSize; // image size of this camera. vector<string> calib_valid_fnames; // file names of valid calibration photos. vector<double> calib_valid_rms; // rms of valid calibration photos. std::string logFilename; };
b159cb3e00ead6563f9fb0db3d8f2462da9a6a75
1488ef429286ba06c77a065c942cc583498952d7
/XmlDocument/XmlDocument.cpp
175713da11e118eb02001f0467596958d9c635b8
[]
no_license
rahulmaddineni/Remote-Code-Repository
cde2a7537fd360346972a94354f3f4de249470b4
c1c61c65ff589a5d23fb801736f6a0bd0f49a41c
refs/heads/master
2020-12-02T22:39:53.895504
2017-07-04T01:56:50
2017-07-04T01:56:50
96,163,031
1
0
null
null
null
null
UTF-8
C++
false
false
9,017
cpp
/////////////////////////////////////////////////////////////////// // XmlDocument.cpp - a container of XmlElement nodes // // Ver 2.2 // // Application: Help for CSE687 Pr#2, Spring 2015 // // Platform: Dell XPS 2720, Win 8.1 Pro, Visual Studio 2013 // // Author: Jim Fawcett, CST 4-187, 443-3948 // // [email protected] // /////////////////////////////////////////////////////////////////// #include <iostream> #include <functional> #include "XmlDocument.h" #include "..\XmlParser\XmlParser.h" #define STATIC_LIB //#include <Utilities.h> using namespace XmlProcessing; using sPtr = std::shared_ptr < AbstractXmlElement > ; ///////////////////////////////////////////////////////////////////////////// // Definitions of XmlDocument methods XmlProcessing::XmlDocument::XmlDocument(const std::string& src, sourceType srcType) { XmlParser parser(src, (XmlParser::sourceType) srcType); XmlDocument* pDoc = parser.buildDocument(); *this = std::move(*pDoc); } //----< move constructor >--------------------------------------------------- XmlDocument::XmlDocument(XmlDocument&& doc) { pDocElement_ = doc.pDocElement_; doc.pDocElement_ = nullptr; } //----< move assignment >---------------------------------------------------- XmlDocument& XmlDocument::operator=(XmlDocument&& doc) { if (&doc == this) return *this; pDocElement_ = doc.pDocElement_; doc.pDocElement_ = nullptr; return *this; } //----< return std::shared_ptr to XML root >--------------------------------- sPtr XmlDocument::xmlRoot() { for (auto pElem : pDocElement_->children()) { if (dynamic_cast<TaggedElement*>(pElem.get())) return pElem; } return nullptr; } //----< add XML root to an XmlDocument >------------------------------------- bool XmlDocument::xmlRoot(sPtr pRoot) { return pDocElement_->addChild(pRoot); } //----< find element(s) with this tag >-------------------------------------- /* * if tag == "" returns pElem and all decendents */ bool XmlDocument::find(const std::string& tag, sPtr pElem, bool findall) { if (pElem->tag() == tag || tag == "") { found_.push_back(pElem); if (!findall) return true; } for (auto pChild : pElem->children()) find(tag, pChild); return (found_.size() > 0); } //----< find element with this tag >----------------------------------------- /* * found_[0] contains first element (DFS order) with tag, else empty */ XmlDocument& XmlDocument::element(const std::string& tag) { found_.clear(); find(tag, pDocElement_, false); return *this; } //----< find children of element with this tag >----------------------------- /* * found_ contains all children found, else empty */ XmlDocument& XmlDocument::elements(const std::string& tag) { found_.clear(); element(tag); if (found_.size() > 0) { sPtr pElem = found_[0]; found_.clear(); // don't keep parent element for (auto pChild : pElem->children()) found_.push_back(pChild); // save children } return *this; } //----< find all decendents of last find with this tag >--------------------- /* * returns all decendents if tag == "" */ XmlDocument& XmlDocument::descendents(const std::string& tag) { if (found_.size() == 0) found_.push_back(xmlRoot()); sPtr pElem = found_[0]; found_.clear(); for (auto pChild : pElem->children()) find(tag, pChild, true); return *this; } //----< return found results >----------------------------------------------- std::vector<sPtr> XmlDocument::select() { return std::move(found_); // returns results and clears found_ } //----< return the number of elements in the document >---------------------- size_t XmlDocument::size() { find("", pDocElement_, true); size_t size_ = found_.size() - 1; // don't count docElement found_.clear(); return size_; } //----< return XML string representation of XmlDocument >-------------------- std::string XmlDocument::toString() { return pDocElement_->toString(); } std::string enQuote(std::string s) { return "\"" + s + "\""; } #ifdef TEST_XMLDOCUMENT ///////////////////////////////////////////////////////////////////////////// // Test Functions //----< build an XmlDocument for testing >----------------------------------- XmlDocument buildDocument() { sPtr pRoot = makeTaggedElement("root"); XmlDocument doc(XmlProcessing::makeDocElement(pRoot)); sPtr child1 = makeTaggedElement("child1"); child1->addChild(makeTextElement("child1 text")); sPtr grandChild11 = makeTaggedElement("grandChild11"); grandChild11->addChild(makeTextElement("grandchild11 text")); child1->addChild(grandChild11); pRoot->addChild(child1); sPtr secondChild1 = makeTaggedElement("child1"); secondChild1->addChild(makeTextElement("text of second child1")); child1->addChild(secondChild1); sPtr child2 = makeTaggedElement("child2"); child2->addChild(makeTextElement("child2 text")); pRoot->addChild(child2); return doc; } //----< test Depth First Search on XmlDocument >----------------------------- void testDFS(XmlDocument& doc) { title("testing global DFS on XmlDocument - printing tags"); std::function<void(AbstractXmlElement&)> f; f = [](AbstractXmlElement& Elem) { if (Elem.tag().size() > 0) std::cout << "\n " << Elem.tag(); }; DFS(doc, f); std::cout << "\n"; } //----< test search for element with specified tag >------------------------- void testElement(XmlDocument& doc) { std::string testTag = "child1"; title("testing element(" + enQuote(testTag) + ")"); std::vector<sPtr> found = doc.element(testTag).select(); if (found.size() > 0) std::cout << "\n found " << found[0]->tag(); else std::cout << "\n couldn't find " + enQuote(testTag); std::cout << "\n"; testTag = "foobar"; title("testing element(" + enQuote(testTag) + ")"); found = doc.element(testTag).select(); if (found.size() > 0) std::cout << "\n found " << found[0]->tag(); else std::cout << "\n couldn't find " + enQuote(testTag); std::cout << "\n"; } //----< test search for children of element with specified tag >------------- void testElements(XmlDocument& doc) { std::string testTag = "child1"; title("testing elements(" + enQuote(testTag) + ")"); std::vector<sPtr> found = doc.elements(testTag).select(); if (found.size() > 0) { for (auto pElem : found) { if (pElem->tag() != "") std::cout << "\n found: " << pElem->tag(); else std::cout << "\n found: " << pElem->value(); } } else std::cout << "\n couldn't find child elements"; std::cout << "\n"; } //----< test search for all decendents of xmlRoot with specified tag >------- void testDescendents(XmlDocument& doc) { std::string testTag = "child1"; title("testing doc.descendents(" + enQuote(testTag) + ")"); std::vector<sPtr> found = doc.descendents(testTag).select(); if (found.size() > 0) { for (auto pElem : found) { if (pElem->tag() != "") std::cout << "\n found: " << pElem->tag(); else std::cout << "\n found: " << pElem->value(); } } else std::cout << "\n couldn't find descendent elements"; std::cout << "\n"; } //----< test search for all decendents of specified element >---------------- void testElementDescendents(XmlDocument& doc) { std::string testTag = "child1"; title("testing doc.element(" + testTag + ").descendents()"); std::vector<sPtr> found = doc.element(testTag).descendents().select(); if (found.size() > 0) { for (auto pElem : found) { if (pElem->tag() != "") std::cout << "\n found: " << pElem->tag(); else std::cout << "\n found: " << pElem->value(); } } else std::cout << "\n couldn't find descendent elements"; std::cout << "\n"; } //----< test stub >---------------------------------------------------------- int main() { title("Testing XmlDocument class"); XmlDocument doc = buildDocument(); std::cout << doc.toString(); std::cout << "\n"; std::cout << "\n size of document = " << doc.size() << "\n"; title("Testing XmlDocument::DFS - looking for tags"); std::function<void(AbstractXmlElement&)> f; f = [](AbstractXmlElement& Elem) { if (Elem.tag().size() > 0) std::cout << "\n " << Elem.tag(); }; doc.DFS(doc.xmlRoot(), f); std::cout << "\n"; testDFS(doc); testElement(doc); testElements(doc); testDescendents(doc); testElementDescendents(doc); std::string path = "../XmlElementParts/LectureNote.xml"; //Repository::title("Attempting to build document from fileSpec: " + path); std::cout << "Attempting to build document from fileSpec: " + path; try { XmlDocument doc2(path, XmlDocument::file); std::cout << doc2.toString(); } catch (std::exception& ex) { std::cout << "\n\n " << ex.what(); } std::cout << "\n\n"; } #endif
34936e57b9a3b43015d0efc717c672c76bf834ee
97f44a419e3d1c0d86efaf95210e3673154891a7
/lang/src/syntax_tree/program.cpp
012c62f8ed4ad436feb053db6b21fb41f0bf0427
[]
no_license
frenebo/parallel_lang
2da754bc618b43f8eeb09ac02bd12389cf7f3b88
0e722b85a4a9bc0dda796325a2cdd32d6b5aeae7
refs/heads/master
2020-05-05T05:41:28.992285
2019-04-25T18:57:05
2019-04-25T18:57:05
179,762,245
0
0
null
null
null
null
UTF-8
C++
false
false
315
cpp
#include "./program.hpp" namespace syntax_tree::program { ProgramTree::ProgramTree(statement_sequence::StatementSequence program_body) : _program_body(program_body) { } const statement_sequence::StatementSequence & ProgramTree::program_body() const { return _program_body; } }
9c89fab60e58bb4af8d130023688f01839f9122d
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14427/function14427_schedule_4/function14427_schedule_4_wrapper.cpp
e17a3702986282e6c26fa5a476e9a27ca8635b0e
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
934
cpp
#include "Halide.h" #include "function14427_schedule_4_wrapper.h" #include "tiramisu/utils.h" #include <cstdlib> #include <iostream> #include <time.h> #include <fstream> #include <chrono> #define MAX_RAND 200 int main(int, char **){ Halide::Buffer<int32_t> buf00(64, 128, 64, 64); Halide::Buffer<int32_t> buf0(64, 128, 64, 64); init_buffer(buf0, (int32_t)0); auto t1 = std::chrono::high_resolution_clock::now(); function14427_schedule_4(buf00.raw_buffer(), buf0.raw_buffer()); auto t2 = std::chrono::high_resolution_clock::now(); std::chrono::duration<double> diff = t2 - t1; std::ofstream exec_times_file; exec_times_file.open("../data/programs/function14427/function14427_schedule_4/exec_times.txt", std::ios_base::app); if (exec_times_file.is_open()){ exec_times_file << diff.count() * 1000000 << "us" <<std::endl; exec_times_file.close(); } return 0; }
78242a5f8994f6a836123d8c065118f04def8e7a
07ba7fde9da83edd3744557972b4b411af1b577d
/src/buzegui/FileBrowserList.h
59fdba3f81a21ce48700f29d79517ba170727e2b
[]
no_license
clvn/buze
d10edad5b319ca62c1401e710acedc22897b9027
4d7d406e87bda3b57b7631149fe63f9bd2ac3eec
refs/heads/master
2021-09-16T01:39:40.697834
2018-01-06T15:45:28
2018-01-06T15:45:28
115,177,320
8
1
null
null
null
null
UTF-8
C++
false
false
911
h
#pragma once class CFileBrowserList : public CWindowImpl<CFileBrowserList, CListViewCtrl> { public: DECLARE_WND_SUPERCLASS("FileBrowserList", CListViewCtrl::GetWndClassName()) BEGIN_MSG_MAP(CFileBrowserList) MESSAGE_HANDLER(WM_CREATE, OnCreate) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_KEYUP, OnKeyUp) MESSAGE_HANDLER(WM_CHAR, OnChar) MESSAGE_HANDLER(WM_KILLFOCUS, OnBlur); END_MSG_MAP() LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); LRESULT OnKeyDown(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& /*bHandled*/); LRESULT OnKeyUp(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& /*bHandled*/); LRESULT OnChar(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& /*bHandled*/); LRESULT OnBlur(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& /*bHandled*/); LRESULT OnDblClick(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled); };
990258707d747e7ddfd8251d50577a1d984c9101
1bfc3919d3ad25ce7075b00114bb461154815110
/src/primitives/transaction.h
21604a2f41529b673fea2630a321d443e57df0f8
[ "MIT" ]
permissive
billetcoin/blt
705ab2fd772449735a5feadf1da934227500f5cc
7dcd673ca4e836290a637ed2b86da9d821e33fdc
refs/heads/master
2023-03-22T21:12:11.626219
2021-03-19T16:00:05
2021-03-19T16:00:05
271,081,298
3
6
MIT
2020-08-15T21:19:43
2020-06-09T18:34:47
C++
UTF-8
C++
false
false
9,523
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2019 The Billetcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_PRIMITIVES_TRANSACTION_H #define BITCOIN_PRIMITIVES_TRANSACTION_H #include "amount.h" #include "libzerocoin/CoinSpend.h" #include "script/script.h" #include "serialize.h" #include "uint256.h" #include <list> class CTransaction; /** An outpoint - a combination of a transaction hash and an index n into its vout */ class COutPoint { public: uint256 hash; uint32_t n; COutPoint() { SetNull(); } COutPoint(uint256 hashIn, uint32_t nIn) { hash = hashIn; n = nIn; } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(FLATDATA(*this)); } void SetNull() { hash.SetNull(); n = (uint32_t) -1; } bool IsNull() const { return (hash.IsNull() && n == (uint32_t) -1); } bool IsMasternodeReward(const CTransaction* tx) const; friend bool operator<(const COutPoint& a, const COutPoint& b) { return (a.hash < b.hash || (a.hash == b.hash && a.n < b.n)); } friend bool operator==(const COutPoint& a, const COutPoint& b) { return (a.hash == b.hash && a.n == b.n); } friend bool operator!=(const COutPoint& a, const COutPoint& b) { return !(a == b); } std::string ToString() const; std::string ToStringShort() const; uint256 GetHash(); }; /** An input of a transaction. It contains the location of the previous * transaction's output that it claims and a signature that matches the * output's public key. */ class CTxIn { public: COutPoint prevout; CScript scriptSig; uint32_t nSequence; CScript prevPubKey; CTxIn() { nSequence = std::numeric_limits<unsigned int>::max(); } explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=std::numeric_limits<unsigned int>::max()); CTxIn(uint256 hashPrevTx, uint32_t nOut, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=std::numeric_limits<uint32_t>::max()); CTxIn(const libzerocoin::CoinSpend& spend, libzerocoin::CoinDenomination denom); ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(prevout); READWRITE(scriptSig); READWRITE(nSequence); } bool IsFinal() const { return (nSequence == std::numeric_limits<uint32_t>::max()); } bool IsZerocoinSpend() const; bool IsZerocoinPublicSpend() const; friend bool operator==(const CTxIn& a, const CTxIn& b) { return (a.prevout == b.prevout && a.scriptSig == b.scriptSig && a.nSequence == b.nSequence); } friend bool operator!=(const CTxIn& a, const CTxIn& b) { return !(a == b); } std::string ToString() const; }; /** An output of a transaction. It contains the public key that the next input * must be able to sign with to claim it. */ class CTxOut { public: CAmount nValue; CScript scriptPubKey; int nRounds; CTxOut() { SetNull(); } CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn); ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(nValue); READWRITE(scriptPubKey); } void SetNull() { nValue = -1; scriptPubKey.clear(); nRounds = -10; // an initial value, should be no way to get this by calculations } bool IsNull() const { return (nValue == -1); } void SetEmpty() { nValue = 0; scriptPubKey.clear(); } bool IsEmpty() const { return (nValue == 0 && scriptPubKey.empty()); } uint256 GetHash() const; bool IsDust(CFeeRate minRelayTxFee) const { // "Dust" is defined in terms of CTransaction::minRelayTxFee, which has units upiv-per-kilobyte. // If you'd pay more than 1/3 in fees to spend something, then we consider it dust. // A typical txout is 34 bytes big, and will need a CTxIn of at least 148 bytes to spend // i.e. total is 148 + 32 = 182 bytes. Default -minrelaytxfee is 10000 upiv per kB // and that means that fee per txout is 182 * 10000 / 1000 = 1820 upiv. // So dust is a txout less than 1820 *3 = 5460 upiv // with default -minrelaytxfee = minRelayTxFee = 10000 upiv per kB. size_t nSize = GetSerializeSize(SER_DISK,0)+148u; return (nValue < 3*minRelayTxFee.GetFee(nSize)); } bool IsZerocoinMint() const; CAmount GetZerocoinMinted() const; friend bool operator==(const CTxOut& a, const CTxOut& b) { return (a.nValue == b.nValue && a.scriptPubKey == b.scriptPubKey && a.nRounds == b.nRounds); } friend bool operator!=(const CTxOut& a, const CTxOut& b) { return !(a == b); } std::string ToString() const; }; struct CMutableTransaction; /** The basic transaction that is broadcasted on the network and contained in * blocks. A transaction can contain multiple inputs and outputs. */ class CTransaction { private: /** Memory only. */ const uint256 hash; void UpdateHash() const; public: static const int32_t CURRENT_VERSION=1; // The local variables are made const to prevent unintended modification // without updating the cached hash value. However, CTransaction is not // actually immutable; deserialization and assignment are implemented, // and bypass the constness. This is safe, as they update the entire // structure, including the hash. const int32_t nVersion; std::vector<CTxIn> vin; std::vector<CTxOut> vout; const uint32_t nLockTime; //const unsigned int nTime; /** Construct a CTransaction that qualifies as IsNull() */ CTransaction(); /** Convert a CMutableTransaction into a CTransaction. */ CTransaction(const CMutableTransaction &tx); CTransaction& operator=(const CTransaction& tx); ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(*const_cast<int32_t*>(&this->nVersion)); nVersion = this->nVersion; READWRITE(*const_cast<std::vector<CTxIn>*>(&vin)); READWRITE(*const_cast<std::vector<CTxOut>*>(&vout)); READWRITE(*const_cast<uint32_t*>(&nLockTime)); if (ser_action.ForRead()) UpdateHash(); } bool IsNull() const { return vin.empty() && vout.empty(); } const uint256& GetHash() const { return hash; } // Return sum of txouts. CAmount GetValueOut() const; // GetValueIn() is a method on CCoinsViewCache, because // inputs must be known to compute value in. // Compute priority, given priority of inputs and (optionally) tx size double ComputePriority(double dPriorityInputs, unsigned int nTxSize=0) const; // Compute modified tx size for priority calculation (optionally given tx size) unsigned int CalculateModifiedSize(unsigned int nTxSize=0) const; bool HasZerocoinSpendInputs() const; bool HasZerocoinPublicSpendInputs() const; bool HasZerocoinMintOutputs() const; bool ContainsZerocoins() const { return HasZerocoinSpendInputs() || HasZerocoinPublicSpendInputs() || HasZerocoinMintOutputs(); } CAmount GetZerocoinMinted() const; CAmount GetZerocoinSpent() const; int GetZerocoinMintCount() const; bool UsesUTXO(const COutPoint out); std::list<COutPoint> GetOutPoints() const; bool IsCoinBase() const { return (vin.size() == 1 && vin[0].prevout.IsNull() && !ContainsZerocoins()); } bool IsCoinStake() const; bool CheckColdStake(const CScript& script) const; bool HasP2CSOutputs() const; friend bool operator==(const CTransaction& a, const CTransaction& b) { return a.hash == b.hash; } friend bool operator!=(const CTransaction& a, const CTransaction& b) { return a.hash != b.hash; } unsigned int GetTotalSize() const; std::string ToString() const; }; /** A mutable version of CTransaction. */ struct CMutableTransaction { int32_t nVersion; std::vector<CTxIn> vin; std::vector<CTxOut> vout; uint32_t nLockTime; CMutableTransaction(); CMutableTransaction(const CTransaction& tx); ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(this->nVersion); nVersion = this->nVersion; READWRITE(vin); READWRITE(vout); READWRITE(nLockTime); } /** Compute the hash of this CMutableTransaction. This is computed on the * fly, as opposed to GetHash() in CTransaction, which uses a cached result. */ uint256 GetHash() const; std::string ToString() const; }; #endif // BITCOIN_PRIMITIVES_TRANSACTION_H
d556e90943c0a9f1888c3f5131bad583cbe9ebf7
a7dc9df7ecc9438c96b7a33038a3c70f0ff5bc86
/soa/service/rest_proxy.cc
b60c1703363d1bc38eb9fb66f7ed0c0fa1c8b851
[ "Apache-2.0" ]
permissive
duyet/BGateRTB
ca19a2f23fad6a5063ec4463a3049984ed09ec67
ea1782f7cd89a15e64cd87a175816ee68aee8934
refs/heads/master
2022-07-24T03:45:05.099793
2022-07-17T11:20:43
2022-07-17T11:20:43
37,047,062
0
0
Apache-2.0
2022-07-17T11:21:09
2015-06-08T05:10:18
C++
UTF-8
C++
false
false
10,256
cc
/* rest_proxy.cc Jeremy Barnes, 14 November 2012 Copyright (c) 2012 Datacratic Inc. All rights reserved. */ #include "rest_proxy.h" #include "jml/arch/exception_handler.h" using namespace std; using namespace ML; namespace Datacratic { /*****************************************************************************/ /* REST PROXY */ /*****************************************************************************/ RestProxy:: RestProxy() : operationQueue(1024), numMessagesOutstanding_(0), currentOpId(1) { // What to do when we get a new entry in the queue? operationQueue.onEvent = std::bind(&RestProxy::handleOperation, this, std::placeholders::_1); } RestProxy:: RestProxy(const std::shared_ptr<zmq::context_t> & context) : operationQueue(1024), connection(context), numMessagesOutstanding_(0), currentOpId(1) { // What to do when we get a new entry in the queue? operationQueue.onEvent = std::bind(&RestProxy::handleOperation, this, std::placeholders::_1); } RestProxy:: ~RestProxy() { shutdown(); } void RestProxy:: sleepUntilIdle() { for (;;) { int o = numMessagesOutstanding_; //cerr << "numMessagesOustanding = " << o << endl; if (!o) return; ML::futex_wait(numMessagesOutstanding_, o, 0.01); } } void RestProxy:: shutdown() { // Stop processing messages MessageLoop::shutdown(); connection.shutdown(); } void RestProxy:: init(std::shared_ptr<ConfigurationService> config, const std::string & serviceName, const std::string & endpointName) { serviceName_ = serviceName; connection.init(config, ZMQ_XREQ); connection.connect(serviceName + "/" + endpointName); addSource("RestProxy::operationQueue", operationQueue); // What to do when we get something back from zeromq? addSource("RestProxy::handleZmqResponse", std::make_shared<ZmqEventSource> (connection.socket(), std::bind(&RestProxy::handleZmqResponse, this, std::placeholders::_1))); } void RestProxy:: initServiceClass(std::shared_ptr<ConfigurationService> config, const std::string & serviceClass, const std::string & serviceEndpoint, bool local) { connection.init(config, ZMQ_XREQ); connection.connectToServiceClass(serviceClass, serviceEndpoint, local); addSource("RestProxy::operationQueue", operationQueue); // What to do when we get something back from zeromq? addSource("RestProxy::handleZmqResponse", std::make_shared<ZmqEventSource> (connection.socket(), std::bind(&RestProxy::handleZmqResponse, this, std::placeholders::_1))); } void RestProxy:: push(const RestRequest & request, const OnDone & onDone) { Operation op; op.request = request; op.onDone = onDone; if (operationQueue.tryPush(std::move(op))) ML::atomic_inc(numMessagesOutstanding_); else throw ML::Exception("queue is full"); } void RestProxy:: push(const OnDone & onDone, const std::string & method, const std::string & resource, const RestParams & params, const std::string & payload) { RestRequest request(method, resource, params, payload); push(request, onDone); } void RestProxy:: handleOperation(const Operation & op) { // Gets called when someone calls our API to make something happen; // this is run by the main worker thread to actually do the work. // It forwards the request off to the master banker. uint64_t opId = 0; if (op.onDone) opId = currentOpId++; //cerr << "sending with payload " << op.request.payload // << " and response id " << opId << endl; if (trySendMessage(connection.socket(), std::to_string(opId), op.request.verb, op.request.resource, op.request.params.toBinary(), op.request.payload)) { if (opId) outstanding[opId] = op.onDone; else { int no = __sync_add_and_fetch(&numMessagesOutstanding_, -1); if (no == 0) futex_wake(numMessagesOutstanding_); } } else { if (op.onDone) { ML::Set_Trace_Exceptions notrace(false); string exc_msg = ("connection to '" + serviceName_ + "' is unavailable"); op.onDone(make_exception_ptr<ML::Exception>(exc_msg), 0, ""); } int no = __sync_add_and_fetch(&numMessagesOutstanding_, -1); if (no == 0) futex_wake(numMessagesOutstanding_); } } void RestProxy:: handleZmqResponse(const std::vector<std::string> & message) { // Gets called when we get a response back from the master banker in // response to one of our calls. // We call the callback associated with this code. //cerr << "response is " << message << endl; uint64_t opId = boost::lexical_cast<uint64_t>(message.at(0)); int responseCode = boost::lexical_cast<int>(message.at(1)); std::string body = message.at(2); ExcAssert(opId); auto it = outstanding.find(opId); if (it == outstanding.end()) { cerr << "unknown op ID " << endl; return; } try { if (responseCode >= 200 && responseCode < 300) it->second(nullptr, responseCode, body); else it->second(std::make_exception_ptr(ML::Exception(body)), responseCode, ""); } catch (const std::exception & exc) { cerr << "warning: exception handling banker result: " << exc.what() << endl; } catch (...) { cerr << "warning: unknown exception handling banker result" << endl; } outstanding.erase(it); ML::atomic_dec(numMessagesOutstanding_); } /******************************************************************************/ /* MULTI REST PROXY */ /******************************************************************************/ void MultiRestProxy:: shutdown() { if (!connected) return; MessageLoop::shutdown(); lock_guard<ML::Spinlock> guard(connectionsLock); for (auto& conn: connections) { if (!conn.second) continue; conn.second->shutdown(); } connections.clear(); connected = false; } namespace { RestProxy::OnDone makeResponseFn( const std::string& serviceName, const MultiRestProxy::OnResponse& fn) { return [=] (std::exception_ptr ex, int code, const std::string& msg) { if (fn) fn(serviceName, ex, code, msg); }; } } // namespace anonymous void MultiRestProxy:: push(const RestRequest & request, const OnResponse & onResponse) { lock_guard<ML::Spinlock> guard(connectionsLock); for (const auto& conn : connections) { if (!conn.second) continue; auto onDone = makeResponseFn(conn.first, onResponse); conn.second->push(request, onDone); } } void MultiRestProxy:: push( const OnResponse & onResponse, const string & method, const string & resource, const RestParams & params, const string & payload) { lock_guard<ML::Spinlock> guard(connectionsLock); for (const auto& conn : connections) { if (!conn.second) continue; auto onDone = makeResponseFn(conn.first, onResponse); conn.second->push(onDone , method, resource, params, payload); } } void MultiRestProxy:: connectAllServiceProviders( const string& serviceClass, const string& endpointName, bool local) { ExcCheck(!connected, "Already connectoed to a service provider"); this->serviceClass = serviceClass; this->endpointName = endpointName; this->localized = local; serviceProvidersWatch.init( [=] (const string&, ConfigurationService::ChangeType) { onServiceProvidersChanged("serviceClass/" + serviceClass, local); }); onServiceProvidersChanged("serviceClass/" + serviceClass, local); connected = true; } void MultiRestProxy:: connectServiceProvider(const string& serviceName) { { lock_guard<ML::Spinlock> guard(connectionsLock); auto& conn = connections[serviceName]; if (conn) return; shared_ptr<RestProxy> newConn(new RestProxy(context)); newConn->init(config, serviceName, endpointName); conn = std::move(newConn); addSource("MultiRestProxy::" + serviceName, conn); } onConnect(serviceName); } void MultiRestProxy:: onServiceProvidersChanged(const string& path, bool local) { vector<string> children = config->getChildren(path, serviceProvidersWatch); for (const auto& child : children) { Json::Value value = config->getJson(path + "/" + child); string location = value["serviceLocation"].asString(); if (local && location != config->currentLocation) { cerr << "dropping " << location << " != " << config->currentLocation << endl; continue; } connectServiceProvider(value["serviceName"].asString()); } vector<string> disconnected; { lock_guard<ML::Spinlock> guard(connectionsLock); for (const auto& conn : connections) { if (!conn.second) continue; auto it = find(children.begin(), children.end(), conn.first); if (it != children.end()) continue; removeSource(conn.second.get()); disconnected.push_back(conn.first); } // We don't have to worry about invalidating iterators anymore. for (const auto& conn : disconnected) connections.erase(conn); } // Lock has been released and it's now safe to trigger the callbacks. for (const auto& conn : disconnected) onDisconnect(conn); } } // namespace Datacratic
[ "root@ubuntu-virtual-machine.(none)" ]
root@ubuntu-virtual-machine.(none)
919a4f28a0c28861c04371e1775b24249bc1a376
792a52844d2e53fdbd3582d9edb95eedec651a74
/Source/BlenderModel.cpp
db0400d18ac2146004f0e1637ee542691682b643
[]
no_license
alanly/comp371
42ade8a6bf4bbd5031fa7e552af0e6e7f3246c1d
dd0e4f3c3b9e8e4a67b048e5c354a1ded0578a0d
refs/heads/master
2021-01-18T23:20:34.469596
2014-08-19T17:01:13
2014-08-19T17:01:13
22,010,621
1
0
null
null
null
null
UTF-8
C++
false
false
3,996
cpp
//Written by Thomas Rahn #include "BlenderModel.h" #include "Renderer.h" #include "Texture.h" // Include GLEW - OpenGL Extension Wrangler #define GLEW_STATIC #include <GL/glew.h> using namespace glm; // Material Coefficients static const float ka = 0.1f; static const float kd = 0.05f; static const float ks = 0.0f; static const float n = 400.0f; static const float tr = 1.0f; static const float noShading = 0.0f; BlenderModel::BlenderModel( const char * path, const char * texturePath) { if(texturePath != ""){ texture = Texture::loadDDS(texturePath); // Get a handle for our texture uniform textureID = glGetUniformLocation(Renderer::GetShaderProgramID(), "mTexture"); } // Read our .obj file std::vector<glm::vec3> vertices; std::vector<glm::vec2> uvs; std::vector<glm::vec3> normals; bool res = Renderer::LoadOBJ(path, vertices, uvs, normals); numVertices = vertices.size(); // Create a vertex array glGenVertexArrays(1, &mVertexArrayID); glBindVertexArray(mVertexArrayID); // Load it into a VBO glGenBuffers(1, &mVertexBufferID); glBindBuffer(GL_ARRAY_BUFFER, mVertexBufferID); glBufferData(GL_ARRAY_BUFFER, vertices.size() * sizeof(glm::vec3), &vertices[0], GL_STATIC_DRAW); glGenBuffers(1, &mNormalBufferID); glBindBuffer(GL_ARRAY_BUFFER, mNormalBufferID); glBufferData(GL_ARRAY_BUFFER, normals.size() * sizeof(glm::vec3), &normals[0], GL_STATIC_DRAW); glGenBuffers(1, &mUVBufferID); glBindBuffer(GL_ARRAY_BUFFER, mUVBufferID); glBufferData(GL_ARRAY_BUFFER, uvs.size() * sizeof(glm::vec2), &uvs[0], GL_STATIC_DRAW); } BlenderModel::~BlenderModel() { glDeleteBuffers(1, &mVertexBufferID); glDeleteBuffers(1, &mNormalBufferID); glDeleteBuffers(1, &mUVBufferID); glDeleteVertexArrays(1, &mVertexArrayID); } void BlenderModel::Update(float dt) { } void BlenderModel::Draw() { glBindVertexArray(mVertexArrayID); GLuint WorldMatrixID = glGetUniformLocation(Renderer::GetShaderProgramID(), "WorldTransform"); glUniformMatrix4fv(WorldMatrixID, 1, GL_FALSE, &GetWorldMatrix()[0][0]); GLuint MaterialID = glGetUniformLocation(Renderer::GetShaderProgramID(), "materialCoefficients"); glUniform4f(MaterialID, ka, kd, ks, n); GLuint ModelTransparencyID = glGetUniformLocation(Renderer::GetShaderProgramID(), "modelTransparency"); glUniform1f(ModelTransparencyID, tr); GLuint NoShadingID = glGetUniformLocation(Renderer::GetShaderProgramID(), "noShading"); glUniform1f(NoShadingID, noShading); // Bind our texture in Texture Unit 0 glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, texture); glUniform1i(textureID, 0); // 1rst attribute buffer : vertices glEnableVertexAttribArray(0); glBindBuffer(GL_ARRAY_BUFFER, mVertexBufferID); glVertexAttribPointer( 0, // attribute. No particular reason for 0, but must match the layout in the shader. 3, // size GL_FLOAT, // type GL_FALSE, // normalized? 0, // stride (void*)0 // array buffer offset ); // 2nd attribute buffer : vertex normal glEnableVertexAttribArray(1); glBindBuffer(GL_ARRAY_BUFFER, mNormalBufferID); glVertexAttribPointer( 1, 3, GL_FLOAT, GL_FALSE, 0, (void*)0 // Normal is Offseted by vec3 (see class Vertex) ); // 2nd attribute buffer : UVs glEnableVertexAttribArray(1); glBindBuffer(GL_ARRAY_BUFFER, mUVBufferID); glVertexAttribPointer( 2, // attribute. No particular reason for 1, but must match the layout in the shader. 2, // size : U+V => 2 GL_FLOAT, // type GL_FALSE, // normalized? 0, // stride (void*)0 // array buffer offset ); // Draw the triangle ! glDrawArrays(GL_TRIANGLES, 0, numVertices); // 3 indices starting at 0 -> 1 triangle glDisableVertexAttribArray(2); glDisableVertexAttribArray(1); glDisableVertexAttribArray(0); }
6c37a8dd61925ef81f759e9d395959650a7a5cd1
851acd2c0f3cb1f5ecf73347b482183b2a832705
/beryl_source/src/masternode.cpp
0ab45c3ac04c4c9f41b3a8be7e2eda7da0340aea
[ "MIT" ]
permissive
beryl-coin/BRL
ef082b224fd9612f0d1a39712fdc125da2a2542b
da51be29db95a97719408a3d8b32c2a1beb95605
refs/heads/master
2020-09-18T19:06:11.101912
2019-11-26T10:53:25
2019-11-26T10:53:25
220,607,994
0
0
null
null
null
null
UTF-8
C++
false
false
39,924
cpp
// Copyright (c) 2014-2017 The Dash Core developers // Copyright (c) 2019 The Beryl Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "activemasternode.h" #include "base58.h" #include "clientversion.h" #include "init.h" #include "netbase.h" #include "masternode.h" #include "masternode-payments.h" #include "masternode-sync.h" #include "masternodeman.h" #include "messagesigner.h" #include "script/standard.h" #include "util.h" #ifdef ENABLE_WALLET #include "wallet/wallet.h" #endif // ENABLE_WALLET #include <boost/lexical_cast.hpp> CMasternode::CMasternode() : masternode_info_t{ MASTERNODE_ENABLED, PROTOCOL_VERSION, GetAdjustedTime()}, fAllowMixingTx(true) {} CMasternode::CMasternode(CService addr, COutPoint outpoint, CPubKey pubKeyCollateralAddress, CPubKey pubKeyMasternode, int nProtocolVersionIn) : masternode_info_t{ MASTERNODE_ENABLED, nProtocolVersionIn, GetAdjustedTime(), outpoint, addr, pubKeyCollateralAddress, pubKeyMasternode}, fAllowMixingTx(true) {} CMasternode::CMasternode(const CMasternode& other) : masternode_info_t{other}, lastPing(other.lastPing), vchSig(other.vchSig), nCollateralMinConfBlockHash(other.nCollateralMinConfBlockHash), nBlockLastPaid(other.nBlockLastPaid), nPoSeBanScore(other.nPoSeBanScore), nPoSeBanHeight(other.nPoSeBanHeight), fAllowMixingTx(other.fAllowMixingTx), fUnitTest(other.fUnitTest) {} CMasternode::CMasternode(const CMasternodeBroadcast& mnb) : masternode_info_t{ mnb.nActiveState, mnb.nProtocolVersion, mnb.sigTime, mnb.outpoint, mnb.addr, mnb.pubKeyCollateralAddress, mnb.pubKeyMasternode}, lastPing(mnb.lastPing), vchSig(mnb.vchSig), fAllowMixingTx(true) {} // // When a new masternode broadcast is sent, update our information // bool CMasternode::UpdateFromNewBroadcast(CMasternodeBroadcast& mnb, CConnman& connman) { if(mnb.sigTime <= sigTime && !mnb.fRecovery) return false; pubKeyMasternode = mnb.pubKeyMasternode; sigTime = mnb.sigTime; vchSig = mnb.vchSig; nProtocolVersion = mnb.nProtocolVersion; addr = mnb.addr; nPoSeBanScore = 0; nPoSeBanHeight = 0; nTimeLastChecked = 0; int nDos = 0; if(!mnb.lastPing || (mnb.lastPing && mnb.lastPing.CheckAndUpdate(this, true, nDos, connman))) { lastPing = mnb.lastPing; mnodeman.mapSeenMasternodePing.insert(std::make_pair(lastPing.GetHash(), lastPing)); } // if it matches our Masternode privkey... if(fMasternodeMode && pubKeyMasternode == activeMasternode.pubKeyMasternode) { nPoSeBanScore = -MASTERNODE_POSE_BAN_MAX_SCORE; if(nProtocolVersion == PROTOCOL_VERSION) { // ... and PROTOCOL_VERSION, then we've been remotely activated ... activeMasternode.ManageState(connman); } else { // ... otherwise we need to reactivate our node, do not add it to the list and do not relay // but also do not ban the node we get this message from LogPrintf("CMasternode::UpdateFromNewBroadcast -- wrong PROTOCOL_VERSION, re-activate your MN: message nProtocolVersion=%d PROTOCOL_VERSION=%d\n", nProtocolVersion, PROTOCOL_VERSION); return false; } } return true; } // // Deterministically calculate a given "score" for a Masternode depending on how close it's hash is to // the proof of work for that block. The further away they are the better, the furthest will win the election // and get paid this block // arith_uint256 CMasternode::CalculateScore(const uint256& blockHash) const { // Deterministically calculate a "score" for a Masternode based on any given (block)hash CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); ss << outpoint << nCollateralMinConfBlockHash << blockHash; return UintToArith256(ss.GetHash()); } CMasternode::CollateralStatus CMasternode::CheckCollateral(const COutPoint& outpoint, const CPubKey& pubkey) { int nHeight; return CheckCollateral(outpoint, pubkey, nHeight); } CMasternode::CollateralStatus CMasternode::CheckCollateral(const COutPoint& outpoint, const CPubKey& pubkey, int& nHeightRet) { AssertLockHeld(cs_main); Coin coin; if(!GetUTXOCoin(outpoint, coin)) { return COLLATERAL_UTXO_NOT_FOUND; } if(coin.out.nValue != 1000 * COIN) { return COLLATERAL_INVALID_AMOUNT; } if(pubkey == CPubKey() || coin.out.scriptPubKey != GetScriptForDestination(pubkey.GetID())) { return COLLATERAL_INVALID_PUBKEY; } nHeightRet = coin.nHeight; return COLLATERAL_OK; } void CMasternode::Check(bool fForce) { AssertLockHeld(cs_main); LOCK(cs); if(ShutdownRequested()) return; if(!fForce && (GetTime() - nTimeLastChecked < MASTERNODE_CHECK_SECONDS)) return; nTimeLastChecked = GetTime(); LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state\n", outpoint.ToStringShort(), GetStateString()); //once spent, stop doing the checks if(IsOutpointSpent()) return; int nHeight = 0; if(!fUnitTest) { Coin coin; if(!GetUTXOCoin(outpoint, coin)) { nActiveState = MASTERNODE_OUTPOINT_SPENT; LogPrint("masternode", "CMasternode::Check -- Failed to find Masternode UTXO, masternode=%s\n", outpoint.ToStringShort()); return; } nHeight = chainActive.Height(); } if(IsPoSeBanned()) { if(nHeight < nPoSeBanHeight) return; // too early? // Otherwise give it a chance to proceed further to do all the usual checks and to change its state. // Masternode still will be on the edge and can be banned back easily if it keeps ignoring mnverify // or connect attempts. Will require few mnverify messages to strengthen its position in mn list. LogPrintf("CMasternode::Check -- Masternode %s is unbanned and back in list now\n", outpoint.ToStringShort()); DecreasePoSeBanScore(); } else if(nPoSeBanScore >= MASTERNODE_POSE_BAN_MAX_SCORE) { nActiveState = MASTERNODE_POSE_BAN; // ban for the whole payment cycle nPoSeBanHeight = nHeight + mnodeman.size(); LogPrintf("CMasternode::Check -- Masternode %s is banned till block %d now\n", outpoint.ToStringShort(), nPoSeBanHeight); return; } int nActiveStatePrev = nActiveState; bool fOurMasternode = fMasternodeMode && activeMasternode.pubKeyMasternode == pubKeyMasternode; // masternode doesn't meet payment protocol requirements ... bool fRequireUpdate = nProtocolVersion < mnpayments.GetMinMasternodePaymentsProto() || // or it's our own node and we just updated it to the new protocol but we are still waiting for activation ... (fOurMasternode && nProtocolVersion < PROTOCOL_VERSION); if(fRequireUpdate) { nActiveState = MASTERNODE_UPDATE_REQUIRED; if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } // keep old masternodes on start, give them a chance to receive updates... bool fWaitForPing = !masternodeSync.IsMasternodeListSynced() && !IsPingedWithin(MASTERNODE_MIN_MNP_SECONDS); if(fWaitForPing && !fOurMasternode) { // ...but if it was already expired before the initial check - return right away if(IsExpired() || IsSentinelPingExpired() || IsNewStartRequired()) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state, waiting for ping\n", outpoint.ToStringShort(), GetStateString()); return; } } // don't expire if we are still in "waiting for ping" mode unless it's our own masternode if(!fWaitForPing || fOurMasternode) { if(!IsPingedWithin(MASTERNODE_NEW_START_REQUIRED_SECONDS)) { nActiveState = MASTERNODE_NEW_START_REQUIRED; if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } if(!IsPingedWithin(MASTERNODE_EXPIRATION_SECONDS)) { nActiveState = MASTERNODE_EXPIRED; if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } // part 1: expire based on beryld ping bool fSentinelPingActive = masternodeSync.IsSynced() && mnodeman.IsSentinelPingActive(); bool fSentinelPingExpired = fSentinelPingActive && !IsPingedWithin(MASTERNODE_SENTINEL_PING_MAX_SECONDS); LogPrint("masternode", "CMasternode::Check -- outpoint=%s, GetAdjustedTime()=%d, fSentinelPingExpired=%d\n", outpoint.ToStringShort(), GetAdjustedTime(), fSentinelPingExpired); if(fSentinelPingExpired) { nActiveState = MASTERNODE_SENTINEL_PING_EXPIRED; if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } } // We require MNs to be in PRE_ENABLED until they either start to expire or receive a ping and go into ENABLED state // Works on mainnet/testnet only and not the case on regtest/devnet. if (Params().NetworkIDString() != CBaseChainParams::REGTEST && Params().NetworkIDString() != CBaseChainParams::DEVNET) { if (lastPing.sigTime - sigTime < MASTERNODE_MIN_MNP_SECONDS) { nActiveState = MASTERNODE_PRE_ENABLED; if (nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } } if(!fWaitForPing || fOurMasternode) { // part 2: expire based on sentinel info bool fSentinelPingActive = masternodeSync.IsSynced() && mnodeman.IsSentinelPingActive(); bool fSentinelPingExpired = fSentinelPingActive && !lastPing.fSentinelIsCurrent; LogPrint("masternode", "CMasternode::Check -- outpoint=%s, GetAdjustedTime()=%d, fSentinelPingExpired=%d\n", outpoint.ToStringShort(), GetAdjustedTime(), fSentinelPingExpired); if(fSentinelPingExpired) { nActiveState = MASTERNODE_SENTINEL_PING_EXPIRED; if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } return; } } nActiveState = MASTERNODE_ENABLED; // OK if(nActiveStatePrev != nActiveState) { LogPrint("masternode", "CMasternode::Check -- Masternode %s is in %s state now\n", outpoint.ToStringShort(), GetStateString()); } } bool CMasternode::IsValidNetAddr() { return IsValidNetAddr(addr); } bool CMasternode::IsValidNetAddr(CService addrIn) { // TODO: regtest is fine with any addresses for now, // should probably be a bit smarter if one day we start to implement tests for this return Params().NetworkIDString() == CBaseChainParams::REGTEST || (addrIn.IsIPv4() && IsReachable(addrIn) && addrIn.IsRoutable()); } masternode_info_t CMasternode::GetInfo() const { masternode_info_t info{*this}; info.nTimeLastPing = lastPing.sigTime; info.fInfoValid = true; return info; } std::string CMasternode::StateToString(int nStateIn) { switch(nStateIn) { case MASTERNODE_PRE_ENABLED: return "PRE_ENABLED"; case MASTERNODE_ENABLED: return "ENABLED"; case MASTERNODE_EXPIRED: return "EXPIRED"; case MASTERNODE_OUTPOINT_SPENT: return "OUTPOINT_SPENT"; case MASTERNODE_UPDATE_REQUIRED: return "UPDATE_REQUIRED"; case MASTERNODE_SENTINEL_PING_EXPIRED: return "SENTINEL_PING_EXPIRED"; case MASTERNODE_NEW_START_REQUIRED: return "NEW_START_REQUIRED"; case MASTERNODE_POSE_BAN: return "POSE_BAN"; default: return "UNKNOWN"; } } std::string CMasternode::GetStateString() const { return StateToString(nActiveState); } std::string CMasternode::GetStatus() const { // TODO: return smth a bit more human readable here return GetStateString(); } void CMasternode::UpdateLastPaid(const CBlockIndex *pindex, int nMaxBlocksToScanBack) { if(!pindex) return; const CBlockIndex *BlockReading = pindex; CScript mnpayee = GetScriptForDestination(pubKeyCollateralAddress.GetID()); // LogPrint("mnpayments", "CMasternode::UpdateLastPaidBlock -- searching for block with payment to %s\n", outpoint.ToStringShort()); LOCK(cs_mapMasternodeBlocks); for (int i = 0; BlockReading && BlockReading->nHeight > nBlockLastPaid && i < nMaxBlocksToScanBack; i++) { if(mnpayments.mapMasternodeBlocks.count(BlockReading->nHeight) && mnpayments.mapMasternodeBlocks[BlockReading->nHeight].HasPayeeWithVotes(mnpayee, 2)) { CBlock block; if(!ReadBlockFromDisk(block, BlockReading, Params().GetConsensus())) continue; // shouldn't really happen CAmount nMasternodePayment = GetMasternodePayment(BlockReading->nHeight, block.vtx[0]->GetValueOut()); for (const auto& txout : block.vtx[0]->vout) if(mnpayee == txout.scriptPubKey && nMasternodePayment == txout.nValue) { nBlockLastPaid = BlockReading->nHeight; nTimeLastPaid = BlockReading->nTime; LogPrint("mnpayments", "CMasternode::UpdateLastPaidBlock -- searching for block with payment to %s -- found new %d\n", outpoint.ToStringShort(), nBlockLastPaid); return; } } if (BlockReading->pprev == NULL) { assert(BlockReading); break; } BlockReading = BlockReading->pprev; } // Last payment for this masternode wasn't found in latest mnpayments blocks // or it was found in mnpayments blocks but wasn't found in the blockchain. // LogPrint("mnpayments", "CMasternode::UpdateLastPaidBlock -- searching for block with payment to %s -- keeping old %d\n", outpoint.ToStringShort(), nBlockLastPaid); } #ifdef ENABLE_WALLET bool CMasternodeBroadcast::Create(const std::string& strService, const std::string& strKeyMasternode, const std::string& strTxHash, const std::string& strOutputIndex, std::string& strErrorRet, CMasternodeBroadcast &mnbRet, bool fOffline) { COutPoint outpoint; CPubKey pubKeyCollateralAddressNew; CKey keyCollateralAddressNew; CPubKey pubKeyMasternodeNew; CKey keyMasternodeNew; auto Log = [&strErrorRet](std::string sErr)->bool { strErrorRet = sErr; LogPrintf("CMasternodeBroadcast::Create -- %s\n", strErrorRet); return false; }; // Wait for sync to finish because mnb simply won't be relayed otherwise if (!fOffline && !masternodeSync.IsSynced()) return Log("Sync in progress. Must wait until sync is complete to start Masternode"); if (!CMessageSigner::GetKeysFromSecret(strKeyMasternode, keyMasternodeNew, pubKeyMasternodeNew)) return Log(strprintf("Invalid masternode key %s", strKeyMasternode)); if (!pwalletMain->GetMasternodeOutpointAndKeys(outpoint, pubKeyCollateralAddressNew, keyCollateralAddressNew, strTxHash, strOutputIndex)) return Log(strprintf("Could not allocate outpoint %s:%s for masternode %s", strTxHash, strOutputIndex, strService)); CService service; if (!Lookup(strService.c_str(), service, 0, false)) return Log(strprintf("Invalid address %s for masternode.", strService)); int mainnetDefaultPort = Params(CBaseChainParams::MAIN).GetDefaultPort(); if (Params().NetworkIDString() == CBaseChainParams::MAIN) { if (service.GetPort() != mainnetDefaultPort) return Log(strprintf("Invalid port %u for masternode %s, only %d is supported on mainnet.", service.GetPort(), strService, mainnetDefaultPort)); } else if (service.GetPort() == mainnetDefaultPort) return Log(strprintf("Invalid port %u for masternode %s, %d is the only supported on mainnet.", service.GetPort(), strService, mainnetDefaultPort)); return Create(outpoint, service, keyCollateralAddressNew, pubKeyCollateralAddressNew, keyMasternodeNew, pubKeyMasternodeNew, strErrorRet, mnbRet); } bool CMasternodeBroadcast::Create(const COutPoint& outpoint, const CService& service, const CKey& keyCollateralAddressNew, const CPubKey& pubKeyCollateralAddressNew, const CKey& keyMasternodeNew, const CPubKey& pubKeyMasternodeNew, std::string &strErrorRet, CMasternodeBroadcast &mnbRet) { // wait for reindex and/or import to finish if (fImporting || fReindex) return false; LogPrint("masternode", "CMasternodeBroadcast::Create -- pubKeyCollateralAddressNew = %s, pubKeyMasternodeNew.GetID() = %s\n", CBitcoinAddress(pubKeyCollateralAddressNew.GetID()).ToString(), pubKeyMasternodeNew.GetID().ToString()); auto Log = [&strErrorRet,&mnbRet](std::string sErr)->bool { strErrorRet = sErr; LogPrintf("CMasternodeBroadcast::Create -- %s\n", strErrorRet); mnbRet = CMasternodeBroadcast(); return false; }; CMasternodePing mnp(outpoint); if (!mnp.Sign(keyMasternodeNew, pubKeyMasternodeNew)) return Log(strprintf("Failed to sign ping, masternode=%s", outpoint.ToStringShort())); mnbRet = CMasternodeBroadcast(service, outpoint, pubKeyCollateralAddressNew, pubKeyMasternodeNew, PROTOCOL_VERSION); if (!mnbRet.IsValidNetAddr()) return Log(strprintf("Invalid IP address, masternode=%s", outpoint.ToStringShort())); mnbRet.lastPing = mnp; if (!mnbRet.Sign(keyCollateralAddressNew)) return Log(strprintf("Failed to sign broadcast, masternode=%s", outpoint.ToStringShort())); return true; } #endif // ENABLE_WALLET bool CMasternodeBroadcast::SimpleCheck(int& nDos) { nDos = 0; AssertLockHeld(cs_main); // make sure addr is valid if(!IsValidNetAddr()) { LogPrintf("CMasternodeBroadcast::SimpleCheck -- Invalid addr, rejected: masternode=%s addr=%s\n", outpoint.ToStringShort(), addr.ToString()); return false; } // make sure signature isn't in the future (past is OK) if (sigTime > GetAdjustedTime() + 60 * 60) { LogPrintf("CMasternodeBroadcast::SimpleCheck -- Signature rejected, too far into the future: masternode=%s\n", outpoint.ToStringShort()); nDos = 1; return false; } // empty ping or incorrect sigTime/unknown blockhash if(!lastPing || !lastPing.SimpleCheck(nDos)) { // one of us is probably forked or smth, just mark it as expired and check the rest of the rules nActiveState = MASTERNODE_EXPIRED; } if(nProtocolVersion < mnpayments.GetMinMasternodePaymentsProto()) { LogPrintf("CMasternodeBroadcast::SimpleCheck -- outdated Masternode: masternode=%s nProtocolVersion=%d\n", outpoint.ToStringShort(), nProtocolVersion); nActiveState = MASTERNODE_UPDATE_REQUIRED; } CScript pubkeyScript; pubkeyScript = GetScriptForDestination(pubKeyCollateralAddress.GetID()); if(pubkeyScript.size() != 25) { LogPrintf("CMasternodeBroadcast::SimpleCheck -- pubKeyCollateralAddress has the wrong size\n"); nDos = 100; return false; } CScript pubkeyScript2; pubkeyScript2 = GetScriptForDestination(pubKeyMasternode.GetID()); if(pubkeyScript2.size() != 25) { LogPrintf("CMasternodeBroadcast::SimpleCheck -- pubKeyMasternode has the wrong size\n"); nDos = 100; return false; } int mainnetDefaultPort = Params(CBaseChainParams::MAIN).GetDefaultPort(); if(Params().NetworkIDString() == CBaseChainParams::MAIN) { if(addr.GetPort() != mainnetDefaultPort) return false; } else if(addr.GetPort() == mainnetDefaultPort) return false; return true; } bool CMasternodeBroadcast::Update(CMasternode* pmn, int& nDos, CConnman& connman) { nDos = 0; AssertLockHeld(cs_main); if(pmn->sigTime == sigTime && !fRecovery) { // mapSeenMasternodeBroadcast in CMasternodeMan::CheckMnbAndUpdateMasternodeList should filter legit duplicates // but this still can happen if we just started, which is ok, just do nothing here. return false; } // this broadcast is older than the one that we already have - it's bad and should never happen // unless someone is doing something fishy if(pmn->sigTime > sigTime) { LogPrintf("CMasternodeBroadcast::Update -- Bad sigTime %d (existing broadcast is at %d) for Masternode %s %s\n", sigTime, pmn->sigTime, outpoint.ToStringShort(), addr.ToString()); return false; } pmn->Check(); // masternode is banned by PoSe if(pmn->IsPoSeBanned()) { LogPrintf("CMasternodeBroadcast::Update -- Banned by PoSe, masternode=%s\n", outpoint.ToStringShort()); return false; } // IsVnAssociatedWithPubkey is validated once in CheckOutpoint, after that they just need to match if(pmn->pubKeyCollateralAddress != pubKeyCollateralAddress) { LogPrintf("CMasternodeBroadcast::Update -- Got mismatched pubKeyCollateralAddress and outpoint\n"); nDos = 33; return false; } if (!CheckSignature(nDos)) { LogPrintf("CMasternodeBroadcast::Update -- CheckSignature() failed, masternode=%s\n", outpoint.ToStringShort()); return false; } // if ther was no masternode broadcast recently or if it matches our Masternode privkey... if(!pmn->IsBroadcastedWithin(MASTERNODE_MIN_MNB_SECONDS) || (fMasternodeMode && pubKeyMasternode == activeMasternode.pubKeyMasternode)) { // take the newest entry LogPrintf("CMasternodeBroadcast::Update -- Got UPDATED Masternode entry: addr=%s\n", addr.ToString()); if(pmn->UpdateFromNewBroadcast(*this, connman)) { pmn->Check(); Relay(connman); } masternodeSync.BumpAssetLastTime("CMasternodeBroadcast::Update"); } return true; } bool CMasternodeBroadcast::CheckOutpoint(int& nDos) { // we are a masternode with the same outpoint (i.e. already activated) and this mnb is ours (matches our Masternode privkey) // so nothing to do here for us if(fMasternodeMode && outpoint == activeMasternode.outpoint && pubKeyMasternode == activeMasternode.pubKeyMasternode) { return false; } AssertLockHeld(cs_main); int nHeight; CollateralStatus err = CheckCollateral(outpoint, pubKeyCollateralAddress, nHeight); if (err == COLLATERAL_UTXO_NOT_FOUND) { LogPrint("masternode", "CMasternodeBroadcast::CheckOutpoint -- Failed to find Masternode UTXO, masternode=%s\n", outpoint.ToStringShort()); return false; } if (err == COLLATERAL_INVALID_AMOUNT) { LogPrint("masternode", "CMasternodeBroadcast::CheckOutpoint -- Masternode UTXO should have 1000 BRL, masternode=%s\n", outpoint.ToStringShort()); nDos = 33; return false; } if(err == COLLATERAL_INVALID_PUBKEY) { LogPrint("masternode", "CMasternodeBroadcast::CheckOutpoint -- Masternode UTXO should match pubKeyCollateralAddress, masternode=%s\n", outpoint.ToStringShort()); nDos = 33; return false; } if(chainActive.Height() - nHeight + 1 < Params().GetConsensus().nMasternodeMinimumConfirmations) { LogPrintf("CMasternodeBroadcast::CheckOutpoint -- Masternode UTXO must have at least %d confirmations, masternode=%s\n", Params().GetConsensus().nMasternodeMinimumConfirmations, outpoint.ToStringShort()); // UTXO is legit but has not enough confirmations. // Maybe we miss few blocks, let this mnb be checked again later. mnodeman.mapSeenMasternodeBroadcast.erase(GetHash()); return false; } LogPrint("masternode", "CMasternodeBroadcast::CheckOutpoint -- Masternode UTXO verified\n"); // Verify that sig time is legit, should be at least not earlier than the timestamp of the block // at which collateral became nMasternodeMinimumConfirmations blocks deep. // NOTE: this is not accurate because block timestamp is NOT guaranteed to be 100% correct one. CBlockIndex* pRequiredConfIndex = chainActive[nHeight + Params().GetConsensus().nMasternodeMinimumConfirmations - 1]; // block where tx got nMasternodeMinimumConfirmations if(pRequiredConfIndex->GetBlockTime() > sigTime) { LogPrintf("CMasternodeBroadcast::CheckOutpoint -- Bad sigTime %d (%d conf block is at %d) for Masternode %s %s\n", sigTime, Params().GetConsensus().nMasternodeMinimumConfirmations, pRequiredConfIndex->GetBlockTime(), outpoint.ToStringShort(), addr.ToString()); return false; } if (!CheckSignature(nDos)) { LogPrintf("CMasternodeBroadcast::CheckOutpoint -- CheckSignature() failed, masternode=%s\n", outpoint.ToStringShort()); return false; } // remember the block hash when collateral for this masternode had minimum required confirmations nCollateralMinConfBlockHash = pRequiredConfIndex->GetBlockHash(); return true; } uint256 CMasternodeBroadcast::GetHash() const { // Note: doesn't match serialization CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); ss << outpoint << uint8_t{} << 0xffffffff; // adding dummy values here to match old hashing format ss << pubKeyCollateralAddress; ss << sigTime; return ss.GetHash(); } uint256 CMasternodeBroadcast::GetSignatureHash() const { // TODO: replace with "return SerializeHash(*this);" after migration to 70209 CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); ss << outpoint; ss << addr; ss << pubKeyCollateralAddress; ss << pubKeyMasternode; ss << sigTime; ss << nProtocolVersion; return ss.GetHash(); } bool CMasternodeBroadcast::Sign(const CKey& keyCollateralAddress) { std::string strError; sigTime = GetAdjustedTime(); if (sporkManager.IsSporkActive(SPORK_6_NEW_SIGS)) { uint256 hash = GetSignatureHash(); if (!CHashSigner::SignHash(hash, keyCollateralAddress, vchSig)) { LogPrintf("CMasternodeBroadcast::Sign -- SignHash() failed\n"); return false; } if (!CHashSigner::VerifyHash(hash, pubKeyCollateralAddress, vchSig, strError)) { LogPrintf("CMasternodeBroadcast::Sign -- VerifyMessage() failed, error: %s\n", strError); return false; } } else { std::string strMessage = addr.ToString(false) + boost::lexical_cast<std::string>(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + boost::lexical_cast<std::string>(nProtocolVersion); if (!CMessageSigner::SignMessage(strMessage, vchSig, keyCollateralAddress)) { LogPrintf("CMasternodeBroadcast::Sign -- SignMessage() failed\n"); return false; } if (!CMessageSigner::VerifyMessage(pubKeyCollateralAddress, vchSig, strMessage, strError)) { LogPrintf("CMasternodeBroadcast::Sign -- VerifyMessage() failed, error: %s\n", strError); return false; } } return true; } bool CMasternodeBroadcast::CheckSignature(int& nDos) const { std::string strError = ""; nDos = 0; if (sporkManager.IsSporkActive(SPORK_6_NEW_SIGS)) { uint256 hash = GetSignatureHash(); if (!CHashSigner::VerifyHash(hash, pubKeyCollateralAddress, vchSig, strError)) { // maybe it's in old format std::string strMessage = addr.ToString(false) + boost::lexical_cast<std::string>(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + boost::lexical_cast<std::string>(nProtocolVersion); if (!CMessageSigner::VerifyMessage(pubKeyCollateralAddress, vchSig, strMessage, strError)){ // nope, not in old format either LogPrintf("CMasternodeBroadcast::CheckSignature -- Got bad Masternode announce signature, error: %s\n", strError); nDos = 100; return false; } } } else { std::string strMessage = addr.ToString(false) + boost::lexical_cast<std::string>(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + boost::lexical_cast<std::string>(nProtocolVersion); if (!CMessageSigner::VerifyMessage(pubKeyCollateralAddress, vchSig, strMessage, strError)){ LogPrintf("CMasternodeBroadcast::CheckSignature -- Got bad Masternode announce signature, error: %s\n", strError); nDos = 100; return false; } } return true; } void CMasternodeBroadcast::Relay(CConnman& connman) const { // Do not relay until fully synced if(!masternodeSync.IsSynced()) { LogPrint("masternode", "CMasternodeBroadcast::Relay -- won't relay until fully synced\n"); return; } CInv inv(MSG_MASTERNODE_ANNOUNCE, GetHash()); connman.RelayInv(inv); } uint256 CMasternodePing::GetHash() const { CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); if (sporkManager.IsSporkActive(SPORK_6_NEW_SIGS)) { // TODO: replace with "return SerializeHash(*this);" after migration to 70209 ss << masternodeOutpoint; ss << blockHash; ss << sigTime; ss << fSentinelIsCurrent; ss << nSentinelVersion; ss << nDaemonVersion; } else { // Note: doesn't match serialization ss << masternodeOutpoint << uint8_t{} << 0xffffffff; // adding dummy values here to match old hashing format ss << sigTime; } return ss.GetHash(); } uint256 CMasternodePing::GetSignatureHash() const { return GetHash(); } CMasternodePing::CMasternodePing(const COutPoint& outpoint) { LOCK(cs_main); if (!chainActive.Tip() || chainActive.Height() < 12) return; masternodeOutpoint = outpoint; blockHash = chainActive[chainActive.Height() - 12]->GetBlockHash(); sigTime = GetAdjustedTime(); nDaemonVersion = CLIENT_VERSION; } bool CMasternodePing::Sign(const CKey& keyMasternode, const CPubKey& pubKeyMasternode) { std::string strError; sigTime = GetAdjustedTime(); if (sporkManager.IsSporkActive(SPORK_6_NEW_SIGS)) { uint256 hash = GetSignatureHash(); if (!CHashSigner::SignHash(hash, keyMasternode, vchSig)) { LogPrintf("CMasternodePing::Sign -- SignHash() failed\n"); return false; } if (!CHashSigner::VerifyHash(hash, pubKeyMasternode, vchSig, strError)) { LogPrintf("CMasternodePing::Sign -- VerifyHash() failed, error: %s\n", strError); return false; } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + boost::lexical_cast<std::string>(sigTime); if (!CMessageSigner::SignMessage(strMessage, vchSig, keyMasternode)) { LogPrintf("CMasternodePing::Sign -- SignMessage() failed\n"); return false; } if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CMasternodePing::Sign -- VerifyMessage() failed, error: %s\n", strError); return false; } } return true; } bool CMasternodePing::CheckSignature(const CPubKey& pubKeyMasternode, int &nDos) const { std::string strError = ""; nDos = 0; if (sporkManager.IsSporkActive(SPORK_6_NEW_SIGS)) { uint256 hash = GetSignatureHash(); if (!CHashSigner::VerifyHash(hash, pubKeyMasternode, vchSig, strError)) { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + boost::lexical_cast<std::string>(sigTime); if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CMasternodePing::CheckSignature -- Got bad Masternode ping signature, masternode=%s, error: %s\n", masternodeOutpoint.ToStringShort(), strError); nDos = 33; return false; } } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + boost::lexical_cast<std::string>(sigTime); if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CMasternodePing::CheckSignature -- Got bad Masternode ping signature, masternode=%s, error: %s\n", masternodeOutpoint.ToStringShort(), strError); nDos = 33; return false; } } return true; } bool CMasternodePing::SimpleCheck(int& nDos) { // don't ban by default nDos = 0; if (sigTime > GetAdjustedTime() + 60 * 60) { LogPrintf("CMasternodePing::SimpleCheck -- Signature rejected, too far into the future, masternode=%s\n", masternodeOutpoint.ToStringShort()); nDos = 1; return false; } { AssertLockHeld(cs_main); BlockMap::iterator mi = mapBlockIndex.find(blockHash); if (mi == mapBlockIndex.end()) { LogPrint("masternode", "CMasternodePing::SimpleCheck -- Masternode ping is invalid, unknown block hash: masternode=%s blockHash=%s\n", masternodeOutpoint.ToStringShort(), blockHash.ToString()); // maybe we stuck or forked so we shouldn't ban this node, just fail to accept this ping // TODO: or should we also request this block? return false; } } LogPrint("masternode", "CMasternodePing::SimpleCheck -- Masternode ping verified: masternode=%s blockHash=%s sigTime=%d\n", masternodeOutpoint.ToStringShort(), blockHash.ToString(), sigTime); return true; } bool CMasternodePing::CheckAndUpdate(CMasternode* pmn, bool fFromNewBroadcast, int& nDos, CConnman& connman) { AssertLockHeld(cs_main); // don't ban by default nDos = 0; if (!SimpleCheck(nDos)) { return false; } if (pmn == NULL) { LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- Couldn't find Masternode entry, masternode=%s\n", masternodeOutpoint.ToStringShort()); return false; } if(!fFromNewBroadcast) { if (pmn->IsUpdateRequired()) { LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- masternode protocol is outdated, masternode=%s\n", masternodeOutpoint.ToStringShort()); return false; } if (pmn->IsNewStartRequired()) { LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- masternode is completely expired, new start is required, masternode=%s\n", masternodeOutpoint.ToStringShort()); return false; } } { BlockMap::iterator mi = mapBlockIndex.find(blockHash); if ((*mi).second && (*mi).second->nHeight < chainActive.Height() - 24) { LogPrintf("CMasternodePing::CheckAndUpdate -- Masternode ping is invalid, block hash is too old: masternode=%s blockHash=%s\n", masternodeOutpoint.ToStringShort(), blockHash.ToString()); // nDos = 1; return false; } } LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- New ping: masternode=%s blockHash=%s sigTime=%d\n", masternodeOutpoint.ToStringShort(), blockHash.ToString(), sigTime); // LogPrintf("mnping - Found corresponding mn for outpoint: %s\n", masternodeOutpoint.ToStringShort()); // update only if there is no known ping for this masternode or // last ping was more then MASTERNODE_MIN_MNP_SECONDS-60 ago comparing to this one if (pmn->IsPingedWithin(MASTERNODE_MIN_MNP_SECONDS - 60, sigTime)) { LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- Masternode ping arrived too early, masternode=%s\n", masternodeOutpoint.ToStringShort()); //nDos = 1; //disable, this is happening frequently and causing banned peers return false; } if (!CheckSignature(pmn->pubKeyMasternode, nDos)) return false; // so, ping seems to be ok // if we are still syncing and there was no known ping for this mn for quite a while // (NOTE: assuming that MASTERNODE_EXPIRATION_SECONDS/2 should be enough to finish mn list sync) if(!masternodeSync.IsMasternodeListSynced() && !pmn->IsPingedWithin(MASTERNODE_EXPIRATION_SECONDS/2)) { // let's bump sync timeout LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- bumping sync timeout, masternode=%s\n", masternodeOutpoint.ToStringShort()); masternodeSync.BumpAssetLastTime("CMasternodePing::CheckAndUpdate"); } // let's store this ping as the last one LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- Masternode ping accepted, masternode=%s\n", masternodeOutpoint.ToStringShort()); pmn->lastPing = *this; // and update mnodeman.mapSeenMasternodeBroadcast.lastPing which is probably outdated CMasternodeBroadcast mnb(*pmn); uint256 hash = mnb.GetHash(); if (mnodeman.mapSeenMasternodeBroadcast.count(hash)) { mnodeman.mapSeenMasternodeBroadcast[hash].second.lastPing = *this; } // force update, ignoring cache pmn->Check(true); // relay ping for nodes in ENABLED/EXPIRED/SENTINEL_PING_EXPIRED state only, skip everyone else if (!pmn->IsEnabled() && !pmn->IsExpired() && !pmn->IsSentinelPingExpired()) return false; LogPrint("masternode", "CMasternodePing::CheckAndUpdate -- Masternode ping acceepted and relayed, masternode=%s\n", masternodeOutpoint.ToStringShort()); Relay(connman); return true; } void CMasternodePing::Relay(CConnman& connman) { // Do not relay until fully synced if(!masternodeSync.IsSynced()) { LogPrint("masternode", "CMasternodePing::Relay -- won't relay until fully synced\n"); return; } CInv inv(MSG_MASTERNODE_PING, GetHash()); connman.RelayInv(inv); } void CMasternode::AddGovernanceVote(uint256 nGovernanceObjectHash) { if(mapGovernanceObjectsVotedOn.count(nGovernanceObjectHash)) { mapGovernanceObjectsVotedOn[nGovernanceObjectHash]++; } else { mapGovernanceObjectsVotedOn.insert(std::make_pair(nGovernanceObjectHash, 1)); } } void CMasternode::RemoveGovernanceObject(uint256 nGovernanceObjectHash) { std::map<uint256, int>::iterator it = mapGovernanceObjectsVotedOn.find(nGovernanceObjectHash); if(it == mapGovernanceObjectsVotedOn.end()) { return; } mapGovernanceObjectsVotedOn.erase(it); } /** * FLAG GOVERNANCE ITEMS AS DIRTY * * - When masternode come and go on the network, we must flag the items they voted on to recalc it's cached flags * */ void CMasternode::FlagGovernanceItemsAsDirty() { std::vector<uint256> vecDirty; { std::map<uint256, int>::iterator it = mapGovernanceObjectsVotedOn.begin(); while(it != mapGovernanceObjectsVotedOn.end()) { vecDirty.push_back(it->first); ++it; } } for(size_t i = 0; i < vecDirty.size(); ++i) { mnodeman.AddDirtyGovernanceObjectHash(vecDirty[i]); } }
066588ce9b3f2f9f57f8614a6c51bfbb5a489247
5456502f97627278cbd6e16d002d50f1de3da7bb
/ppapi/tests/manual/delete_plugin.cc
9d61b663a7fbc778877ad52faba9bf0d68c58b61
[ "BSD-3-Clause", "LicenseRef-scancode-khronos" ]
permissive
TrellixVulnTeam/Chromium_7C66
72d108a413909eb3bd36c73a6c2f98de1573b6e5
c8649ab2a0f5a747369ed50351209a42f59672ee
refs/heads/master
2023-03-16T12:51:40.231959
2017-12-20T10:38:26
2017-12-20T10:38:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,134
cc
// Copyright (c) 2011 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 <stdint.h> #include "ppapi/c/pp_errors.h" #include "ppapi/c/pp_input_event.h" #include "ppapi/c/ppb_var.h" #include "ppapi/c/trusted/ppb_instance_trusted.h" #include "ppapi/cpp/completion_callback.h" #include "ppapi/cpp/instance.h" #include "ppapi/cpp/module.h" #include "ppapi/cpp/private/var_private.h" class MyInstance : public pp::Instance { public: MyInstance(PP_Instance instance) : pp::Instance(instance) { factory_.Initialize(this); } virtual ~MyInstance() { } virtual bool Init(uint32_t argc, const char* argn[], const char* argv[]) { return true; } virtual bool HandleInputEvent(const PP_InputEvent& event) { switch (event.type) { case PP_INPUTEVENT_TYPE_MOUSEDOWN: pp::Module::Get()->core()->CallOnMainThread(100, factory_.NewCallback(&MyInstance::SayHello)); return true; case PP_INPUTEVENT_TYPE_MOUSEMOVE: return true; case PP_INPUTEVENT_TYPE_KEYDOWN: return true; default: return false; } } private: void SayHello(int32_t) { pp::Var code("deletePlugin()"); /* When scripting is removed from instance, this is the code that will do the same thing: const PPB_Instance_Trusted* inst = (const PPB_Instance_Trusted*)pp::Module::Get()->GetBrowserInterface( PPB_INSTANCE_TRUSTED_INTERFACE); inst->ExecuteScript(pp_instance(), code.pp_var(), NULL); */ ExecuteScript(code); } pp::CompletionCallbackFactory<MyInstance> factory_; }; class MyModule : public pp::Module { public: MyModule() : pp::Module() {} virtual ~MyModule() {} virtual pp::Instance* CreateInstance(PP_Instance instance) { return new MyInstance(instance); } }; namespace pp { // Factory function for your specialization of the Module object. Module* CreateModule() { return new MyModule(); } } // namespace pp
eea40fdcf88344822ade3313e473fb13238d6801
3990d2659b7985b2ae04d87cc23948d01a716ffa
/2-23-1/Demo.cpp
5692a3679f9386d387ba231c3b625ba4a26c34fe
[]
no_license
DSPerson/cPrimerPlus
d7f03a75ccd449e8326662d6894a5388b7e49ab4
ac9c52e593b208f7fd75f948e1c6cf5d3d0d1228
refs/heads/master
2021-01-21T06:42:14.376831
2017-02-27T05:44:24
2017-02-27T05:44:24
83,271,694
0
0
null
null
null
null
UTF-8
C++
false
false
440
cpp
// // Created by dsperson on 2017/2/23. // #include "Demo.h" #include "Teacher.h" //#include "./Teacher.h" /*int main() { cout << "ds" << endl; } */ void Demo::funcTeacher() { Teacher tea; Teacher tea1(tea); // Teacher *teach = new Teacher(); //delete teach; //string name; // cin >> name; //if (name.empty()) funcTeacher(); //tea.setName(name); //cout << tea.getNmae() << tea.getAge() << endl; }
3d49dc87d130736b343b9abbde6b5b585c81278d
d3a794866f8537b8968a0db3a5fba8fe915d5cec
/src/db.cpp
aa7681d52eeb39581f2966e56cb47d7e3ea72d9d
[ "MIT" ]
permissive
mooneygang/ammocoin
55157296f44c1ead561c5b45562dba91cf046db3
5aba361ec013122fd8c764fefcc99ef0e07988b5
refs/heads/master
2020-03-17T00:23:41.147868
2018-05-14T07:34:41
2018-05-14T07:34:41
133,115,110
0
0
null
null
null
null
UTF-8
C++
false
false
27,094
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2011-2012 Litecoin Developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "db.h" #include "util.h" #include "main.h" #include <boost/version.hpp> #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #ifndef WIN32 #include "sys/stat.h" #endif using namespace std; using namespace boost; unsigned int nWalletDBUpdated; // // CDB // CDBEnv bitdb; void CDBEnv::EnvShutdown() { if (!fDbEnvInit) return; fDbEnvInit = false; try { dbenv.close(0); } catch (const DbException& e) { printf("EnvShutdown exception: %s (%d)\n", e.what(), e.get_errno()); } DbEnv(0).remove(GetDataDir().string().c_str(), 0); } CDBEnv::CDBEnv() : dbenv(0) { } CDBEnv::~CDBEnv() { EnvShutdown(); } void CDBEnv::Close() { EnvShutdown(); } bool CDBEnv::Open(boost::filesystem::path pathEnv_) { if (fDbEnvInit) return true; if (fShutdown) return false; pathEnv = pathEnv_; filesystem::path pathDataDir = pathEnv; filesystem::path pathLogDir = pathDataDir / "database"; filesystem::create_directory(pathLogDir); filesystem::path pathErrorFile = pathDataDir / "db.log"; printf("dbenv.open LogDir=%s ErrorFile=%s\n", pathLogDir.string().c_str(), pathErrorFile.string().c_str()); unsigned int nEnvFlags = 0; if (GetBoolArg("-privdb", true)) nEnvFlags |= DB_PRIVATE; int nDbCache = GetArg("-dbcache", 25); dbenv.set_lg_dir(pathLogDir.string().c_str()); dbenv.set_cachesize(nDbCache / 1024, (nDbCache % 1024)*1048576, 1); dbenv.set_lg_bsize(1048576); dbenv.set_lg_max(10485760); dbenv.set_lk_max_locks(10000); dbenv.set_lk_max_objects(10000); dbenv.set_errfile(fopen(pathErrorFile.string().c_str(), "a")); /// debug dbenv.set_flags(DB_AUTO_COMMIT, 1); dbenv.set_flags(DB_TXN_WRITE_NOSYNC, 1); dbenv.log_set_config(DB_LOG_AUTO_REMOVE, 1); int ret = dbenv.open(pathDataDir.string().c_str(), DB_CREATE | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN | DB_THREAD | DB_RECOVER | nEnvFlags, S_IRUSR | S_IWUSR); if (ret > 0) return error("CDB() : error %d opening database environment", ret); fDbEnvInit = true; return true; } void CDBEnv::CheckpointLSN(std::string strFile) { dbenv.txn_checkpoint(0, 0, 0); dbenv.lsn_reset(strFile.c_str(), 0); } CDB::CDB(const char *pszFile, const char* pszMode) : pdb(NULL), activeTxn(NULL) { int ret; if (pszFile == NULL) return; fReadOnly = (!strchr(pszMode, '+') && !strchr(pszMode, 'w')); bool fCreate = strchr(pszMode, 'c'); unsigned int nFlags = DB_THREAD; if (fCreate) nFlags |= DB_CREATE; { LOCK(bitdb.cs_db); if (!bitdb.Open(GetDataDir())) throw runtime_error("env open failed"); strFile = pszFile; ++bitdb.mapFileUseCount[strFile]; pdb = bitdb.mapDb[strFile]; if (pdb == NULL) { pdb = new Db(&bitdb.dbenv, 0); ret = pdb->open(NULL, // Txn pointer pszFile, // Filename "main", // Logical db name DB_BTREE, // Database type nFlags, // Flags 0); if (ret > 0) { delete pdb; pdb = NULL; { LOCK(bitdb.cs_db); --bitdb.mapFileUseCount[strFile]; } strFile = ""; throw runtime_error(strprintf("CDB() : can't open database file %s, error %d", pszFile, ret)); } if (fCreate && !Exists(string("version"))) { bool fTmp = fReadOnly; fReadOnly = false; WriteVersion(CLIENT_VERSION); fReadOnly = fTmp; } bitdb.mapDb[strFile] = pdb; } } } static bool IsChainFile(std::string strFile) { if (strFile == "blkindex.dat") return true; return false; } void CDB::Close() { if (!pdb) return; if (activeTxn) activeTxn->abort(); activeTxn = NULL; pdb = NULL; // Flush database activity from memory pool to disk log unsigned int nMinutes = 0; if (fReadOnly) nMinutes = 1; if (IsChainFile(strFile)) nMinutes = 2; if (IsChainFile(strFile) && IsInitialBlockDownload()) nMinutes = 5; bitdb.dbenv.txn_checkpoint(nMinutes ? GetArg("-dblogsize", 100)*1024 : 0, nMinutes, 0); { LOCK(bitdb.cs_db); --bitdb.mapFileUseCount[strFile]; } } void CDBEnv::CloseDb(const string& strFile) { { LOCK(cs_db); if (mapDb[strFile] != NULL) { // Close the database handle Db* pdb = mapDb[strFile]; pdb->close(0); delete pdb; mapDb[strFile] = NULL; } } } bool CDB::Rewrite(const string& strFile, const char* pszSkip) { while (!fShutdown) { { LOCK(bitdb.cs_db); if (!bitdb.mapFileUseCount.count(strFile) || bitdb.mapFileUseCount[strFile] == 0) { // Flush log data to the dat file bitdb.CloseDb(strFile); bitdb.CheckpointLSN(strFile); bitdb.mapFileUseCount.erase(strFile); bool fSuccess = true; printf("Rewriting %s...\n", strFile.c_str()); string strFileRes = strFile + ".rewrite"; { // surround usage of db with extra {} CDB db(strFile.c_str(), "r"); Db* pdbCopy = new Db(&bitdb.dbenv, 0); int ret = pdbCopy->open(NULL, // Txn pointer strFileRes.c_str(), // Filename "main", // Logical db name DB_BTREE, // Database type DB_CREATE, // Flags 0); if (ret > 0) { printf("Cannot create database file %s\n", strFileRes.c_str()); fSuccess = false; } Dbc* pcursor = db.GetCursor(); if (pcursor) while (fSuccess) { CDataStream ssKey(SER_DISK, CLIENT_VERSION); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = db.ReadAtCursor(pcursor, ssKey, ssValue, DB_NEXT); if (ret == DB_NOTFOUND) { pcursor->close(); break; } else if (ret != 0) { pcursor->close(); fSuccess = false; break; } if (pszSkip && strncmp(&ssKey[0], pszSkip, std::min(ssKey.size(), strlen(pszSkip))) == 0) continue; if (strncmp(&ssKey[0], "\x07version", 8) == 0) { // Update version: ssValue.clear(); ssValue << CLIENT_VERSION; } Dbt datKey(&ssKey[0], ssKey.size()); Dbt datValue(&ssValue[0], ssValue.size()); int ret2 = pdbCopy->put(NULL, &datKey, &datValue, DB_NOOVERWRITE); if (ret2 > 0) fSuccess = false; } if (fSuccess) { db.Close(); bitdb.CloseDb(strFile); if (pdbCopy->close(0)) fSuccess = false; delete pdbCopy; } } if (fSuccess) { Db dbA(&bitdb.dbenv, 0); if (dbA.remove(strFile.c_str(), NULL, 0)) fSuccess = false; Db dbB(&bitdb.dbenv, 0); if (dbB.rename(strFileRes.c_str(), NULL, strFile.c_str(), 0)) fSuccess = false; } if (!fSuccess) printf("Rewriting of %s FAILED!\n", strFileRes.c_str()); return fSuccess; } } Sleep(100); } return false; } void CDBEnv::Flush(bool fShutdown) { int64 nStart = GetTimeMillis(); // Flush log data to the actual data file // on all files that are not in use printf("Flush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started"); if (!fDbEnvInit) return; { LOCK(cs_db); map<string, int>::iterator mi = mapFileUseCount.begin(); while (mi != mapFileUseCount.end()) { string strFile = (*mi).first; int nRefCount = (*mi).second; printf("%s refcount=%d\n", strFile.c_str(), nRefCount); if (nRefCount == 0) { // Move log data to the dat file CloseDb(strFile); printf("%s checkpoint\n", strFile.c_str()); dbenv.txn_checkpoint(0, 0, 0); if (!IsChainFile(strFile) || fDetachDB) { printf("%s detach\n", strFile.c_str()); dbenv.lsn_reset(strFile.c_str(), 0); } printf("%s closed\n", strFile.c_str()); mapFileUseCount.erase(mi++); } else mi++; } printf("DBFlush(%s)%s ended %15" PRI64d "ms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started", GetTimeMillis() - nStart); if (fShutdown) { char** listp; if (mapFileUseCount.empty()) { dbenv.log_archive(&listp, DB_ARCH_REMOVE); Close(); } } } } // // CTxDB // bool CTxDB::ReadTxIndex(uint256 hash, CTxIndex& txindex) { assert(!fClient); txindex.SetNull(); return Read(make_pair(string("tx"), hash), txindex); } bool CTxDB::UpdateTxIndex(uint256 hash, const CTxIndex& txindex) { assert(!fClient); return Write(make_pair(string("tx"), hash), txindex); } bool CTxDB::AddTxIndex(const CTransaction& tx, const CDiskTxPos& pos, int nHeight) { assert(!fClient); // Add to tx index uint256 hash = tx.GetHash(); CTxIndex txindex(pos, tx.vout.size()); return Write(make_pair(string("tx"), hash), txindex); } bool CTxDB::EraseTxIndex(const CTransaction& tx) { assert(!fClient); uint256 hash = tx.GetHash(); return Erase(make_pair(string("tx"), hash)); } bool CTxDB::ContainsTx(uint256 hash) { assert(!fClient); return Exists(make_pair(string("tx"), hash)); } bool CTxDB::ReadDiskTx(uint256 hash, CTransaction& tx, CTxIndex& txindex) { assert(!fClient); tx.SetNull(); if (!ReadTxIndex(hash, txindex)) return false; return (tx.ReadFromDisk(txindex.pos)); } bool CTxDB::ReadDiskTx(uint256 hash, CTransaction& tx) { CTxIndex txindex; return ReadDiskTx(hash, tx, txindex); } bool CTxDB::ReadDiskTx(COutPoint outpoint, CTransaction& tx, CTxIndex& txindex) { return ReadDiskTx(outpoint.hash, tx, txindex); } bool CTxDB::ReadDiskTx(COutPoint outpoint, CTransaction& tx) { CTxIndex txindex; return ReadDiskTx(outpoint.hash, tx, txindex); } bool CTxDB::WriteBlockIndex(const CDiskBlockIndex& blockindex) { return Write(make_pair(string("blockindex"), blockindex.GetBlockHash()), blockindex); } bool CTxDB::ReadHashBestChain(uint256& hashBestChain) { return Read(string("hashBestChain"), hashBestChain); } bool CTxDB::WriteHashBestChain(uint256 hashBestChain) { return Write(string("hashBestChain"), hashBestChain); } bool CTxDB::ReadBestInvalidWork(CBigNum& bnBestInvalidWork) { return Read(string("bnBestInvalidWork"), bnBestInvalidWork); } bool CTxDB::WriteBestInvalidWork(CBigNum bnBestInvalidWork) { return Write(string("bnBestInvalidWork"), bnBestInvalidWork); } CBlockIndex static * InsertBlockIndex(uint256 hash) { if (hash == 0) return NULL; // Return existing map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash); if (mi != mapBlockIndex.end()) return (*mi).second; // Create new CBlockIndex* pindexNew = new CBlockIndex(); if (!pindexNew) throw runtime_error("LoadBlockIndex() : new CBlockIndex failed"); mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first; pindexNew->phashBlock = &((*mi).first); return pindexNew; } bool CTxDB::LoadBlockIndex() { if (!LoadBlockIndexGuts()) return false; if (fRequestShutdown) return true; // Calculate bnChainWork vector<pair<int, CBlockIndex*> > vSortedByHeight; vSortedByHeight.reserve(mapBlockIndex.size()); BOOST_FOREACH(const PAIRTYPE(uint256, CBlockIndex*)& item, mapBlockIndex) { CBlockIndex* pindex = item.second; vSortedByHeight.push_back(make_pair(pindex->nHeight, pindex)); } sort(vSortedByHeight.begin(), vSortedByHeight.end()); BOOST_FOREACH(const PAIRTYPE(int, CBlockIndex*)& item, vSortedByHeight) { CBlockIndex* pindex = item.second; pindex->bnChainWork = (pindex->pprev ? pindex->pprev->bnChainWork : 0) + pindex->GetBlockWork(); } // Load hashBestChain pointer to end of best chain if (!ReadHashBestChain(hashBestChain)) { if (pindexGenesisBlock == NULL) return true; return error("CTxDB::LoadBlockIndex() : hashBestChain not loaded"); } if (!mapBlockIndex.count(hashBestChain)) return error("CTxDB::LoadBlockIndex() : hashBestChain not found in the block index"); pindexBest = mapBlockIndex[hashBestChain]; nBestHeight = pindexBest->nHeight; bnBestChainWork = pindexBest->bnChainWork; printf("LoadBlockIndex(): hashBestChain=%s height=%d date=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str()); // Load bnBestInvalidWork, OK if it doesn't exist ReadBestInvalidWork(bnBestInvalidWork); // Verify blocks in the best chain int nCheckLevel = GetArg("-checklevel", 1); int nCheckDepth = GetArg( "-checkblocks", 2500); if (nCheckDepth == 0) nCheckDepth = 1000000000; // suffices until the year 19000 if (nCheckDepth > nBestHeight) nCheckDepth = nBestHeight; printf("Verifying last %i blocks at level %i\n", nCheckDepth, nCheckLevel); CBlockIndex* pindexFork = NULL; map<pair<unsigned int, unsigned int>, CBlockIndex*> mapBlockPos; for (CBlockIndex* pindex = pindexBest; pindex && pindex->pprev; pindex = pindex->pprev) { if (fRequestShutdown || pindex->nHeight < nBestHeight-nCheckDepth) break; CBlock block; if (!block.ReadFromDisk(pindex)) return error("LoadBlockIndex() : block.ReadFromDisk failed"); // check level 1: verify block validity if (nCheckLevel>0 && !block.CheckBlock()) { printf("LoadBlockIndex() : *** found bad block at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str()); pindexFork = pindex->pprev; } // check level 2: verify transaction index validity if (nCheckLevel>1) { pair<unsigned int, unsigned int> pos = make_pair(pindex->nFile, pindex->nBlockPos); mapBlockPos[pos] = pindex; BOOST_FOREACH(const CTransaction &tx, block.vtx) { uint256 hashTx = tx.GetHash(); CTxIndex txindex; if (ReadTxIndex(hashTx, txindex)) { // check level 3: checker transaction hashes if (nCheckLevel>2 || pindex->nFile != txindex.pos.nFile || pindex->nBlockPos != txindex.pos.nBlockPos) { // either an error or a duplicate transaction CTransaction txFound; if (!txFound.ReadFromDisk(txindex.pos)) { printf("LoadBlockIndex() : *** cannot read mislocated transaction %s\n", hashTx.ToString().c_str()); pindexFork = pindex->pprev; } else if (txFound.GetHash() != hashTx) // not a duplicate tx { printf("LoadBlockIndex(): *** invalid tx position for %s\n", hashTx.ToString().c_str()); pindexFork = pindex->pprev; } } // check level 4: check whether spent txouts were spent within the main chain unsigned int nOutput = 0; if (nCheckLevel>3) { BOOST_FOREACH(const CDiskTxPos &txpos, txindex.vSpent) { if (!txpos.IsNull()) { pair<unsigned int, unsigned int> posFind = make_pair(txpos.nFile, txpos.nBlockPos); if (!mapBlockPos.count(posFind)) { printf("LoadBlockIndex(): *** found bad spend at %d, hashBlock=%s, hashTx=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str(), hashTx.ToString().c_str()); pindexFork = pindex->pprev; } // check level 6: check whether spent txouts were spent by a valid transaction that consume them if (nCheckLevel>5) { CTransaction txSpend; if (!txSpend.ReadFromDisk(txpos)) { printf("LoadBlockIndex(): *** cannot read spending transaction of %s:%i from disk\n", hashTx.ToString().c_str(), nOutput); pindexFork = pindex->pprev; } else if (!txSpend.CheckTransaction()) { printf("LoadBlockIndex(): *** spending transaction of %s:%i is invalid\n", hashTx.ToString().c_str(), nOutput); pindexFork = pindex->pprev; } else { bool fFound = false; BOOST_FOREACH(const CTxIn &txin, txSpend.vin) if (txin.prevout.hash == hashTx && txin.prevout.n == nOutput) fFound = true; if (!fFound) { printf("LoadBlockIndex(): *** spending transaction of %s:%i does not spend it\n", hashTx.ToString().c_str(), nOutput); pindexFork = pindex->pprev; } } } } nOutput++; } } } // check level 5: check whether all prevouts are marked spent if (nCheckLevel>4) { BOOST_FOREACH(const CTxIn &txin, tx.vin) { CTxIndex txindex; if (ReadTxIndex(txin.prevout.hash, txindex)) if (txindex.vSpent.size()-1 < txin.prevout.n || txindex.vSpent[txin.prevout.n].IsNull()) { printf("LoadBlockIndex(): *** found unspent prevout %s:%i in %s\n", txin.prevout.hash.ToString().c_str(), txin.prevout.n, hashTx.ToString().c_str()); pindexFork = pindex->pprev; } } } } } } if (pindexFork && !fRequestShutdown) { // Reorg back to the fork printf("LoadBlockIndex() : *** moving best chain pointer back to block %d\n", pindexFork->nHeight); CBlock block; if (!block.ReadFromDisk(pindexFork)) return error("LoadBlockIndex() : block.ReadFromDisk failed"); CTxDB txdb; block.SetBestChain(txdb, pindexFork); } return true; } bool CTxDB::LoadBlockIndexGuts() { // Get database cursor Dbc* pcursor = GetCursor(); if (!pcursor) return false; // Load mapBlockIndex unsigned int fFlags = DB_SET_RANGE; loop { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); if (fFlags == DB_SET_RANGE) ssKey << make_pair(string("blockindex"), uint256(0)); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags); fFlags = DB_NEXT; if (ret == DB_NOTFOUND) break; else if (ret != 0) return false; // Unserialize try { string strType; ssKey >> strType; if (strType == "blockindex" && !fRequestShutdown) { CDiskBlockIndex diskindex; ssValue >> diskindex; // Construct block index object CBlockIndex* pindexNew = InsertBlockIndex(diskindex.GetBlockHash()); pindexNew->pprev = InsertBlockIndex(diskindex.hashPrev); pindexNew->pnext = InsertBlockIndex(diskindex.hashNext); pindexNew->nFile = diskindex.nFile; pindexNew->nBlockPos = diskindex.nBlockPos; pindexNew->nHeight = diskindex.nHeight; pindexNew->nVersion = diskindex.nVersion; pindexNew->hashMerkleRoot = diskindex.hashMerkleRoot; pindexNew->nTime = diskindex.nTime; pindexNew->nBits = diskindex.nBits; pindexNew->nNonce = diskindex.nNonce; // Watch for genesis block if (pindexGenesisBlock == NULL && diskindex.GetBlockHash() == hashGenesisBlock) pindexGenesisBlock = pindexNew; if (!pindexNew->CheckIndex()) return error("LoadBlockIndex() : CheckIndex failed at %d", pindexNew->nHeight); } else { break; // if shutdown requested or finished loading block index } } // try catch (std::exception &e) { return error("%s() : deserialize error", __PRETTY_FUNCTION__); } } pcursor->close(); return true; } // // CAddrDB // CAddrDB::CAddrDB() { pathAddr = GetDataDir() / "peers.dat"; } bool CAddrDB::Write(const CAddrMan& addr) { // Generate random temporary filename unsigned short randv = 0; RAND_bytes((unsigned char *)&randv, sizeof(randv)); std::string tmpfn = strprintf("peers.dat.%04x", randv); // serialize addresses, checksum data up to that point, then append csum CDataStream ssPeers(SER_DISK, CLIENT_VERSION); ssPeers << FLATDATA(pchMessageStart); ssPeers << addr; uint256 hash = Hash(ssPeers.begin(), ssPeers.end()); ssPeers << hash; // open temp output file, and associate with CAutoFile boost::filesystem::path pathTmp = GetDataDir() / tmpfn; FILE *file = fopen(pathTmp.string().c_str(), "wb"); CAutoFile fileout = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!fileout) return error("CAddrman::Write() : open failed"); // Write and commit header, data try { fileout << ssPeers; } catch (std::exception &e) { return error("CAddrman::Write() : I/O error"); } FileCommit(fileout); fileout.fclose(); // replace existing peers.dat, if any, with new peers.dat.XXXX if (!RenameOver(pathTmp, pathAddr)) return error("CAddrman::Write() : Rename-into-place failed"); return true; } bool CAddrDB::Read(CAddrMan& addr) { // open input file, and associate with CAutoFile FILE *file = fopen(pathAddr.string().c_str(), "rb"); CAutoFile filein = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!filein) return error("CAddrman::Read() : open failed"); // use file size to size memory buffer int fileSize = GetFilesize(filein); int dataSize = fileSize - sizeof(uint256); vector<unsigned char> vchData; vchData.resize(dataSize); uint256 hashIn; // read data and checksum from file try { filein.read((char *)&vchData[0], dataSize); filein >> hashIn; } catch (std::exception &e) { return error("CAddrman::Read() 2 : I/O error or stream data corrupted"); } filein.fclose(); CDataStream ssPeers(vchData, SER_DISK, CLIENT_VERSION); // verify stored checksum matches input data uint256 hashTmp = Hash(ssPeers.begin(), ssPeers.end()); if (hashIn != hashTmp) return error("CAddrman::Read() : checksum mismatch; data corrupted"); // de-serialize address data unsigned char pchMsgTmp[4]; try { ssPeers >> FLATDATA(pchMsgTmp); ssPeers >> addr; } catch (std::exception &e) { return error("CAddrman::Read() : I/O error or stream data corrupted"); } // finally, verify the network matches ours if (memcmp(pchMsgTmp, pchMessageStart, sizeof(pchMsgTmp))) return error("CAddrman::Read() : invalid network magic number"); return true; }
1414d5aae3d6dad24efdc11cd1cf225c07faa0ad
6b2efc39377ef025f8aeef170612bb3509abe811
/src/util/string.h
f39abe0600f41f18431eb1d7c2ee353fc6f6e08c
[ "MIT" ]
permissive
kodxana/F44RedCoin
5001068ba5289f97d743b67b3d2a1dc9bcf1a5e3
a6948cb0328c0962fa87224a4dcc3138febbf3be
refs/heads/main
2022-12-25T05:52:06.330184
2020-10-05T15:50:44
2020-10-05T15:50:44
301,460,345
0
0
null
null
null
null
UTF-8
C++
false
false
1,850
h
// Copyright (c) 2019 The F44RedCoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef F44REDCOIN_UTIL_STRING_H #define F44REDCOIN_UTIL_STRING_H #include <attributes.h> #include <cstring> #include <locale> #include <sstream> #include <string> #include <vector> NODISCARD inline std::string TrimString(const std::string& str, const std::string& pattern = " \f\n\r\t\v") { std::string::size_type front = str.find_first_not_of(pattern); if (front == std::string::npos) { return std::string(); } std::string::size_type end = str.find_last_not_of(pattern); return str.substr(front, end - front + 1); } /** * Join a list of items * * @param list The list to join * @param separator The separator * @param unary_op Apply this operator to each item in the list */ template <typename T, typename UnaryOp> std::string Join(const std::vector<T>& list, const std::string& separator, UnaryOp unary_op) { std::string ret; for (size_t i = 0; i < list.size(); ++i) { if (i > 0) ret += separator; ret += unary_op(list.at(i)); } return ret; } inline std::string Join(const std::vector<std::string>& list, const std::string& separator) { return Join(list, separator, [](const std::string& i) { return i; }); } /** * Check if a string does not contain any embedded NUL (\0) characters */ NODISCARD inline bool ValidAsCString(const std::string& str) noexcept { return str.size() == strlen(str.c_str()); } /** * Locale-independent version of std::to_string */ template <typename T> std::string ToString(const T& t) { std::ostringstream oss; oss.imbue(std::locale::classic()); oss << t; return oss.str(); } #endif // F44REDCOIN_UTIL_STRENCODINGS_H
59a4abfa0a743171b1ba50c53b7d26efb0409e90
22bec78542fefaccb0948da6e9e8c5a84e7f6d96
/offer/test13.cpp
c46173d80f6734989810cfa689e6f1bc333eb78f
[]
no_license
Cyruswen/offer
fe0dfa8b7c9870e881729b793a4ce999658d219e
8ef1901a5c916544f14377e0eb61fe64a1c8557d
refs/heads/master
2020-03-23T16:09:12.289232
2018-10-11T16:00:54
2018-10-11T16:00:54
141,796,544
0
0
null
null
null
null
UTF-8
C++
false
false
4,831
cpp
#include <iostream> #include <vector> #include <map> #include <string> #include <stack> #include <queue> using namespace std; #if 0 //顺时针打印矩阵 void _orderPrint(vector<vector<int> > v, int ar, int ac, int dr, int dc) { for(int i = ac; i <= dc; i++) { cout<<v[ar][i]<<" "; } for(int i = ar+1; i <= dr; i++) { cout<<v[i][dc]<<" "; } for(int i = dc - 1; i >= ac; i--) { cout<<v[dr][i]<<" "; } for(int i = dr - 1; i > ar; i--) { cout<<v[i][ac]<<" "; } cout<<endl; } void orderPrint(vector<vector<int> > v) { int dr = v.size()-1; int dc = v[0].size()-1; int ar = 0; int ac = 0; while(dr >= ar && dc >= ac) { _orderPrint(v, ar++, ac++, dr--, dc--); } } int main() { int arr[] = {1,2,3,4,5}; vector<int> v(arr, arr+5); vector<vector<int> > v2; v2.push_back(v); v2.push_back(v); v2.push_back(v); v2.push_back(v); v2.push_back(v); orderPrint(v2); return 0; } #endif #if 0 //旋转数组 void _orderPrint(vector<vector<int> >& v, int ar, int ac, int br, int bc) { int times = bc - ac; for(int i = 0; i < times; i++) { int tmp = v[ar][ac + i]; v[ar][ac + i] = v[br - i][ac]; v[br - i][ac] = v[br][bc - i]; v[br][bc - i] = v[ar + i][bc]; v[ar + i][bc] = tmp; } } void orderPrint(vector<vector<int> >& v) { int br = v.size()-1; int bc = v[0].size()-1; int ar = 0; int ac = 0; while(ar < br && ac < bc) { _orderPrint(v, ar++, ac++, br--, bc--); } } int main() { int arr[] = {1,2,3}; int arr2[] = {4,5,6}; int arr3[] = {7,8,9}; vector<int> v1(arr, arr+3); vector<int> v2(arr2, arr+3); vector<int> v3(arr3, arr+3); vector<vector<int> > v; v.push_back(v1); v.push_back(v2); v.push_back(v3); for(size_t i = 0; i < v.size(); i++) { for(size_t j = 0; j < v[0].size(); j++) cout<<v[i][j]<<" "; cout<<endl; } orderPrint(v); for(size_t i = 0; i < v.size(); i++) { for(size_t j = 0; j < v[0].size(); j++) cout<<v[i][j]<<" "; cout<<endl; } return 0; } #endif #if 0 void _zPrint(vector<vector<int> > v, int ar, int ac, int br, int bc, bool isUp) { if(isUp) while(ar >= br) cout<<v[ar--][ac++]<<" "; else while(br <= ar) cout<<v[br++][bc--]; } void zPrint(vector<vector<int> > v) { int ar = 0; int ac = 0; int br = 0; int bc = 0; int lastr = v.size()-1; int lastc = v[0].size()-1; bool isUp = false; while(ar != lastr) { _zPrint(v,ar ,ac ,br ,bc , isUp); ar = (ar == lastr ? ar : ar+1); ac = (ar == lastr ? ac+1 : ac); br = (bc == lastc ? br+1 : br); bc = (bc == lastc ? bc : bc+1); isUp = !isUp; } } int main() { int arr[] = {1,2,3}; int arr2[] = {4,5,6}; int arr3[] = {7,8,9}; vector<int> v1(arr, arr+3); vector<int> v2(arr2, arr+3); vector<int> v3(arr3, arr+3); vector<vector<int> > v; v.push_back(v1); v.push_back(v2); v.push_back(v3); for(size_t i = 0; i < v.size(); i++) { for(size_t j = 0; j < v[0].size(); j++) cout<<v[i][j]<<" "; cout<<endl; } zPrint(v); return 0; } #endif #if 1 class Solution { public: void _printMatrix(vector<vector<int> > matrix, int ar, int ac, int br, int bc, vector<int>& result) { for(int i = ac; i <= bc; i++) result.push_back(matrix[ar][i]); for(int i = ar + 1; i <= br; i++) result.push_back(matrix[i][bc]); for(int i = bc - 1; i >= ac; i--) result.push_back(matrix[br][i]); for(int i = br - 1; i > ar; i--) result.push_back(matrix[i][ac]); } vector<int> printMatrix(vector<vector<int> > matrix) { int ar = 0; int ac = 0; int br = matrix.size()-1; int bc = matrix[0].size()-1; vector<int> result; while(ar <= br && ac <= bc) { _printMatrix(matrix, ar++, ac++, br--, bc--, result); } return result; } }; int main() { int arr[] = {1,2,3}; int arr2[] = {4,5,6}; int arr3[] = {7,8,9}; vector<int> v1(arr, arr+3); vector<int> v2(arr2, arr+3); vector<int> v3(arr3, arr+3); vector<vector<int> > v; v.push_back(v1); v.push_back(v2); v.push_back(v3); for(size_t i = 0; i < v.size(); i++) { for(size_t j = 0; j < v[0].size(); j++) cout<<v[i][j]<<" "; cout<<endl; } Solution a; vector<int> vv = a.printMatrix(v); for(size_t i = 0; i < vv.size(); i++) cout<<vv[i]<<" "; cout<<endl; return 0; } #endif
5878ac1c0d1e6c2fdcbcabf3f040ee11e9a17700
52148a852751715f41625049d3c87c7a63678552
/include/SFPlot/ArcMeter.hpp
ac1beec0c5708c158782c1c26f3082ac2e960afd
[ "MIT" ]
permissive
MoriokaReimen/SFPlot
18672c2317131798adc43425d3b00d85215eb52f
64b50500076a683026e4e439a9315f3725f1236f
refs/heads/main
2023-03-07T07:11:01.661013
2021-02-23T02:10:42
2021-02-23T02:10:42
326,103,948
3
0
null
null
null
null
UTF-8
C++
false
false
1,185
hpp
#pragma once #include <SFML/Graphics.hpp> #include "SFPlot/ArcData.hpp" #include <string> #include <utility> #include <memory> namespace sf { /** * @relates ArcData * Arc meter chart * */ class ArcMeter : virtual public sf::Drawable, virtual public sf::Transformable { sf::Font font_; sf::Color font_color_; std::vector<std::shared_ptr<ArcData>> data_set_; std::pair<double, double> range_; virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const override; public: ArcMeter(const double& min_range = 0.f, const double& max_range = 0.f); virtual ~ArcMeter(); /* setter functions */ void setFont(const sf::Font& font); void setFontColor(const sf::Color& color); void setMaxRange(const double& max_range); void setMinRange(const double& min_range); std::shared_ptr<ArcData> addData(); void addData(std::shared_ptr<ArcData> data); /* getter functions */ sf::Font getFont() const; sf::Color getFontColor() const; std::pair<double, double> getRange() const; double getMaxRange() const; double getMinRange() const; std::shared_ptr<ArcData> getData(const std::size_t& index); }; };
26ac550cdba0ac94e2e388ab0c0898e1bfc49acf
ceac59f034f560602da63f8f93eff80476ce4d37
/third_party/asio/include/asio/buffered_stream.hpp
43b105b1399be70aa66580c053349402fcd8c0c4
[ "BSL-1.0" ]
permissive
ludocosmo/wrtc-client
ade5e183db3ed0d5f86e79f06fe54cb7dad9ff4d
0efa2c6c79b865c9128b0eecf85ec133862b8cf6
refs/heads/master
2021-05-05T14:11:03.523903
2018-01-22T02:30:11
2018-01-22T02:30:11
118,438,078
0
0
null
null
null
null
UTF-8
C++
false
false
8,645
hpp
// // buffered_stream.hpp // ~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef ASIO_BUFFERED_STREAM_HPP #define ASIO_BUFFERED_STREAM_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #include <cstddef> #include "asio/async_result.hpp" #include "asio/buffered_read_stream.hpp" #include "asio/buffered_write_stream.hpp" #include "asio/buffered_stream_fwd.hpp" #include "asio/detail/noncopyable.hpp" #include "asio/error.hpp" #include "asio/io_context.hpp" #include "asio/detail/push_options.hpp" namespace asio { /// Adds buffering to the read- and write-related operations of a stream. /** * The buffered_stream class template can be used to add buffering to the * synchronous and asynchronous read and write operations of a stream. * * @par Thread Safety * @e Distinct @e objects: Safe.@n * @e Shared @e objects: Unsafe. * * @par Concepts: * AsyncReadStream, AsyncWriteStream, Stream, SyncReadStream, SyncWriteStream. */ template <typename Stream> class buffered_stream : private noncopyable { public: /// The type of the next layer. typedef typename remove_reference<Stream>::type next_layer_type; /// The type of the lowest layer. typedef typename next_layer_type::lowest_layer_type lowest_layer_type; /// The type of the executor associated with the object. typedef typename lowest_layer_type::executor_type executor_type; /// Construct, passing the specified argument to initialise the next layer. template <typename Arg> explicit buffered_stream(Arg& a) : inner_stream_impl_(a), stream_impl_(inner_stream_impl_) { } /// Construct, passing the specified argument to initialise the next layer. template <typename Arg> explicit buffered_stream(Arg& a, std::size_t read_buffer_size, std::size_t write_buffer_size) : inner_stream_impl_(a, write_buffer_size), stream_impl_(inner_stream_impl_, read_buffer_size) { } /// Get a reference to the next layer. next_layer_type& next_layer() { return stream_impl_.next_layer().next_layer(); } /// Get a reference to the lowest layer. lowest_layer_type& lowest_layer() { return stream_impl_.lowest_layer(); } /// Get a const reference to the lowest layer. const lowest_layer_type& lowest_layer() const { return stream_impl_.lowest_layer(); } /// Get the executor associated with the object. executor_type get_executor() ASIO_NOEXCEPT { return stream_impl_.lowest_layer().get_executor(); } #if !defined(ASIO_NO_DEPRECATED) /// (Deprecated: Use get_executor().) Get the io_context associated with the /// object. asio::io_context& get_io_context() { return stream_impl_.get_io_context(); } /// (Deprecated: Use get_executor().) Get the io_context associated with the /// object. asio::io_context& get_io_service() { return stream_impl_.get_io_service(); } #endif // !defined(ASIO_NO_DEPRECATED) /// Close the stream. void close() { stream_impl_.close(); } /// Close the stream. ASIO_SYNC_OP_VOID close(asio::error_code& ec) { stream_impl_.close(ec); ASIO_SYNC_OP_VOID_RETURN(ec); } /// Flush all data from the buffer to the next layer. Returns the number of /// bytes written to the next layer on the last write operation. Throws an /// exception on failure. std::size_t flush() { return stream_impl_.next_layer().flush(); } /// Flush all data from the buffer to the next layer. Returns the number of /// bytes written to the next layer on the last write operation, or 0 if an /// error occurred. std::size_t flush(asio::error_code& ec) { return stream_impl_.next_layer().flush(ec); } /// Start an asynchronous flush. template <typename WriteHandler> ASIO_INITFN_RESULT_TYPE(WriteHandler, void (asio::error_code, std::size_t)) async_flush(ASIO_MOVE_ARG(WriteHandler) handler) { return stream_impl_.next_layer().async_flush( ASIO_MOVE_CAST(WriteHandler)(handler)); } /// Write the given data to the stream. Returns the number of bytes written. /// Throws an exception on failure. template <typename ConstBufferSequence> std::size_t write_some(const ConstBufferSequence& buffers) { return stream_impl_.write_some(buffers); } /// Write the given data to the stream. Returns the number of bytes written, /// or 0 if an error occurred. template <typename ConstBufferSequence> std::size_t write_some(const ConstBufferSequence& buffers, asio::error_code& ec) { return stream_impl_.write_some(buffers, ec); } /// Start an asynchronous write. The data being written must be valid for the /// lifetime of the asynchronous operation. template <typename ConstBufferSequence, typename WriteHandler> ASIO_INITFN_RESULT_TYPE(WriteHandler, void (asio::error_code, std::size_t)) async_write_some(const ConstBufferSequence& buffers, ASIO_MOVE_ARG(WriteHandler) handler) { return stream_impl_.async_write_some(buffers, ASIO_MOVE_CAST(WriteHandler)(handler)); } /// Fill the buffer with some data. Returns the number of bytes placed in the /// buffer as a result of the operation. Throws an exception on failure. std::size_t fill() { return stream_impl_.fill(); } /// Fill the buffer with some data. Returns the number of bytes placed in the /// buffer as a result of the operation, or 0 if an error occurred. std::size_t fill(asio::error_code& ec) { return stream_impl_.fill(ec); } /// Start an asynchronous fill. template <typename ReadHandler> ASIO_INITFN_RESULT_TYPE(ReadHandler, void (asio::error_code, std::size_t)) async_fill(ASIO_MOVE_ARG(ReadHandler) handler) { return stream_impl_.async_fill(ASIO_MOVE_CAST(ReadHandler)(handler)); } /// Read some data from the stream. Returns the number of bytes read. Throws /// an exception on failure. template <typename MutableBufferSequence> std::size_t read_some(const MutableBufferSequence& buffers) { return stream_impl_.read_some(buffers); } /// Read some data from the stream. Returns the number of bytes read or 0 if /// an error occurred. template <typename MutableBufferSequence> std::size_t read_some(const MutableBufferSequence& buffers, asio::error_code& ec) { return stream_impl_.read_some(buffers, ec); } /// Start an asynchronous read. The buffer into which the data will be read /// must be valid for the lifetime of the asynchronous operation. template <typename MutableBufferSequence, typename ReadHandler> ASIO_INITFN_RESULT_TYPE(ReadHandler, void (asio::error_code, std::size_t)) async_read_some(const MutableBufferSequence& buffers, ASIO_MOVE_ARG(ReadHandler) handler) { return stream_impl_.async_read_some(buffers, ASIO_MOVE_CAST(ReadHandler)(handler)); } /// Peek at the incoming data on the stream. Returns the number of bytes read. /// Throws an exception on failure. template <typename MutableBufferSequence> std::size_t peek(const MutableBufferSequence& buffers) { return stream_impl_.peek(buffers); } /// Peek at the incoming data on the stream. Returns the number of bytes read, /// or 0 if an error occurred. template <typename MutableBufferSequence> std::size_t peek(const MutableBufferSequence& buffers, asio::error_code& ec) { return stream_impl_.peek(buffers, ec); } /// Determine the amount of data that may be read without blocking. std::size_t in_avail() { return stream_impl_.in_avail(); } /// Determine the amount of data that may be read without blocking. std::size_t in_avail(asio::error_code& ec) { return stream_impl_.in_avail(ec); } private: // The buffered write stream. typedef buffered_write_stream<Stream> write_stream_type; write_stream_type inner_stream_impl_; // The buffered read stream. typedef buffered_read_stream<write_stream_type&> read_stream_type; read_stream_type stream_impl_; }; } // namespace asio #include "asio/detail/pop_options.hpp" #endif // ASIO_BUFFERED_STREAM_HPP
0edf3acf93fc87a06253bc616a908fdbbc037d3b
4bd16eeaf3112ec176617d6f841d74b3c7ada879
/ass+1_2/ass+1_2/ass+1_1.cpp
aab0324af99090755bce1ca4be74122aae92471f
[]
no_license
sowjanya1998/sowjanya
e751a54565c959b9b0852601d790cf007b3acca0
01e9ee139fb230982cc3d04d295f89114d416fb5
refs/heads/master
2020-04-21T16:46:55.960247
2019-03-18T15:15:55
2019-03-18T15:15:55
169,713,613
0
0
null
null
null
null
UTF-8
C++
false
false
1,133
cpp
#include<iostream> using namespace std; class time { int hours; int minutes; int seconds; public: time(int h,int m,int s) { hours = h; minutes = m; seconds = s; } time() { hours = 1; minutes = 1; seconds = 1; } void display() { //printf("time:%d:%d:%d", hours, minutes, seconds); //cout << "time:" << hours << ":" << minutes << ":" << seconds; cout << "time:"; (hours <= 10) ? (cout << "0" << hours) : (cout << hours); cout<< ":"; (minutes <= 10) ? (cout << "0" << minutes) : (cout << minutes); cout << ":"; (seconds <= 10) ? (cout << "0" << seconds) : (cout << seconds); } void add(time t1, time t2) { hours = t1.hours+t2.hours; minutes = t1.minutes + t2.minutes; seconds = t1.seconds + t2.seconds; while (hours >= 24 || minutes >= 60 || seconds >= 60) { if (hours >= 24) hours = hours - 24; if (minutes >= 60) { minutes = minutes - 60; hours = hours + 1; } if (seconds >= 60) { seconds = seconds - 60; minutes = minutes + 1; } } } }; int main() { time t1(22, 59, 59),t2,t3; t3.add(t1, t2); t3.display(); getchar(); return 0; }
f9a22907f8c81beeb998793806e7fe0be7522809
4915afa18aa643cb8e6ddf65e340ce6fffb7cefd
/Project/Grid.h
3e27573689f446f2c62b22b01389e68c8c7291ae
[]
no_license
krok22/mes
86ae014a6401a40deeb7563adc33be0a11a151ac
7fe55777c90f01892eda97171f9ac86fc0a257ee
refs/heads/master
2020-04-14T18:17:57.150513
2019-01-06T20:30:05
2019-01-06T20:30:05
164,013,453
0
0
null
null
null
null
UTF-8
C++
false
false
254
h
#pragma once #include "Element.h" class Grid { private: int id=0; int length, heigth; Element *element_array; Node *node_array; void initialize(int,int); public: Grid(int,int); ~Grid(); Element* get_element_array(); Node* get_node_array(); };
f12a83b8973a603fc3e932c39aa80b53de2b73ff
d53314137d9f8fc0a1a954632164e6bb72398d8b
/example/bench_server/bench_server.cpp
56521ca9f901b2eeefd94fd14d54e38ed04b7e60
[ "MIT" ]
permissive
hbccdf/network-core
81f47a4195610427be15f6945b8e4842a62b4242
37cbf03829bffd9c0903a1e755ce1f96f46e3dfa
refs/heads/master
2022-11-24T16:37:15.267219
2020-08-04T08:16:02
2020-08-04T08:16:02
284,646,374
0
0
null
null
null
null
UTF-8
C++
false
false
2,329
cpp
#include <network/rpc/server.hpp> #include <network/serialize/xml_adapter.hpp> namespace cytx { enum class type_t { connection, operation, }; REG_ENUM(type_t, connection, operation); struct config { std::string ip; uint16_t port; type_t test_type; META(ip, port, test_type); }; } namespace bench { int add(int a, int b) { return a + b; } template <typename Server> void count_qps(Server& server, std::atomic<uint64_t>& qps) { server.register_handler("add", bench::add, [&qps](auto, auto) { ++qps; }); std::thread{ [&qps] { while (true) { using namespace std::chrono_literals; std::cout << "QPS: " << qps.load() << ".\n"; qps.store(0); std::this_thread::sleep_for(1s); } } }.detach(); } template <typename Server> void count_connection(Server& server, std::atomic<uint64_t>& conn_count) { server.register_handler("bench_connection", [&conn_count]() { ++conn_count; }); std::thread{ [&conn_count] { while (true) { using namespace std::chrono_literals; std::cout << "Connection: " << conn_count.load() << ".\n"; std::this_thread::sleep_for(1s); } } }.detach(); } } int main(int argc, char *argv[]) { using namespace bench; using namespace std::chrono_literals; using namespace cytx; using namespace cytx::rpc; using server_t = cytx::rpc::server<cytx::codec::gos_codec>; memory_pool::ins().init(); config c; DeSerializer<xml_deserialize_adapter> de; de.enum_with_str(true); de.parse_file("bench.xml"); de.DeSerialize(c, "config.server"); std::atomic<uint64_t> work_count{ 0 }; server_t server{ c.ip, c.port }; switch (c.test_type) { case cytx::type_t::connection: bench::count_connection(server, work_count); break; case cytx::type_t::operation: bench::count_qps(server, work_count); break; } server.start(); std::getchar(); server.stop(); return 0; }
72b61b9d2daf6b4a4b824f95c034ac02abf3335f
b1e6d5fb3a3dda4044ca860d2ccaaed7021b7f36
/data structures/inversions.cpp
d891d7fc4c058eda6a20eaff5dc1fc5864ec5948
[]
no_license
adig1999/ds-algo1
4fe02055a93f57a8a7bcb7095fac8ac468d6ce4c
d624295eddee3e95e237f54cddc8311739929ee7
refs/heads/master
2022-12-23T11:50:52.966111
2020-09-24T08:10:18
2020-09-24T08:10:18
298,210,913
0
0
null
null
null
null
UTF-8
C++
false
false
1,763
cpp
#include<bits/stdc++.h> using namespace std; vector<int>a; int merge_and_cnt(int s, int e) { int m = (s + e) / 2; int i = s; int j = m + 1; vector<int>tmp; int inversions = 0; while (i < m + 1 && j < e + 1) { // = ensures that only inversions are counted if // ai > bj and i < j // if you use = // ai >= bj and i < j if (a[i] <= a[j]) { tmp.push_back(a[i]); i++; } else { // current elements that are in left part // stil not merged // are definitely greater than current element // e.g. [1, 4, 5] [3] // when merging the two parts, we have to add 2 for 3 inversions += (m + 1 - i); tmp.push_back(a[j]); j++; } } while (i < m + 1) { } while (j < e + 1) { tmp.push_back(a[j]); j++; } for (int i = s; i <= e; i++) a[i] = tmp[i - s]; return inversions; } int merge_sort(int s, int e) { // if segment in consideration is 1 element // no inversions if (s == e) return 0; if (s < e) { int m = (s + e) / 2; // inversions of left part is in a int a = merge_sort(s, m); // inversions of right part is in b int b = merge_sort(m + 1, e); // inversions of both parts after merging is in c int c = merge_and_cnt(s, e); return a + b + c; } } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; a = vector<int>(n); for (auto &it : a) cin >> it; cout << merge_sort(0, n - 1) << endl; return 0; }
aaeb9bdb2bbf73441d9a1ac19207d8a2ac0e6f4d
04e5b6df2ee3bcfb7005d8ec91aab8e380333ac4
/clang_codecompletion/llvm/CodeGen/SwiftErrorValueTracking.h
08ab2abbdd5bc2c7371b29cbd9edb24bb06df446
[ "MIT" ]
permissive
ColdGrub1384/Pyto
64e2a593957fd640907f0e4698d430ea7754a73e
7557485a733dd7e17ba0366b92794931bdb39975
refs/heads/main
2023-08-01T03:48:35.694832
2022-07-20T14:38:45
2022-07-20T14:38:45
148,944,721
884
157
MIT
2023-02-26T21:34:04
2018-09-15T22:29:07
C
UTF-8
C++
false
false
3,984
h
//===- SwiftErrorValueTracking.h - Track swifterror VReg vals --*- C++ -*--===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This implements a limited mem2reg-like analysis to promote uses of function // arguments and allocas marked with swiftalloc from memory into virtual // registers tracked by this class. // //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_SWIFTERRORVALUETRACKING_H #define LLVM_CODEGEN_SWIFTERRORVALUETRACKING_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/Register.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/DebugLoc.h" #include <functional> #include <type_traits> #include <utility> namespace llvm { class Function; class MachineBasicBlock; class MachineFunction; class MachineInstr; class TargetInstrInfo; class TargetLowering; class SwiftErrorValueTracking { // Some useful objects to reduce the number of function arguments needed. MachineFunction *MF; const Function *Fn; const TargetLowering *TLI; const TargetInstrInfo *TII; /// A map from swifterror value in a basic block to the virtual register it is /// currently represented by. DenseMap<std::pair<const MachineBasicBlock *, const Value *>, Register> VRegDefMap; /// A list of upward exposed vreg uses that need to be satisfied by either a /// copy def or a phi node at the beginning of the basic block representing /// the predecessor(s) swifterror value. DenseMap<std::pair<const MachineBasicBlock *, const Value *>, Register> VRegUpwardsUse; /// A map from instructions that define/use a swifterror value to the virtual /// register that represents that def/use. llvm::DenseMap<PointerIntPair<const Instruction *, 1, bool>, Register> VRegDefUses; /// The swifterror argument of the current function. const Value *SwiftErrorArg; using SwiftErrorValues = SmallVector<const Value*, 1>; /// A function can only have a single swifterror argument. And if it does /// have a swifterror argument, it must be the first entry in /// SwiftErrorVals. SwiftErrorValues SwiftErrorVals; public: /// Initialize data structures for specified new function. void setFunction(MachineFunction &MF); /// Get the (unique) function argument that was marked swifterror, or nullptr /// if this function has no swifterror args. const Value *getFunctionArg() const { return SwiftErrorArg; } /// Get or create the swifterror value virtual register in /// VRegDefMap for this basic block. Register getOrCreateVReg(const MachineBasicBlock *, const Value *); /// Set the swifterror virtual register in the VRegDefMap for this /// basic block. void setCurrentVReg(const MachineBasicBlock *MBB, const Value *, Register); /// Get or create the swifterror value virtual register for a def of a /// swifterror by an instruction. Register getOrCreateVRegDefAt(const Instruction *, const MachineBasicBlock *, const Value *); /// Get or create the swifterror value virtual register for a use of a /// swifterror by an instruction. Register getOrCreateVRegUseAt(const Instruction *, const MachineBasicBlock *, const Value *); /// Create initial definitions of swifterror values in the entry block of the /// current function. bool createEntriesInEntryBlock(DebugLoc DbgLoc); /// Propagate assigned swifterror vregs through a function, synthesizing PHI /// nodes when needed to maintain consistency. void propagateVRegs(); void preassignVRegs(MachineBasicBlock *MBB, BasicBlock::const_iterator Begin, BasicBlock::const_iterator End); }; } #endif
9d9cc76d6fdaf4ef2b273b46bdb2d844838ce7a6
ee1bb5eb734c9615488857ccaec1ce6cb36c0d49
/56.cpp
055b3bf856933a0911e7100de5996b69996a57e6
[]
no_license
longydpl/LTHDD
fa90306b6b4423a19b1741d6d8350469996b4876
d38fdb196455f084b12140089adc6b3e11b18ab9
refs/heads/master
2020-12-11T23:02:08.277698
2020-04-18T14:15:42
2020-04-18T14:15:42
233,979,064
2
1
null
null
null
null
UTF-8
C++
false
false
2,899
cpp
#include<bits/stdc++.h> #include<conio.h> using namespace std; class SanPham { protected: int maSp; char tenSp[30]; char ngaysx[12]; float trongluong; char mau[10]; }; class HangDienTu:SanPham { float congsuat; char ddsd[15]; public: void nhap(); void xuat(); friend void TrongLuongM(HangDienTu *a, int n); }; void HangDienTu::nhap() { cout << "Ma SP:"; cin >> maSp; cout << "Ten SP:"; fflush(stdin); gets(tenSp); cout << "Ngay SX(dd/mm/yyyy):"; fflush(stdin); gets(ngaysx); cout << "Trong luong:"; cin >> trongluong; cout << "Mau sac:"; fflush(stdin); gets(mau); cout << "Cong suat:"; cin >> congsuat; cout << "Dong dien sdung:"; fflush(stdin); gets(ddsd); } void HangDienTu::xuat() { cout << setw(10) << maSp; cout << setw(15) << tenSp; cout << setw(15) << ngaysx; cout << setw(15) << trongluong; cout << setw(10) << mau; cout << setw(15) << congsuat; cout << setw(15) << ddsd; } void TrongLuongM(HangDienTu *a, int n) { float tlmin = a[0].trongluong; int i; for(i=0;i<n;i++) if(a[i].trongluong < tlmin) tlmin = a[i].trongluong; for(i=0;i<n;i++) { if(a[i].trongluong == tlmin) { a[i].xuat(); cout << endl; } } } int main() { int n; cout << "Nhap N:"; cin >> n; HangDienTu *List = new HangDienTu[n]; int i; for(i=0;i<n;i++) { List[i].nhap(); cout << "------------------\n"; } cout << "\n================================================================================================\n"; cout << setw(10) << "MaSp"; cout << setw(15) << "TenSp"; cout << setw(15) << "NgaySx"; cout << setw(15) << "TrongLuong"; cout << setw(10) << "MauSac"; cout << setw(15) << "CongSuat"; cout << setw(15) << "DDSD"; cout << "\n================================================================================================\n"; for(i=0;i<n;i++) { List[i].xuat(); cout << endl; } cout << "\n================================================================================================\n"; cout << "Cac mat hang co trong luong thap nhat:"; cout << "\n================================================================================================\n"; cout << setw(10) << "MaSp"; cout << setw(15) << "TenSp"; cout << setw(15) << "NgaySx"; cout << setw(15) << "TrongLuong"; cout << setw(10) << "MauSac"; cout << setw(15) << "CongSuat"; cout << setw(15) << "DDSD"; cout << "\n================================================================================================\n"; TrongLuongM(List,n); cout << "\n================================================================================================\n"; return 0; }
80ce724f8865007768a7b658c597bd348174b7aa
d385df4dd22a0484359b39d17ba6a347a6ee45a5
/3rdpty/MathGeoLib/tests/NegativeTests.cpp
9fdc5d2278c2e6868ca1cb48d3c3ad1d963de783
[ "Apache-2.0" ]
permissive
Sunday0/CMGameEngine
9703840d4e728050c4f38459287b2128fed93db3
36a8c4146fe6598a407af2901605fb22b5327944
refs/heads/master
2020-03-11T17:22:30.625990
2016-01-25T07:23:09
2016-01-25T07:23:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
55,961
cpp
#include <stdio.h> #include <stdlib.h> #include "../src/MathGeoLib.h" #include "../src/Math/myassert.h" #include "TestRunner.h" #include "../src/Algorithm/GJK.h" #include "../src/Algorithm/SAT.h" MATH_IGNORE_UNUSED_VARS_WARNING AABB RandomAABBInHalfspace(const Plane &plane, float maxSideLength) { float w = rng.Float(1e-3f, maxSideLength); float h = rng.Float(1e-3f, maxSideLength); float d = rng.Float(1e-3f, maxSideLength); AABB a(DIR_VEC(0, 0, 0), DIR_VEC(w, h, d)); // Store with w == 0, the translate below will set the origin and w=1. vec origin = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); a.Translate(origin); vec aabbExtremePoint = a.ExtremePoint(-plane.normal); float distance = plane.Distance(aabbExtremePoint); a.Translate((distance + GUARDBAND) * plane.normal); assert(!a.IsDegenerate()); assert(a.IsFinite()); assert(!a.Intersects(plane)); // assert(a.SignedDistance(plane) > 0.f); aabbExtremePoint = a.ExtremePoint(-plane.normal); assert(plane.SignedDistance(aabbExtremePoint) > 0.f); assert(plane.SignedDistance(a) > 0.f); return a; } OBB RandomOBBInHalfspace(const Plane &plane, float maxSideLength) { AABB a = RandomAABBInHalfspace(plane, maxSideLength); float3x4 rot = float3x4::RandomRotation(rng); float3x4 tm = float3x4::Translate(a.CenterPoint()) * rot * float3x4::Translate(-a.CenterPoint()); OBB o = a.Transform(tm); vec obbExtremePoint = o.ExtremePoint(-plane.normal); float distance = plane.Distance(obbExtremePoint); o.Translate((distance + GUARDBAND) * plane.normal); assert1(!o.IsDegenerate(), o); assert(o.IsFinite()); assert(!o.Intersects(plane)); // assert(o.SignedDistance(plane) > 0.f); obbExtremePoint = o.ExtremePoint(-plane.normal); assert(plane.SignedDistance(obbExtremePoint) > 0.f); assert(plane.SignedDistance(o) > 0.f); return o; } Sphere RandomSphereInHalfspace(const Plane &plane, float maxRadius) { Sphere s(vec::zero, rng.Float(0.001f, maxRadius)); s.Translate(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE))); vec extremePoint = s.ExtremePoint(-plane.normal); float distance = plane.Distance(extremePoint); s.Translate((distance + GUARDBAND) * plane.normal); assert(s.IsFinite()); assert(!s.IsDegenerate()); assert(!s.Intersects(plane)); // assert(s.SignedDistance(plane) > 0.f); extremePoint = s.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(s) > 0.f); return s; } Frustum RandomFrustumInHalfspace(const Plane &plane) { Frustum f; if (rng.Int(0,1)) { f.type = OrthographicFrustum; f.orthographicWidth = rng.Float(0.001f, SCALE); f.orthographicHeight = rng.Float(0.001f, SCALE); } else { f.type = PerspectiveFrustum; // Really random Frustum could have fov as ]0, pi[, but limit // to much narrower fovs to not cause the corner vertices // shoot too far when farPlaneDistance is very large. f.horizontalFov = rng.Float(0.001f, 3.f*pi/4.f); f.verticalFov = rng.Float(0.001f, 3.f*pi/4.f); } f.nearPlaneDistance = rng.Float(0.1f, SCALE); f.farPlaneDistance = f.nearPlaneDistance + rng.Float(0.1f, SCALE); f.pos = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); f.front = vec::RandomDir(rng); f.up = f.front.RandomPerpendicular(rng); f.handedness = (rng.Int(0,1) == 1) ? FrustumRightHanded : FrustumLeftHanded; f.projectiveSpace = (rng.Int(0,1) == 1) ? FrustumSpaceD3D : FrustumSpaceGL; // assert(!f.IsDegenerate()); vec extremePoint = f.ExtremePoint(-plane.normal); float distance = plane.Distance(extremePoint); f.Translate((distance + GUARDBAND) * plane.normal); assert(f.IsFinite()); // assert(!f.IsDegenerate()); assert(!f.Intersects(plane)); // assert(s.SignedDistance(plane) > 0.f); extremePoint = f.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(f) > 0.f); return f; } Line RandomLineInHalfspace(const Plane &plane) { vec linePos = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); if (plane.SignedDistance(linePos) < 0.f) linePos = plane.Mirror(linePos); linePos += plane.normal * 1e-2f; assert(plane.SignedDistance(linePos) >= 1e-3f); vec dir = plane.normal.RandomPerpendicular(rng); Line l(linePos, dir); assert(l.IsFinite()); assert2(!plane.Intersects(l), plane.SerializeToCodeString(), l.SerializeToCodeString()); assert1(plane.SignedDistance(l) > 0.f, plane.SignedDistance(l)); return l; } Ray RandomRayInHalfspace(const Plane &plane) { if (rng.Int(0, 10) == 0) return RandomLineInHalfspace(plane).ToRay(); vec rayPos = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); if (plane.SignedDistance(rayPos) < 0.f) rayPos = plane.Mirror(rayPos); rayPos += plane.normal * 1e-2f; assert(plane.SignedDistance(rayPos) >= 1e-3f); vec dir = vec::RandomDir(rng); if (dir.Dot(plane.normal) < 0.f) dir = -dir; Ray r(rayPos, dir); assert(r.IsFinite()); assert(plane.SignedDistance(r.GetPoint(SCALE*10.f)) > 0.f); assert(!plane.Intersects(r)); assert(plane.SignedDistance(r) > 0.f); return r; } LineSegment RandomLineSegmentInHalfspace(const Plane &plane) { float f = rng.Float(0.f, SCALE); LineSegment ls = RandomRayInHalfspace(plane).ToLineSegment(0.f, f); assert(ls.IsFinite()); assert(plane.SignedDistance(ls) > 0.f); return ls; } Capsule RandomCapsuleInHalfspace(const Plane &plane) { vec pt = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); vec dir = vec::RandomDir(rng); float a = rng.Float(0, SCALE); float b = rng.Float(0, SCALE); float r = rng.Float(0.001f, SCALE); Capsule c(pt + a*dir, pt - b*dir, r); assert(c.IsFinite()); vec extremePoint = c.ExtremePoint(-plane.normal); float distance = plane.Distance(extremePoint); c.Translate((distance + GUARDBAND) * plane.normal); assert(c.IsFinite()); // assert(!c.IsDegenerate()); assert(!c.Intersects(plane)); // assert(c.SignedDistance(plane) > 0.f); extremePoint = c.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(c) > 0.f); return c; } Plane RandomPlaneInHalfspace(Plane &plane) { Plane p2; p2.normal = plane.normal; p2.d = rng.Float(plane.d + 1e-2f, plane.d + 1e-2f + SCALE); assert(!p2.IsDegenerate()); return p2; } Triangle RandomTriangleInHalfspace(const Plane &plane) { vec a = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); vec b = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); vec c = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); Triangle t(a,b,c); assert1(t.IsFinite(), t); assert1(!t.IsDegenerate(), t); vec extremePoint = t.ExtremePoint(-plane.normal); float distance = plane.Distance(extremePoint); t.Translate((distance + GUARDBAND) * plane.normal); assert1(t.IsFinite(), t); assert1(!t.IsDegenerate(), t); assert2(!t.Intersects(plane), t, plane); // assert(t.SignedDistance(plane) > 0.f); extremePoint = t.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(t) > 0.f); return t; } Polyhedron RandomPolyhedronInHalfspace(const Plane &plane) { Polyhedron p; vec pt = vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)); switch(rng.Int(0,7)) { case 0: p = RandomAABBInHalfspace(plane, SCALE).ToPolyhedron(); case 1: p = RandomOBBInHalfspace(plane, SCALE).ToPolyhedron(); case 2: p = RandomFrustumInHalfspace(plane).ToPolyhedron(); case 3: p = Polyhedron::Tetrahedron(pt, SCALE); break; case 4: p = Polyhedron::Octahedron(pt, SCALE); break; case 5: p = Polyhedron::Hexahedron(pt, SCALE); break; case 6: p = Polyhedron::Icosahedron(pt, SCALE); break; default: p = Polyhedron::Dodecahedron(pt, SCALE); break; } // assert(p.IsFinite()); // assert(!p.IsDegenerate()); vec extremePoint = p.ExtremePoint(-plane.normal); float distance = plane.Distance(extremePoint); p.Translate((distance + GUARDBAND) * plane.normal); // assert(p.IsFinite()); // assert(!p.IsDegenerate()); assert(!p.Intersects(plane)); // assert(p.SignedDistance(plane) > 0.f); extremePoint = p.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(p) > 0.f); return p; } Polygon RandomPolygonInHalfspace(const Plane &plane) { Polyhedron p = RandomPolyhedronInHalfspace(plane); Polygon poly = p.FacePolygon(rng.Int(0, p.NumFaces()-1)); assert1(!poly.IsDegenerate(), poly); assert1(!poly.IsNull(), poly); assert1(poly.IsPlanar(), poly); assert1(poly.IsFinite(), poly); assert2(!poly.Intersects(plane), poly, plane); vec extremePoint = poly.ExtremePoint(-plane.normal); assert(plane.SignedDistance(extremePoint) > 0.f); assert(plane.SignedDistance(poly) > 0.f); return poly; } RANDOMIZED_TEST(AABBAABBNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); AABB b = RandomAABBInHalfspace(p, 10.f); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBOBBNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); OBB b = RandomOBBInHalfspace(p, 10.f); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } UNIQUE_TEST(AABBLineNoIntersectCase) { Plane p(DIR_VEC(-0.72379446f,0.652315021f,-0.224959269f),27.2405319f); Line l(POINT_VEC(-16.0996895f,22.3687477f,-5.59284782f),DIR_VEC(-0.616314948f,-0.757768512f,-0.214342773f)); assert(!p.Intersects(l)); } RANDOMIZED_TEST(AABBLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); if (a.Intersects(b)) { LOGI("AABB: %s", a.ToString().c_str()); LOGI("Line: %s", b.ToString().c_str()); } assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBPlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBSphereNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Sphere b = RandomSphereInHalfspace(p, SCALE); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBCapsuleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Capsule b = RandomCapsuleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBFrustumNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(AABBPolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } UNIQUE_TEST(AABBPolygonNoIntersectCase) { AABB a(POINT_VEC(-1.07812309f,50.0289841f,-42.3423996f),POINT_VEC(4.804286f,50.5800514f,-42.3384552f)); Polygon b; b.p.push_back(POINT_VEC(5.48830986f,-108.176254f,84.0496674f)); b.p.push_back(POINT_VEC(5.48830986f,-69.97966f,84.0496674f)); b.p.push_back(POINT_VEC(24.5866089f,-58.1762543f,114.95137f)); b.p.push_back(POINT_VEC(36.3900108f,-89.0779572f,134.049667f)); b.p.push_back(POINT_VEC(24.5866089f,-119.97966f,114.95137f)); assert(!a.Intersects(b)); } RANDOMIZED_TEST(AABBPolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); AABB a = RandomAABBInHalfspace(p, 10.f); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a.SerializeToCodeString(), b.SerializeToString()); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBOBBNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); OBB b = RandomOBBInHalfspace(p, 10.f); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } extern int xxxxx; BENCHMARK(OBBOBBNoIntersect, "OBB-OBB No Intersection") { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); OBB b = RandomOBBInHalfspace(p, 10.f); if (!a.Intersects(b)) ++xxxxx; if (!b.Intersects(a)) ++xxxxx; } BENCHMARK_END; BENCHMARK(OBBOBBNoIntersect_SAT, "OBB-OBB SAT No Intersection") { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); OBB b = RandomOBBInHalfspace(p, 10.f); if (!SATIntersect(a, b)) ++xxxxx; if (!SATIntersect(b, a)) ++xxxxx; } BENCHMARK_END; BENCHMARK(OBBOBBNoIntersect_GJK, "OBB-OBB GJK No Intersection") { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); OBB b = RandomOBBInHalfspace(p, 10.f); if (!GJKIntersect(a, b)) ++xxxxx; if (!GJKIntersect(b, a)) ++xxxxx; } BENCHMARK_END; RANDOMIZED_TEST(OBBLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBPlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBSphereNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Sphere b = RandomSphereInHalfspace(p, SCALE); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); //// assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBCapsuleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Capsule b = RandomCapsuleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBFrustumNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBPolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(OBBPolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); OBB a = RandomOBBInHalfspace(p, 10.f); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); /// assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereSphereNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Sphere b = RandomSphereInHalfspace(p, 10.f); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SpherePlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereCapsuleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Capsule b = RandomCapsuleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SphereFrustumNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SpherePolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(SpherePolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Sphere a = RandomSphereInHalfspace(p, 10.f); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumPlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumCapsuleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Capsule b = RandomCapsuleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumFrustumNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } extern int xxxxx; BENCHMARK(BM_FrustumFrustumNoIntersect, "Frustum-Frustum No Intersection") { #ifdef FAIL_USING_EXCEPTIONS try { // Ignore failures in this benchmark. #endif Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); if (!a.Intersects(b)) ++xxxxx; if (!b.Intersects(a)) ++xxxxx; #ifdef FAIL_USING_EXCEPTIONS } catch(...) {}; #endif } BENCHMARK_END; BENCHMARK(BM_FrustumFrustumNoIntersect_SAT, "Frustum-Frustum SAT No Intersection") { #ifdef FAIL_USING_EXCEPTIONS try { // Ignore failures in this benchmark. #endif Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); if (!SATIntersect(a, b)) ++xxxxx; if (!SATIntersect(b, a)) ++xxxxx; #ifdef FAIL_USING_EXCEPTIONS } catch(...) {}; #endif } BENCHMARK_END; BENCHMARK(BM_FrustumFrustumNoIntersect_GJK, "Frustum-Frustum GJK No Intersection") { #ifdef FAIL_USING_EXCEPTIONS try { // Ignore failures in this benchmark. #endif Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Frustum b = RandomFrustumInHalfspace(p); if (!GJKIntersect(a, b)) ++xxxxx; if (!GJKIntersect(b, a)) ++xxxxx; #ifdef FAIL_USING_EXCEPTIONS } catch(...) {}; #endif } BENCHMARK_END; RANDOMIZED_TEST(FrustumPolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(FrustumPolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Frustum a = RandomFrustumInHalfspace(p); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } UNIQUE_TEST(PlaneLineNoIntersectCase) { Plane p(DIR_VEC(-0.746312618f,0.586626351f,-0.31446299f),-35.7190437f); Line l(POINT_VEC(45.1519928f,46.7459641f,92.9752197f),DIR_VEC(0.631202042f,0.773685277f,-0.0547275133f)); assert(!p.Intersects(l)); } UNIQUE_TEST(PlaneLineNoIntersectCase2) { Plane p(DIR_VEC(0.344275832f,-0.882686555f,0.31990397f),-56.7400818f); Line l(POINT_VEC(36.2179184f,88.9618607f,29.178812f),DIR_VEC(0.775070965f,0.459497392f,0.433736295f)); assert(!p.Intersects(l)); } RANDOMIZED_TEST(CapsuleLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsuleRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsuleLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsulePlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsuleCapsuleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Capsule b = RandomCapsuleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsuleTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); /// assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsulePolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); /// assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(CapsulePolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Capsule a = RandomCapsuleInHalfspace(p); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert4(a.Distance(a.ClosestPoint(b)) < 1e-3f, a, b, a.ClosestPoint(b), a.Distance(a.ClosestPoint(b))); // TODO: The following is problematic due to numerical // stability issues at the surface of the Polyhedron. // assert(a.Contains(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronPlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolyhedronPolyhedronNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } #ifndef _DEBUG RANDOMIZED_TEST(PolyhedronPolyhedronIntersectionPerformance) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Polyhedron b = RandomPolyhedronInHalfspace(p); for(size_t i = 0; i < 10; ++i) { globalPokedData += a.Intersects(b) ? 1 : 0; globalPokedData += b.Intersects(a) ? 1 : 0; } } #endif RANDOMIZED_TEST(PolyhedronPolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert4(a.Distance(a.ClosestPoint(b)) < 1e-3f, a, b, a.ClosestPoint(b), a.Distance(a.ClosestPoint(b))); // TODO: The following is problematic due to numerical // stability issues at the surface of the Polygon. // assert(a.Contains(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonPlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PolygonPolygonNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polygon a = RandomPolygonInHalfspace(p); p.ReverseNormal(); Polygon b = RandomPolygonInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); /// assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(TriangleLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Triangle a = RandomTriangleInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); // assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert4(a.Contains(a.ClosestPoint(b)), a.SerializeToCodeString(), b.SerializeToCodeString(), a.ClosestPoint(b).SerializeToCodeString(), a.Distance(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(TriangleRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Triangle a = RandomTriangleInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(TriangleLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Triangle a = RandomTriangleInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); // assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert4(a.Contains(a.ClosestPoint(b)), a.SerializeToCodeString(), b.SerializeToCodeString(), a.ClosestPoint(b).SerializeToCodeString(), a.Distance(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(TrianglePlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Triangle a = RandomTriangleInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } UNIQUE_TEST(TrickyTriangleTriangleSATNoIntersect) { Triangle a, b; a.a = POINT_VEC(-19.234608f, 175.11060f, -65.702095f); a.b = POINT_VEC(-41.996265f, 86.449524f, 61.047047f); a.c = POINT_VEC(-40.166401f, 83.222511f, -7.1153078f); b.a = POINT_VEC(-23.087940f, 13.051629f, -21.682280f); b.b = POINT_VEC(-90.890396f, -61.371635f, -44.296501f); b.c = POINT_VEC(85.991585f, 38.734276f, 29.707987f); assert(!a.Intersects(b)); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); } RANDOMIZED_TEST(TriangleTriangleNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Triangle a = RandomTriangleInHalfspace(p); p.ReverseNormal(); Triangle b = RandomTriangleInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(!SATIntersect(a, b)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert4(a.Contains(a.ClosestPoint(b)), a.SerializeToCodeString(), b.SerializeToCodeString(), a.ClosestPoint(b).SerializeToCodeString(), a.Distance(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); assert(!a.Contains(b.ClosestPoint(a))); assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PlaneLineNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Plane a = RandomPlaneInHalfspace(p); p.ReverseNormal(); Line b = RandomLineInHalfspace(p); assert2(!a.Intersects(b), a, b); /// assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } UNIQUE_TEST(TrickyPlaneRayClosestPoint) { Plane p(DIR_VEC(0.50561136f,-0.753886223f,0.419538707f),83.6198273f); Ray r(POINT_VEC(-34.2622185f,97.5630875f,14.6553354f),DIR_VEC(-0.433765054f,-0.636341155f,-0.637901187f)); vec cp = p.ClosestPoint(r); assert(p.Contains(cp)); } RANDOMIZED_TEST(PlaneRayNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Plane a = RandomPlaneInHalfspace(p); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); assert3(a.Contains(a.ClosestPoint(b)), a.SerializeToCodeString(), b.SerializeToCodeString(), a.ClosestPoint(b).SerializeToCodeString()); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PlaneLineSegmentNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Plane a = RandomPlaneInHalfspace(p); p.ReverseNormal(); LineSegment b = RandomLineSegmentInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); assert(a.Distance(b) > 0.f); assert(b.Distance(a) > 0.f); assert4(a.Contains(a.ClosestPoint(b)), a.SerializeToCodeString(), b.SerializeToCodeString(), a.ClosestPoint(b).SerializeToCodeString(), a.Distance(a.ClosestPoint(b))); assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(PlanePlaneNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Plane a = RandomPlaneInHalfspace(p); p.ReverseNormal(); Plane b = RandomPlaneInHalfspace(p); assert2(!a.Intersects(b), a, b); assert(!b.Intersects(a)); // assert(a.Distance(b) > 0.f); // assert(b.Distance(a) > 0.f); // assert(a.Contains(a.ClosestPoint(b))); // assert(!b.Contains(a.ClosestPoint(b))); // assert(!a.Contains(b.ClosestPoint(a))); // assert(b.Contains(b.ClosestPoint(a))); } RANDOMIZED_TEST(RayTriangleMeshNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); TriangleMesh tm; tm.Set(a); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); float d = tm.IntersectRay(b); assert(d == FLOAT_INF); } RANDOMIZED_TEST(RayKdTreeNoIntersect) { Plane p(vec::RandomBox(rng, POINT_VEC_SCALAR(-SCALE), POINT_VEC_SCALAR(SCALE)), vec::RandomDir(rng)); Polyhedron a = RandomPolyhedronInHalfspace(p); KdTree<Triangle> t; TriangleArray tris = a.Triangulate(); if (!tris.empty()) t.AddObjects((Triangle*)&tris[0], (int)tris.size()); t.Build(); p.ReverseNormal(); Ray b = RandomRayInHalfspace(p); TriangleKdTreeRayQueryNearestHitVisitor result; t.RayQuery(b, result); assert(result.rayT == FLOAT_INF); assert(result.triangleIndex == KdTree<Triangle>::BUCKET_SENTINEL); assert(!result.pos.IsFinite()); assert(!result.barycentricUV.IsFinite()); }
[ "devnull@localhost" ]
devnull@localhost
969697ef687bf0aa01c1df302dd7cba97269d4c7
d9d06afdbaa1698edc4f7a59b1d3fa84497fa00c
/PR1_EX1.2/PR1_EX1.2.ino
65af30b0400ec79ad6ea20468edc00449b54f50b
[]
no_license
quimmoreno/Practica1SERIAL
5b70c05747e3da940e66c0e1f31749dfc990d734
e156a1dbcff2f116d4c1526ecfee0393cdd98278
refs/heads/master
2021-01-18T15:15:19.117799
2015-05-13T09:49:25
2015-05-13T09:49:25
31,784,877
0
0
null
null
null
null
UTF-8
C++
false
false
175
ino
void setup() { Serial.begin(9600); } void loop() { Serial.print("Hello world!"); // prints delay(1000); } //Quim Moreno Torras
18530e37197b5318b3fb58e76e5bdd777bc45363
c96caa1f04813c6bf5c6a4ef9b663b1138a82e52
/Codeforces Round 716 (Div. 2)/B. AND 0, Sum Big.cpp
a4c4d04be411b4aad537340740eccd4c75633081
[]
no_license
raeyoungii/Codeforces
9e1b76f3c8fb228bed7837eab5cb93d969474f1d
198bd28cdb9777a5094eb9f562b35bf318fcd432
refs/heads/master
2023-04-27T02:32:58.278803
2021-05-15T13:18:48
2021-05-15T13:18:48
329,714,062
1
0
null
null
null
null
UTF-8
C++
false
false
610
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; const char nl = '\n'; const ll MOD = 1e9 + 7; void solve() { int n, k; cin >> n >> k; ll ans = 0; for (int b = 0; b < pow(2, k); b++) { ll a = 1; ll tmp = b, one = 0; while (tmp > 0) { if (tmp % 2) one++; tmp /= 2; } for (int i = 0; i < one; i++) a = (a * (n - 1)) % MOD; ans = (ans + a) % MOD; } cout << ans << nl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while(t--) solve(); return 0; }
49a1ef62453af56f1d9c9059599751c9bdcbb0fb
0b78b242f7ad92f38782f4475307148fbf5954f3
/SoftwareCompany/List.h
4b7cd697040e6d40a120eb37c039c3708a6bbfee
[]
no_license
yoanastefanova/OOP_Pract_FMI
83c2b2a7e603f58297a8f35da97dd7f183b57e23
8c4887569c51755b28fab659192d5e5097783394
refs/heads/master
2022-11-07T03:51:04.545627
2020-06-24T12:23:43
2020-06-24T12:23:43
274,633,097
0
0
null
null
null
null
UTF-8
C++
false
false
819
h
#pragma once #include "Worker.h" #include "Manager.h" #include "Programmer.h" #include <string> using namespace std; class List { public: List(); /* List(const List&); List& operator=(const List&); */ ~List(); void increaseSal(Worker *other); double totalSalExpense() const; void printWorkersExp(const size_t) const; void addEmpl(const Worker&); void removeEmpl(const Worker&); void printAll() const; private: Worker** list; size_t size; size_t capacity; void copy(const List&); void destroy(); void inputCommon(Worker *other); void newWorker(); Worker* createWorker(char type); Programmer* createProg(); Manager* createMan(); void popAt(const size_t); void resizeUp(); void resizeDown(); void decreaseIfEmpty(); };
25899bbd8e97c25e644bafd42739f616e7b3c7cb
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14102/function14102_schedule_9/function14102_schedule_9_wrapper.cpp
0503cf60f3d5c24c19f02710468ca4bf7d2dacd5
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
1,420
cpp
#include "Halide.h" #include "function14102_schedule_9_wrapper.h" #include "tiramisu/utils.h" #include <cstdlib> #include <iostream> #include <time.h> #include <fstream> #include <chrono> #define MAX_RAND 200 int main(int, char **){ Halide::Buffer<int32_t> buf00(64, 128); Halide::Buffer<int32_t> buf01(64, 64, 128); Halide::Buffer<int32_t> buf02(64, 64, 128); Halide::Buffer<int32_t> buf03(128); Halide::Buffer<int32_t> buf04(64, 64, 128); Halide::Buffer<int32_t> buf05(64, 64, 128); Halide::Buffer<int32_t> buf06(64); Halide::Buffer<int32_t> buf07(128); Halide::Buffer<int32_t> buf0(64, 64, 128, 128); init_buffer(buf0, (int32_t)0); auto t1 = std::chrono::high_resolution_clock::now(); function14102_schedule_9(buf00.raw_buffer(), buf01.raw_buffer(), buf02.raw_buffer(), buf03.raw_buffer(), buf04.raw_buffer(), buf05.raw_buffer(), buf06.raw_buffer(), buf07.raw_buffer(), buf0.raw_buffer()); auto t2 = std::chrono::high_resolution_clock::now(); std::chrono::duration<double> diff = t2 - t1; std::ofstream exec_times_file; exec_times_file.open("../data/programs/function14102/function14102_schedule_9/exec_times.txt", std::ios_base::app); if (exec_times_file.is_open()){ exec_times_file << diff.count() * 1000000 << "us" <<std::endl; exec_times_file.close(); } return 0; }
4e6a2d2d009dc16790a75ff7cbe3b4c5f4287fa9
7058ab3dfc592442ad6287c10bbc197772f3da4c
/poj/brackets_match_copy.cpp
9338c7e5084136424aad7e700ad498eb215e4d22
[]
no_license
iambowen/algorithm
f61f79095ad91b557c47477087d1122d14ccfd09
66b79131ea39ea2f9a0d5e63f732b74e3a599a75
refs/heads/master
2021-01-19T11:22:40.556083
2016-10-08T05:16:17
2016-10-08T05:16:17
7,223,628
0
0
null
null
null
null
UTF-8
C++
false
false
850
cpp
#include<iostream> #include<stdio.h> #include<stack> #include<string.h> using namespace std; int main() { int i; char str[101], Mark[101]; while(scanf("%s", str) != EOF) { stack<char> S; for (i = 0; i < strlen(str);i++) { if (str[i] == '(') { S.push(i); Mark[i] = ' '; } else if (str[i] == ')') { if (S.empty()) { Mark[i] = '?'; } else { Mark[i] = ' '; S.pop(); } } else { Mark[i] = ' '; } } while (!S.empty()) { Mark[S.top()] = '$'; S.pop(); } Mark[i] = '\0'; puts(str); puts(Mark); } return 0; }
50a321222977a69669baa78254e273b17732ce21
5db083de28ce3d342aeba75d23e3d40112c96bb0
/FinalDbase/include/Player_comm.h
03c81e5532a478fefadd214466fee425d6f6621a
[]
no_license
ciclop03/FinalFinalStatement
bcb65f044a11203dacdbc3b2e7fb5b530b0722a5
d49b6517a2be78fb504237f2cd437385e985a9ff
refs/heads/master
2020-06-03T05:20:43.008464
2019-06-28T12:21:38
2019-06-28T12:21:38
191,457,918
0
1
null
null
null
null
UTF-8
C++
false
false
267
h
#ifndef PLAYERTATOR_H #define PLAYERTATOR_H #include <Player.h> #include <Commentator.h> class Playertator : public Player, public Commentator { public: Playertator(); ~Playertator(); protected: private: }; #endif // PLAYERTATOR_H